Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
8 changes: 7 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
# Generated Data
*.npz
data/
# Track coherences in results
!results/stimulus_coherences/**
!results/stimulus_coherences/

# Model weights
weights/
Expand Down Expand Up @@ -326,4 +329,7 @@ $RECYCLE.BIN/
.nfs*

# python-history when using pyenv
.python-history
.python-history

# Ignore LLM files
.claude/
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added figures/all_time_pid/CTRNN_01.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added figures/all_time_pid/CTRNN_02.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added figures/all_time_pid/CTRNN_03.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added figures/all_time_pid/CTRNN_04.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added figures/all_time_pid/CTRNN_05.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added figures/all_time_pid/CTRNN_06.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added figures/all_time_pid/CTRNN_07.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added figures/all_time_pid/CTRNN_08.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added figures/all_time_pid/CTRNN_09.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added figures/all_time_pid/CTRNN_10.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file removed figures/learning_curves/.gitkeep
Empty file.
Empty file.
Empty file.
8 changes: 4 additions & 4 deletions notebooks/04_minimal_product.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
},
{
"cell_type": "code",
"execution_count": 2,
"execution_count": null,
"id": "275176ad",
"metadata": {},
"outputs": [
Expand All @@ -50,7 +50,7 @@
],
"source": [
"# Configuration\n",
"BASE_PATH = \"../src/tasks/data/mante_style\"\n",
"BASE_PATH = \"../data\"\n",
"BATCH_SIZE = 1024 * 2\n",
"SUBSAMPLE_STEP = 10 # Subsample for Elman RNN (simulate tau=10ms)\n",
"\n",
Expand Down Expand Up @@ -258,7 +258,7 @@
},
{
"cell_type": "code",
"execution_count": 6,
"execution_count": null,
"id": "2cdf07a6",
"metadata": {},
"outputs": [
Expand All @@ -282,7 +282,7 @@
"if device.type == \"cuda\":\n",
" print(f\" GPU Name: {torch.cuda.get_device_name(0)}\")\n",
"\n",
"WEIGHTS_DIR = \"../src/models/weights/mante_medium\"\n",
"WEIGHTS_DIR = \"../elman_vs_ctrnn_comparison/model_weights\" \n",
"os.makedirs(WEIGHTS_DIR, exist_ok=True)"
]
},
Expand Down
6 changes: 3 additions & 3 deletions notebooks/05_Full_train_pipeline.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,13 @@
},
{
"cell_type": "code",
"execution_count": 3,
"execution_count": null,
"id": "275176ad",
"metadata": {},
"outputs": [],
"source": [
"# Configuration (paths are relative to the notebooks/ directory, i.e. repo root via \"..\")\n",
"BASE_PATH = \"../src/tasks/data/mante_style\"\n",
"BASE_PATH = \"../data\"\n",
"BATCH_SIZE = 1024 * 8\n",
"SUBSAMPLE_STEP = 1 # raw trials are dt=10ms; step=1 gives an effective 10ms timestep (750ms -> 75 steps)\n",
"# Each seeded CTRNN gets its own held-out test set (train/val are shared across seeds of a task).\n",
Expand Down Expand Up @@ -1310,7 +1310,7 @@
],
"metadata": {
"kernelspec": {
"display_name": "neuroai-project13",
"display_name": "neuroai",
"language": "python",
"name": "python3"
},
Expand Down
Loading