- Last Response Strategy
- Rewrite Strategy
- LLM Summarization Strategy
- Refert to CORAL Paper
docker build -t multi_turn_test_env .
docker run -it --gpus all --name multi_turn_test_env --shm-size=64G -p {port}:{port} -e GRANT_SUDO=yes --user root -v {root_folder}:/workspace/multi_turn_conversation -w /workspace/multi_turn_conversation multi_turn_test_env bash
docker exec -it multi_turn_test_env bash
-
When using the GPT API, enter the API KEY in the '.env' file created after executing the initialization command
-
Last Response Strategy
- Examples of conversation history file
- Examples of demonstration file
- Demonstartion file is not required
python multi_turn_conversation_test_summarization.py --config_path {config_path} --conversation_history_file {conversation_history_file_path} --demonstration_file {demonstration_file_path}
-
When using the GPT API, enter the API KEY in the '.env' file created after executing the initialization command
-
Step 1. Extracting keywords
-
Step 2(3). Combine keywords and generate final questions
python multi_turn_conversation_test_simple_rewriting.py --config_path {config_path}