Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bilby
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
lscsoft
bilby
Commits
81f5de90
Commit
81f5de90
authored
2 years ago
by
Rhiannon Udall
Browse files
Options
Downloads
Patches
Plain Diff
Used a more pythonic solution
parent
304b0cff
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!1235
Bugfix Slabspike Sampling
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bilby/core/prior/slabspike.py
+2
-2
2 additions, 2 deletions
bilby/core/prior/slabspike.py
with
2 additions
and
2 deletions
bilby/core/prior/slabspike.py
+
2
−
2
View file @
81f5de90
...
...
@@ -84,7 +84,7 @@ class SlabSpikePrior(Prior):
=======
array_like: Associated prior value with input value.
"""
original_
type
=
type
(
val
)
original_
is_array
=
isinstance
(
val
,
np
.
ndarray
)
val
=
np
.
atleast_1d
(
val
)
lower_indices
=
np
.
where
(
val
<
self
.
inverse_cdf_below_spike
)[
0
]
...
...
@@ -97,7 +97,7 @@ class SlabSpikePrior(Prior):
res
[
lower_indices
]
=
self
.
_contracted_rescale
(
val
[
lower_indices
])
res
[
intermediate_indices
]
=
self
.
spike_location
res
[
higher_indices
]
=
self
.
_contracted_rescale
(
val
[
higher_indices
]
-
self
.
spike_height
)
if
original_
type
==
int
or
original_type
==
float
:
if
not
original_
is_array
:
assert
res
.
shape
==
(
1
,)
res
=
res
[
0
]
return
res
...
...
This diff is collapsed.
Click to expand it.
Gregory Ashton
@gregory.ashton
mentioned in commit
236165f9
·
1 year ago
mentioned in commit
236165f9
mentioned in commit 236165f9dfc52828d96e70b37d0250d7cb8d9b4a
Toggle commit list
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment