├── .gitattributes ├── .gitignore ├── README.md ├── assets ├── memory_intro_4.pdf └── memory_intro_4.png ├── full_recitation └── run.sh ├── grounded_qa ├── run_id_grounded.sh ├── run_no_writing.sh └── run_with_recitation.sh ├── odqa ├── run_clm_odqa.sh ├── run_continual_training.sh └── run_mixed_training.sh ├── requirements.txt ├── run_clm.py ├── run_clm.sh ├── selective_recitation └── run_selective.sh └── trainer_gpt_qa.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/lm-random-memory-access/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/lm-random-memory-access/HEAD/README.md -------------------------------------------------------------------------------- /assets/memory_intro_4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/lm-random-memory-access/HEAD/assets/memory_intro_4.pdf -------------------------------------------------------------------------------- /assets/memory_intro_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/lm-random-memory-access/HEAD/assets/memory_intro_4.png -------------------------------------------------------------------------------- /full_recitation/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/lm-random-memory-access/HEAD/full_recitation/run.sh -------------------------------------------------------------------------------- /grounded_qa/run_id_grounded.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/lm-random-memory-access/HEAD/grounded_qa/run_id_grounded.sh -------------------------------------------------------------------------------- /grounded_qa/run_no_writing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/lm-random-memory-access/HEAD/grounded_qa/run_no_writing.sh -------------------------------------------------------------------------------- /grounded_qa/run_with_recitation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/lm-random-memory-access/HEAD/grounded_qa/run_with_recitation.sh -------------------------------------------------------------------------------- /odqa/run_clm_odqa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/lm-random-memory-access/HEAD/odqa/run_clm_odqa.sh -------------------------------------------------------------------------------- /odqa/run_continual_training.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/lm-random-memory-access/HEAD/odqa/run_continual_training.sh -------------------------------------------------------------------------------- /odqa/run_mixed_training.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/lm-random-memory-access/HEAD/odqa/run_mixed_training.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/lm-random-memory-access/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_clm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/lm-random-memory-access/HEAD/run_clm.py -------------------------------------------------------------------------------- /run_clm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/lm-random-memory-access/HEAD/run_clm.sh -------------------------------------------------------------------------------- /selective_recitation/run_selective.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/lm-random-memory-access/HEAD/selective_recitation/run_selective.sh -------------------------------------------------------------------------------- /trainer_gpt_qa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/lm-random-memory-access/HEAD/trainer_gpt_qa.py --------------------------------------------------------------------------------