From 072984958dba59a4492ba3108bfc60c3c5bd10f9 Mon Sep 17 00:00:00 2001 From: F1nnH <finn@hillengass.de> Date: Thu, 29 Feb 2024 22:11:31 +0100 Subject: [PATCH] Update README.md files with approach descriptions --- README.md | 4 ++-- data/own_data/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d9f7e49..46450e2 100644 --- a/README.md +++ b/README.md @@ -21,11 +21,11 @@ The project is designed to easily integrate other models, and the code is writte ## One-Shot Approach -The one-shot approach takes the MultiWOZ dataset to extract domain knowledge and use it as context for the dialogue generation. Then we prompt the model again with the generated Dialogue to create Annotations. The code for this approach is located in the [`src/one_shot`](src/one-shot/) directory. +The one-shot approach takes the MultiWOZ dataset and extracts domain knowledge to use as context for the dialogue generation. A Model is prompted to generate Dialogues and after that Annotations for these Dialogues. The code for this approach is located in the [`src/one_shot`](src/one-shot/) directory. ## Multiagent Approach -(TODO) +The Multiagent approach uses a retrieval-based system to generate dialogues. The system uses the HeidelKBerg dataset to retrieve information about restaurants, hotels and attractions in Heidelberg. The code for this approach is located in the [`src/multiagent`](src/multiagent/) directory. ## Project results diff --git a/data/own_data/README.md b/data/own_data/README.md index ac19cd0..5f00729 100644 --- a/data/own_data/README.md +++ b/data/own_data/README.md @@ -4,4 +4,4 @@ This folder contains all data created by us. These are the results of our one-sh ## Contents - one-shot/ - Contains the domain knowledge, dialogues and annotations created by the one-shot approach. -- multiagent/ - (TODO) \ No newline at end of file +- multiagent/ - Contains the dialogues created by the multiagent approach. \ No newline at end of file -- GitLab