-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a54be1d
commit 4c8a75d
Showing
13 changed files
with
271 additions
and
220 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
__version__ = '0.2.2' | ||
from gsd.fit import GSDParams as GSDParams | ||
from gsd.fit import fit_moments as fit_moments | ||
from gsd.gsd import (log_prob as log_prob, | ||
sample as sample, | ||
mean as mean, | ||
variance as variance, | ||
sufficient_statistic as sufficient_statistic) | ||
__version__ = "0.2.3dev" | ||
from gsd.fit import fit_moments as fit_moments, GSDParams as GSDParams | ||
from gsd.gsd import ( | ||
log_prob as log_prob, | ||
mean as mean, | ||
sample as sample, | ||
sufficient_statistic as sufficient_statistic, | ||
variance as variance, | ||
) | ||
from gsd.ref_prob import gsd_prob as gsd_prob |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,15 @@ | ||
from .bootstrap import g_test as g_test | ||
from .bootstrap import prob as prob | ||
from .bootstrap import t_statistic as t_statistic | ||
from .bootstrap import static_bootstrap as static_bootstrap | ||
from .bootstrap import BootstrapResult as BootstrapResult | ||
from .bootstrap import pp_plot_data as pp_plot_data | ||
from .fit import GridEstimator as GridEstimator | ||
from .fit import OptState as OptState | ||
from .fit import fit_mle as fit_mle | ||
from .fit import fit_mle_grid as fit_mle_grid | ||
|
||
from .bootstrap import ( | ||
BootstrapResult as BootstrapResult, | ||
g_test as g_test, | ||
pp_plot_data as pp_plot_data, | ||
prob as prob, | ||
static_bootstrap as static_bootstrap, | ||
t_statistic as t_statistic, | ||
) | ||
from .fit import ( | ||
fit_mle as fit_mle, | ||
fit_mle_grid as fit_mle_grid, | ||
GridEstimator as GridEstimator, | ||
OptState as OptState, | ||
) | ||
from .max_entropy import MaxEntropyGSD as MaxEntropyGSD |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.