| # Local environment and editor folders | |
| .*/ | |
| .exp_artifact/ | |
| AGENTS.md | |
| !.gitignore | |
| !.gitattributes | |
| !.github/ | |
| # Python/runtime caches | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| .pytest_cache/ | |
| .mypy_cache/ | |
| .ruff_cache/ | |
| # Training, evaluation, and logging artifacts | |
| outputs/ | |
| output/ | |
| checkpoints/ | |
| lightning_logs/ | |
| logs/ | |
| slurm_logs/ | |
| wandb/ | |
| ablation_results/ | |
| latest-run | |
| *.log | |
| # Local model/data clones and generated assets | |
| open-oasis/ | |
| proposal/ | |
| tools/ | |
| *.docx | |
| # Local reproduction and ablation helper scripts | |
| benchmark_memory_latency.sh | |
| evaluate_600_prefix_mem_len_*.sh | |
| evaluate_dense_reference*.sh | |
| evaluate_dit_no_memory.sh | |
| evaluate_oasis_baseline.sh | |
| evaluate_unified.sh | |
| infer_dit_no_memory.sh | |
| infer_oasis_baseline.sh | |
| run_memory_*.sh | |
| train_debug_berzulis.sh | |
| train_stage_1_debug.sh | |
| utils/replay_offline_wandb.py | |
| # Local experimental modules/backups kept out of the clean branch | |
| algorithms/worldmem/*.bak_* | |
| algorithms/worldmem/causal_memory.py | |
| algorithms/worldmem/retrieval.py | |
| algorithms/worldmem/revisit_consistency.py | |
| algorithms/worldmem/models/causal_memory.py | |