Skip to content

Commit 773ff3d

Browse files
committed
checkpoint
1 parent ee7414e commit 773ff3d

56 files changed

Lines changed: 6480 additions & 311 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

AGENTS.md

Lines changed: 0 additions & 140 deletions
This file was deleted.

jaxcmr/selective_interference/__init__.py

Lines changed: 49 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,61 @@
22

33
from .analysis import build_transition_masks, derive_cue_clips
44
from .context_tracking import track_context_trajectory
5-
from .plotting import plot_context_trajectory, plot_interference_spc, plot_summary_dv
5+
from .fitting import load_or_fit_params
6+
from .paradigm import (
7+
Paradigm,
8+
compute_n_presented,
9+
make_extended_break,
10+
make_extended_filler,
11+
make_extended_interference,
12+
)
13+
from .preparation import prepare_all_subjects
14+
from .remapping import (
15+
break_extended_remap,
16+
filler_extended_remap,
17+
interference_extended_remap,
18+
remap_recalls,
19+
standard_remap,
20+
)
21+
from .sweep import (
22+
batched_sweep,
23+
film_recalled_stats,
24+
run_sweep,
25+
sweep_defaults,
26+
sweep_rngs,
27+
)
28+
from .plotting import (
29+
add_filler_boundary,
30+
plot_context_trajectory,
31+
plot_interference_spc,
32+
plot_summary_dv,
33+
plot_sweep,
34+
)
635

736
__all__ = [
837
"build_transition_masks",
938
"derive_cue_clips",
1039
"track_context_trajectory",
40+
"Paradigm",
41+
"prepare_all_subjects",
42+
"batched_sweep",
43+
"run_sweep",
44+
"sweep_rngs",
45+
"remap_recalls",
46+
"standard_remap",
47+
"interference_extended_remap",
48+
"filler_extended_remap",
49+
"break_extended_remap",
50+
"film_recalled_stats",
51+
"load_or_fit_params",
52+
"compute_n_presented",
53+
"make_extended_interference",
54+
"make_extended_break",
55+
"make_extended_filler",
56+
"sweep_defaults",
1157
"plot_interference_spc",
1258
"plot_context_trajectory",
1359
"plot_summary_dv",
60+
"plot_sweep",
61+
"add_filler_boundary",
1462
]

0 commit comments

Comments
 (0)