├── .gitignore ├── FT_Generator ├── DataReader.py └── train.py ├── PT_Generator └── inference.py ├── README.md ├── TopicRanking ├── DataReader.py ├── PairedBert.py ├── __init__.py ├── generate_ranking_data.py ├── inference.py ├── subgoal_state_clustering.py ├── test_fuc.py └── train.py ├── data ├── README.md └── psuedo_label_topic_ranking.py └── utils ├── call_LLM_API └── my_API_call.py └── prompt_management ├── PromptLoader.py └── prompt_templates ├── P4G_generate_response_passive.txt ├── P4G_generate_response_with_topic_candidates.txt ├── esconv_generate_response_passive.txt └── esconv_generate_response_with_topic_candidates.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YiCheng98/Cooper/HEAD/.gitignore -------------------------------------------------------------------------------- /FT_Generator/DataReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YiCheng98/Cooper/HEAD/FT_Generator/DataReader.py -------------------------------------------------------------------------------- /FT_Generator/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YiCheng98/Cooper/HEAD/FT_Generator/train.py -------------------------------------------------------------------------------- /PT_Generator/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YiCheng98/Cooper/HEAD/PT_Generator/inference.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YiCheng98/Cooper/HEAD/README.md -------------------------------------------------------------------------------- /TopicRanking/DataReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YiCheng98/Cooper/HEAD/TopicRanking/DataReader.py -------------------------------------------------------------------------------- /TopicRanking/PairedBert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YiCheng98/Cooper/HEAD/TopicRanking/PairedBert.py -------------------------------------------------------------------------------- /TopicRanking/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YiCheng98/Cooper/HEAD/TopicRanking/__init__.py -------------------------------------------------------------------------------- /TopicRanking/generate_ranking_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YiCheng98/Cooper/HEAD/TopicRanking/generate_ranking_data.py -------------------------------------------------------------------------------- /TopicRanking/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YiCheng98/Cooper/HEAD/TopicRanking/inference.py -------------------------------------------------------------------------------- /TopicRanking/subgoal_state_clustering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YiCheng98/Cooper/HEAD/TopicRanking/subgoal_state_clustering.py -------------------------------------------------------------------------------- /TopicRanking/test_fuc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YiCheng98/Cooper/HEAD/TopicRanking/test_fuc.py -------------------------------------------------------------------------------- /TopicRanking/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YiCheng98/Cooper/HEAD/TopicRanking/train.py -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YiCheng98/Cooper/HEAD/data/README.md -------------------------------------------------------------------------------- /data/psuedo_label_topic_ranking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YiCheng98/Cooper/HEAD/data/psuedo_label_topic_ranking.py -------------------------------------------------------------------------------- /utils/call_LLM_API/my_API_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YiCheng98/Cooper/HEAD/utils/call_LLM_API/my_API_call.py -------------------------------------------------------------------------------- /utils/prompt_management/PromptLoader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YiCheng98/Cooper/HEAD/utils/prompt_management/PromptLoader.py -------------------------------------------------------------------------------- /utils/prompt_management/prompt_templates/P4G_generate_response_passive.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YiCheng98/Cooper/HEAD/utils/prompt_management/prompt_templates/P4G_generate_response_passive.txt -------------------------------------------------------------------------------- /utils/prompt_management/prompt_templates/P4G_generate_response_with_topic_candidates.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YiCheng98/Cooper/HEAD/utils/prompt_management/prompt_templates/P4G_generate_response_with_topic_candidates.txt -------------------------------------------------------------------------------- /utils/prompt_management/prompt_templates/esconv_generate_response_passive.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YiCheng98/Cooper/HEAD/utils/prompt_management/prompt_templates/esconv_generate_response_passive.txt -------------------------------------------------------------------------------- /utils/prompt_management/prompt_templates/esconv_generate_response_with_topic_candidates.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YiCheng98/Cooper/HEAD/utils/prompt_management/prompt_templates/esconv_generate_response_with_topic_candidates.txt --------------------------------------------------------------------------------