TutorialGuide commited on
Commit
6b798a6
·
verified ·
1 Parent(s): 3533e90

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +51 -16
README.md CHANGED
@@ -25,13 +25,13 @@ dataset_info:
25
  sequence: string
26
  splits:
27
  - name: train
28
- num_bytes: 9201244
29
  num_examples: 4096
30
  - name: validation
31
- num_bytes: 1629426
32
  num_examples: 723
33
- download_size: 5915015
34
- dataset_size: 10830670
35
  configs:
36
  - config_name: default
37
  data_files:
@@ -46,17 +46,46 @@ task_categories:
46
  - text-generation
47
  ---
48
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
49
  # Blended Skill Talk
50
 
51
  ## Dataset Summary
52
 
53
- This dataset contains conversations between two personas with additional context previous utterances free messages guided messages suggestions and guided chosen suggestions allowing for the creation of natural multi-modal conversations with personality empathy and knowledge
 
 
54
 
55
- The conversations are designed to measure a full range of technical competencies such as dialogue flow management including response times topic control and coherence of conversation It also provides a basis for exploring the impact of different conversational styles on user engagement Additionally the dataset is useful for validating distributed dialogue systems across various modalities while revealing potential biases present in different contexts Finally it enables benchmarking against similar datasets toward the development of an automatic evaluation system for assessing tactical skill talk performance over time
56
 
57
  ---
58
 
59
- ## Data Structure
60
 
61
  ### Fields
62
 
@@ -69,32 +98,38 @@ The conversations are designed to measure a full range of technical competencies
69
  | free_messages | Free-form user or system messages |
70
  | guided_messages | Messages generated via guided prompts |
71
  | suggestions | Suggested responses from ConvAI2 Empathetic Dialogues and Wizard of Wikipedia |
72
- | guided_chosen_suggestions | Selected suggestions actually used in the conversation |
73
- | label_candidates | Optional candidate labels null in this dataset |
74
 
75
  ---
76
 
77
  ### Splits
78
 
79
  | Split | Examples | Size (bytes) | Description |
80
- |:------|----------|-------------|:-------------|
81
- | Train | 4096 | 9201244 | Used for model training |
82
- | Validation | 723 | 1629426 | Used for validation and tuning |
83
 
84
- **Total dataset size:** 10830670 bytes
85
  **Total number of dialogues:** 4819
86
 
87
  ---
88
 
89
- ## Usage Example
90
 
91
  ```python
92
  from datasets import load_dataset
93
 
94
- ds = load_dataset("anezatra/blended-skill-talk", split="train")
95
- print(ds[0])
 
 
 
96
  ```
97
 
 
 
98
  ## References
99
 
 
 
100
  Smith, E. M., Williamson, M., Shuster, K., Weston, J., & Boureau, Y. L. (2020). Can You Put it All Together: Evaluating Conversational Agents' Ability to Blend Skills. *arXiv preprint arXiv:2004.08449*. ([https://arxiv.org/abs/2004.08449](https://arxiv.org/abs/2004.08449))
 
25
  sequence: string
26
  splits:
27
  - name: train
28
+ num_bytes: 8990720
29
  num_examples: 4096
30
  - name: validation
31
+ num_bytes: 1601536
32
  num_examples: 723
33
+ download_size: 10600448
34
+ dataset_size: 10592256
35
  configs:
36
  - config_name: default
37
  data_files:
 
46
  - text-generation
47
  ---
48
 
49
+ ## Compatibility Update
50
+
51
+ This repository is a compatibility-fixed version of the original **Blended Skill Talk** dataset.
52
+
53
+ The original dataset can be found at:
54
+
55
+ - Original Hugging Face dataset: https://huggingface.co/datasets/anezatra/blended-skill-talk
56
+
57
+ This version was created to maintain compatibility with newer versions of the Hugging Face `datasets` library.
58
+
59
+ ### Changes from the Original Dataset
60
+
61
+ The following changes were made:
62
+
63
+ - Removed the unused `label_candidates` column.
64
+ - Removed the invalid `label_candidates` feature definition (`sequence: null`) that caused schema parsing failures.
65
+ - Re-exported the dataset Parquet files with a corrected schema.
66
+ - Updated dataset metadata to match the exported files.
67
+
68
+ No conversation examples were modified.
69
+
70
+ No examples were added or removed.
71
+
72
+ The dataset content remains the same as the original release.
73
+
74
+ ---
75
+
76
  # Blended Skill Talk
77
 
78
  ## Dataset Summary
79
 
80
+ Blended Skill Talk is a conversational dataset designed to train and evaluate dialogue systems capable of combining multiple conversational skills.
81
+
82
+ The dataset combines persona-based conversation, empathetic dialogue, and knowledge-grounded conversation elements to encourage models to produce engaging, context-aware responses.
83
 
84
+ The dataset incorporates information from ConvAI2, EmpatheticDialogues, and Wizard of Wikipedia.
85
 
86
  ---
87
 
88
+ ## Data Structure (Updated)
89
 
90
  ### Fields
91
 
 
98
  | free_messages | Free-form user or system messages |
99
  | guided_messages | Messages generated via guided prompts |
100
  | suggestions | Suggested responses from ConvAI2 Empathetic Dialogues and Wizard of Wikipedia |
101
+ | guided_chosen_suggestions | Selected guided suggestions associated with the conversation |
 
102
 
103
  ---
104
 
105
  ### Splits
106
 
107
  | Split | Examples | Size (bytes) | Description |
108
+ |:------|----------|--------------|-------------|
109
+ | Train | 4096 | 8990720 | Used for model training |
110
+ | Validation | 723 | 1601536 | Used for validation and tuning |
111
 
112
+ **Total dataset size:** 10592256 bytes
113
  **Total number of dialogues:** 4819
114
 
115
  ---
116
 
117
+ ## Loading This Version
118
 
119
  ```python
120
  from datasets import load_dataset
121
 
122
+ dataset = load_dataset(
123
+ "TutorialGuide/blended-skill-talk-fixed"
124
+ )
125
+
126
+ print(dataset)
127
  ```
128
 
129
+ ---
130
+
131
  ## References
132
 
133
+ Original Hugging Face dataset: https://huggingface.co/datasets/anezatra/blended-skill-talk
134
+
135
  Smith, E. M., Williamson, M., Shuster, K., Weston, J., & Boureau, Y. L. (2020). Can You Put it All Together: Evaluating Conversational Agents' Ability to Blend Skills. *arXiv preprint arXiv:2004.08449*. ([https://arxiv.org/abs/2004.08449](https://arxiv.org/abs/2004.08449))