Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ENH] - Add functionality for managing sim params and simulating multiple signals together #329

Merged
merged 47 commits into from
Sep 2, 2024
Merged
Changes from 1 commit
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
bbac0b4
add sim_combined_peak
TomDonoghue Apr 13, 2024
6df1cfa
add counter util
TomDonoghue Apr 13, 2024
03fc40b
add new udpate funcs
TomDonoghue Apr 13, 2024
2168f01
add multi sim funcs
TomDonoghue Apr 13, 2024
693769c
cleans / lints
TomDonoghue Apr 14, 2024
b26598d
minor tutorial fixes
TomDonoghue Apr 14, 2024
3702f27
sim/objs -> sim/params
TomDonoghue Apr 14, 2024
1ccfba7
use objs instead of wrappers
TomDonoghue Apr 14, 2024
36ba785
drop wrapper funcs (offer no new functionality)
TomDonoghue Apr 14, 2024
a2f2307
allow pass through of SimParams in derived objs
TomDonoghue Apr 14, 2024
3cea869
add sim params tutorial
TomDonoghue Apr 14, 2024
74d65f0
add sim multi tutorial
TomDonoghue Apr 14, 2024
5f6c349
add new sim things to API list
TomDonoghue Apr 14, 2024
de8e269
udpate docstrings
TomDonoghue Apr 14, 2024
8a8a09a
fix object initialization
TomDonoghue Apr 14, 2024
d36656c
add docstring examples
TomDonoghue Jul 19, 2024
2c7c371
Merge branch 'main' into simp
TomDonoghue Jul 19, 2024
ec90e54
udpate API list for new functionaloity
TomDonoghue Jul 19, 2024
09f137c
fix up docs & details of sig_sampler
TomDonoghue Jul 19, 2024
4b55936
add SimParams to_* methods
TomDonoghue Jul 20, 2024
6cfae41
drop allowing SimParams object into init of derived obks
TomDonoghue Jul 20, 2024
e24a0a9
add copy method
TomDonoghue Aug 17, 2024
b27848d
add new conftest objects for sim params
TomDonoghue Aug 17, 2024
12d4c6d
extend tests for sim params
TomDonoghue Aug 17, 2024
e2770f5
add docstring examples
TomDonoghue Aug 17, 2024
ce3b1f8
minor lints
TomDonoghue Aug 17, 2024
cd45e0f
add ParamIter as doc'd input to sim_multi
TomDonoghue Aug 17, 2024
260188f
add drop_base_params helper func
TomDonoghue Aug 19, 2024
d7b3450
add Simulations object
TomDonoghue Aug 19, 2024
1de2b4c
move drop_base_params func (circ import)
TomDonoghue Aug 19, 2024
cc3d76b
use sims object in sim_multiple
TomDonoghue Aug 19, 2024
9406855
add SampledSims object
TomDonoghue Aug 19, 2024
e9534a1
use SampledSims object in sim multi
TomDonoghue Aug 25, 2024
fbddfe3
add get_base_params helper
TomDonoghue Aug 28, 2024
eab6301
rework details of sims obejcts
TomDonoghue Aug 28, 2024
91e31d8
add/move listify helper func
TomDonoghue Aug 28, 2024
0f6c16b
extend tests & associated updates / fixes
TomDonoghue Aug 28, 2024
62e7938
add MultiSims object
TomDonoghue Aug 28, 2024
277a569
updates to sims objs
TomDonoghue Aug 29, 2024
68a6a6f
use object for sim_multi
TomDonoghue Aug 29, 2024
3a629da
sim/sims - sim/signals
TomDonoghue Aug 29, 2024
7792e7e
order sim tutorials
TomDonoghue Aug 29, 2024
da362f7
update tutorials for sim signal objects
TomDonoghue Aug 29, 2024
c56a1dc
allow for callable to be pased for sim_func
TomDonoghue Aug 29, 2024
1afb821
Merge branch 'main' into simp
TomDonoghue Sep 1, 2024
33c8c47
update sim init
TomDonoghue Sep 1, 2024
97ca7b2
Merge branch 'main' into simp
TomDonoghue Sep 2, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
sim/objs -> sim/params
TomDonoghue committed Apr 14, 2024
commit 3702f27157bce06c8a94de60bbde9838084688d8
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
"""Tests for neurodsp.sim.objs."""
"""Tests for neurodsp.sim.params."""

from neurodsp.sim.update import create_updater, create_sampler

from neurodsp.sim.objs import *
from neurodsp.sim.params import *

###################################################################################################
###################################################################################################