├── LICENSE ├── README.md ├── data ├── dialogues2_cleaned.json └── dialogues_3_cleaned.json ├── dialogue_generation ├── README.md ├── dialogue_generation.py ├── profile_creation.py ├── profiles_4.json ├── prompts.py └── utils.py └── mem_llm ├── config.py ├── eval.py ├── memory ├── dynamic_memory.py ├── memory.py ├── prompts.py └── static_memory.py ├── pretrain.sh ├── run_generation.py ├── run_memprompt.sh ├── settings.py └── train.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewKKai/MaLP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewKKai/MaLP/HEAD/README.md -------------------------------------------------------------------------------- /data/dialogues2_cleaned.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewKKai/MaLP/HEAD/data/dialogues2_cleaned.json -------------------------------------------------------------------------------- /data/dialogues_3_cleaned.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewKKai/MaLP/HEAD/data/dialogues_3_cleaned.json -------------------------------------------------------------------------------- /dialogue_generation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewKKai/MaLP/HEAD/dialogue_generation/README.md -------------------------------------------------------------------------------- /dialogue_generation/dialogue_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewKKai/MaLP/HEAD/dialogue_generation/dialogue_generation.py -------------------------------------------------------------------------------- /dialogue_generation/profile_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewKKai/MaLP/HEAD/dialogue_generation/profile_creation.py -------------------------------------------------------------------------------- /dialogue_generation/profiles_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewKKai/MaLP/HEAD/dialogue_generation/profiles_4.json -------------------------------------------------------------------------------- /dialogue_generation/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewKKai/MaLP/HEAD/dialogue_generation/prompts.py -------------------------------------------------------------------------------- /dialogue_generation/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewKKai/MaLP/HEAD/dialogue_generation/utils.py -------------------------------------------------------------------------------- /mem_llm/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewKKai/MaLP/HEAD/mem_llm/config.py -------------------------------------------------------------------------------- /mem_llm/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewKKai/MaLP/HEAD/mem_llm/eval.py -------------------------------------------------------------------------------- /mem_llm/memory/dynamic_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewKKai/MaLP/HEAD/mem_llm/memory/dynamic_memory.py -------------------------------------------------------------------------------- /mem_llm/memory/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewKKai/MaLP/HEAD/mem_llm/memory/memory.py -------------------------------------------------------------------------------- /mem_llm/memory/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewKKai/MaLP/HEAD/mem_llm/memory/prompts.py -------------------------------------------------------------------------------- /mem_llm/memory/static_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewKKai/MaLP/HEAD/mem_llm/memory/static_memory.py -------------------------------------------------------------------------------- /mem_llm/pretrain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewKKai/MaLP/HEAD/mem_llm/pretrain.sh -------------------------------------------------------------------------------- /mem_llm/run_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewKKai/MaLP/HEAD/mem_llm/run_generation.py -------------------------------------------------------------------------------- /mem_llm/run_memprompt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewKKai/MaLP/HEAD/mem_llm/run_memprompt.sh -------------------------------------------------------------------------------- /mem_llm/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewKKai/MaLP/HEAD/mem_llm/settings.py -------------------------------------------------------------------------------- /mem_llm/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewKKai/MaLP/HEAD/mem_llm/train.py --------------------------------------------------------------------------------