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
911e78e4
Commit
911e78e4
authored
6 years ago
by
MoritzThomasHuebner
Browse files
Options
Downloads
Patches
Plain Diff
Added import bilby back in, left comment that this is necessary for some eval statements
parent
3bfba201
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!230
Resolve "PEP8 Imports"
Pipeline
#33598
failed
6 years ago
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bilby/core/prior.py
+5
-5
5 additions, 5 deletions
bilby/core/prior.py
with
5 additions
and
5 deletions
bilby/core/prior.py
+
5
−
5
View file @
911e78e4
...
...
@@ -12,7 +12,7 @@ from scipy.interpolate import interp1d
from
scipy.special
import
erf
,
erfinv
# Keep import bilby statement, it is necessary for some eval() statements
import
bilby
import
bilby
# noqa
from
.
import
utils
from
.utils
import
logger
...
...
@@ -89,7 +89,7 @@ class PriorSet(OrderedDict):
except
(
NameError
,
SyntaxError
,
TypeError
):
logger
.
debug
(
"
Failed to load dictionary value {} correctlty
"
.
format
(
key
))
.
format
(
key
))
pass
self
[
key
]
=
val
...
...
@@ -105,7 +105,7 @@ class PriorSet(OrderedDict):
else
:
logger
.
debug
(
"
{} cannot be converted to delta function prior.
"
.
format
(
key
))
.
format
(
key
))
def
fill_priors
(
self
,
likelihood
,
default_priors_file
=
None
):
"""
...
...
@@ -145,7 +145,7 @@ class PriorSet(OrderedDict):
logger
.
warning
(
"
Parameter {} has no default prior and is set to {}, this
"
"
will not be sampled and may cause an error.
"
.
format
(
missing_key
,
set_val
))
.
format
(
missing_key
,
set_val
))
else
:
self
[
missing_key
]
=
default_prior
...
...
@@ -952,7 +952,7 @@ class TruncatedGaussian(Prior):
float: Prior probability of val
"""
return
np
.
exp
(
-
(
self
.
mu
-
val
)
**
2
/
(
2
*
self
.
sigma
**
2
))
/
(
2
*
np
.
pi
)
**
0.5
/
self
.
sigma
/
self
.
normalisation
*
self
.
is_in_prior_range
(
val
)
2
*
np
.
pi
)
**
0.5
/
self
.
sigma
/
self
.
normalisation
*
self
.
is_in_prior_range
(
val
)
class
TruncatedNormal
(
TruncatedGaussian
):
...
...
This diff is collapsed.
Click to expand it.
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