Skip to content

Commit

Permalink
drop prints and bump version (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderFengler authored Nov 9, 2024
1 parent ddbf8c8 commit 6498c8d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ requires = ["setuptools", "wheel", "Cython>=0.29.23", "numpy >= 1.20"]

[project]
name= "ssm-simulators"
version= "0.7.7"
version= "0.7.8"
authors= [{name = "Alexander Fenger", email = "[email protected]"}]
description= "SSMS is a package collecting simulators and training data generators for a bunch of generative models of interest in the cognitive science / neuroscience and approximate bayesian computation communities"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion ssms/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
from . import config
from . import support_utils

__version__ = "0.7.7" # importlib.metadata.version(__package__ or __name__)
__version__ = "0.7.8" # importlib.metadata.version(__package__ or __name__)

__all__ = ["basic_simulators", "dataset_generators", "config", "support_utils"]
2 changes: 0 additions & 2 deletions ssms/basic_simulators/simulator.py
Original file line number Diff line number Diff line change
Expand Up @@ -677,8 +677,6 @@ def simulator(
sigma_noise = 1.0

noise_vec = make_noise_vec(sigma_noise, n_trials, model_config_local["n_particles"])
print("noise vec ", noise_vec)
print("theta", theta)
if "lba" in model:
theta["sd"] = noise_vec
else:
Expand Down

0 comments on commit 6498c8d

Please sign in to comment.