Update README.md
Browse files
README.md
CHANGED
@@ -49,4 +49,31 @@ tags:
|
|
49 |
- empathetic
|
50 |
size_categories:
|
51 |
- 1K<n<10K
|
52 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
- empathetic
|
50 |
size_categories:
|
51 |
- 1K<n<10K
|
52 |
+
---
|
53 |
+
# ESCONV for LLM
|
54 |
+
This repository contains a reformatted version of the ESCONV dataset, tailored for seamless integration with Language Model (LLM) training and inference. The original dataset's format posed challenges for direct application in LLM tasks, prompting us to restructure and clean the data.
|
55 |
+
|
56 |
+
## Data Restructuring
|
57 |
+
1. Assigned the `user` role to the `usr`, `assistant` role to the `sys`.
|
58 |
+
2. Removed the `survey_scor` and 'supporter' fields to streamline the data.
|
59 |
+
|
60 |
+
## Data Format
|
61 |
+
Each entry in the reformatted dataset consists of the following fields:
|
62 |
+
|
63 |
+
- conversations: A list of dictionaries, where each dictionary represents a turn in the dialogue and contains:
|
64 |
+
- role: A string indicating the speaker's role, either user or assistant.
|
65 |
+
- content: A string containing the dialogue content.
|
66 |
+
- strategy: A string containing the strategy of current dialogue content, if role is user, strategy is NONE.
|
67 |
+
- emotion: A string indicating the emotional label associated with the dialogue (corresponds to the emotion_type field in the original dataset).
|
68 |
+
- situation: A string describing the situational label for the dialogue (corresponds to the situation field in the original dataset).
|
69 |
+
- problem: A string describing the problem label for the user (corresponds to the problem_type field in the original dataset).
|
70 |
+
- experience: A string, corresponds to the experience_type field in the original dataset.
|
71 |
+
|
72 |
+
|
73 |
+
## Dataset Statistics
|
74 |
+
|
75 |
+
| Dataset | Total Turn | Average Turn | Average Length |
|
76 |
+
|-------------|------------|--------------|----------------|
|
77 |
+
| Train | 26,648 | 29.284 | 14.547 |
|
78 |
+
| Validation | 5,678 | 29.118 | 14.630 |
|
79 |
+
| Test | 6,039 | 30.969 | 13.756 |
|