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
bbbc2bb2
Commit
bbbc2bb2
authored
6 years ago
by
Gregory Ashton
Browse files
Options
Downloads
Patches
Plain Diff
Various minor improvements to the testing
parent
49ae2bc9
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!361
Various minor improvements to the testing
Pipeline
#49357
passed
6 years ago
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
test/likelihood_test.py
+12
-0
12 additions, 0 deletions
test/likelihood_test.py
test/prior_test.py
+33
-1
33 additions, 1 deletion
test/prior_test.py
with
45 additions
and
1 deletion
test/likelihood_test.py
+
12
−
0
View file @
bbbc2bb2
...
...
@@ -31,6 +31,18 @@ class TestLikelihoodBase(unittest.TestCase):
def
test_base_log_likelihood_ratio
(
self
):
self
.
assertTrue
(
np
.
isnan
(
self
.
likelihood
.
log_likelihood_ratio
()))
def
test_meta_data_unset
(
self
):
self
.
assertEqual
(
self
.
likelihood
.
meta_data
,
None
)
def
test_meta_data_set_fail
(
self
):
with
self
.
assertRaises
(
ValueError
):
self
.
likelihood
.
meta_data
=
10
def
test_meta_data
(
self
):
meta_data
=
dict
(
x
=
1
,
y
=
2
)
self
.
likelihood
.
meta_data
=
meta_data
self
.
assertEqual
(
self
.
likelihood
.
meta_data
,
meta_data
)
class
TestAnalytical1DLikelihood
(
unittest
.
TestCase
):
...
...
This diff is collapsed.
Click to expand it.
test/prior_test.py
+
33
−
1
View file @
bbbc2bb2
...
...
@@ -4,7 +4,7 @@ import unittest
from
mock
import
Mock
import
numpy
as
np
import
os
import
shutil
import
copy
from
collections
import
OrderedDict
...
...
@@ -130,6 +130,7 @@ class TestPriorClasses(unittest.TestCase):
bilby
.
core
.
prior
.
Gaussian
(
name
=
'
test
'
,
unit
=
'
unit
'
,
mu
=
0
,
sigma
=
1
),
bilby
.
core
.
prior
.
Normal
(
name
=
'
test
'
,
unit
=
'
unit
'
,
mu
=
0
,
sigma
=
1
),
bilby
.
core
.
prior
.
PowerLaw
(
name
=
'
test
'
,
unit
=
'
unit
'
,
alpha
=
0
,
minimum
=
0
,
maximum
=
1
),
bilby
.
core
.
prior
.
PowerLaw
(
name
=
'
test
'
,
unit
=
'
unit
'
,
alpha
=-
1
,
minimum
=
0.5
,
maximum
=
1
),
bilby
.
core
.
prior
.
PowerLaw
(
name
=
'
test
'
,
unit
=
'
unit
'
,
alpha
=
2
,
minimum
=
1
,
maximum
=
1e2
),
bilby
.
core
.
prior
.
Uniform
(
name
=
'
test
'
,
unit
=
'
unit
'
,
minimum
=
0
,
maximum
=
1
),
bilby
.
core
.
prior
.
LogUniform
(
name
=
'
test
'
,
unit
=
'
unit
'
,
minimum
=
5e0
,
maximum
=
1e2
),
...
...
@@ -205,6 +206,28 @@ class TestPriorClasses(unittest.TestCase):
outside_domain
=
np
.
linspace
(
prior
.
minimum
-
1e4
,
prior
.
minimum
-
1
,
1000
)
self
.
assertTrue
(
all
(
prior
.
prob
(
outside_domain
)
==
0
))
def
test_prob_and_ln_prob
(
self
):
for
prior
in
self
.
priors
:
sample
=
prior
.
sample
()
self
.
assertAlmostEqual
(
np
.
log
(
prior
.
prob
(
sample
)),
prior
.
ln_prob
(
sample
),
12
)
def
test_log_normal_fail
(
self
):
with
self
.
assertRaises
(
ValueError
):
bilby
.
core
.
prior
.
LogNormal
(
name
=
'
test
'
,
unit
=
'
unit
'
,
mu
=
0
,
sigma
=-
1
)
def
test_studentt_fail
(
self
):
with
self
.
assertRaises
(
ValueError
):
bilby
.
core
.
prior
.
StudentT
(
name
=
'
test
'
,
unit
=
'
unit
'
,
df
=
3
,
mu
=
0
,
scale
=-
1
)
with
self
.
assertRaises
(
ValueError
):
bilby
.
core
.
prior
.
StudentT
(
name
=
'
test
'
,
unit
=
'
unit
'
,
df
=
0
,
mu
=
0
,
scale
=
1
)
def
test_beta_fail
(
self
):
with
self
.
assertRaises
(
ValueError
):
bilby
.
core
.
prior
.
Beta
(
name
=
'
test
'
,
unit
=
'
unit
'
,
alpha
=-
2.0
,
beta
=
2.0
),
with
self
.
assertRaises
(
ValueError
):
bilby
.
core
.
prior
.
Beta
(
name
=
'
test
'
,
unit
=
'
unit
'
,
alpha
=
2.0
,
beta
=-
2.0
),
def
test_probability_in_domain
(
self
):
"""
Test that the prior probability is non-negative in domain of validity and zero outside.
"""
for
prior
in
self
.
priors
:
...
...
@@ -319,6 +342,15 @@ class TestPriorDict(unittest.TestCase):
del
self
.
default_prior_file
del
self
.
prior_set_from_file
def
test_copy
(
self
):
priors
=
bilby
.
core
.
prior
.
PriorDict
(
self
.
priors
)
self
.
assertEqual
(
priors
,
priors
.
copy
())
def
test_prior_set
(
self
):
priors_dict
=
bilby
.
core
.
prior
.
PriorDict
(
self
.
priors
)
priors_set
=
bilby
.
core
.
prior
.
PriorSet
(
self
.
priors
)
self
.
assertEqual
(
priors_dict
,
priors_set
)
def
test_prior_set_is_ordered_dict
(
self
):
self
.
assertIsInstance
(
self
.
prior_set_from_dict
,
OrderedDict
)
...
...
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