Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
SamWitty committed Oct 24, 2023
1 parent c20e665 commit b67aedf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/pyciemss/integration_utils/custom_decorators.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def wrapped(*args, **kwargs):
###############################
There was an exception in pyciemss
Error occured in function: %s
Function docs : %s
Expand Down
6 changes: 4 additions & 2 deletions src/pyciemss/interfaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,8 @@ def calibrate(
model: DynamicalSystem[T], data: Data[T], *args, **kwargs
) -> InferredParameters[T]:
"""
Infer parameters for a DynamicalSystem model conditional on data. This is typically done using a variational approximation.
Infer parameters for a DynamicalSystem model conditional on data.
This is typically done using a variational approximation.
"""
raise NotImplementedError

Expand All @@ -125,7 +126,8 @@ def simulate(
**kwargs
) -> Simulation[T]:
"""
Simulate trajectories from a given `model`, conditional on specified `inferred_parameters` distribution. If `inferred_parameters` is not given, this will sample from the prior distribution.
Simulate trajectories from a given `model`, conditional on specified `inferred_parameters` distribution.
If `inferred_parameters` is not given, this will sample from the prior distribution.
"""
raise NotImplementedError

Expand Down

0 comments on commit b67aedf

Please sign in to comment.