CoolFace
Datasetpublic

TutorialGuide/blended-skill-talk-fixed

Compatibility Update This repository is a compatibility-fixed version of the original Blended Skill Talk dataset. The original dataset can be found at: Original Hugging Face dataset: https://huggingface.co/datasets/anezatra/blended-skill-talk This version was created to maintain compatibility with newer versions of the Hugging Face datasets library. Changes from the Original Dataset The following changes were made: Removed the unused label_candidates column.… See the full description on the dataset page: https://huggingface.co/datasets/TutorialGuide/blended-skill-talk-fixed.

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes33downloads
Dataset Card

Compatibility Update

This repository is a compatibility-fixed version of the original Blended Skill Talk dataset.

The original dataset can be found at:

  • Original Hugging Face dataset: https://huggingface.co/datasets/anezatra/blended-skill-talk

This version was created to maintain compatibility with newer versions of the Hugging Face datasets library.

Changes from the Original Dataset

The following changes were made:

  • Removed the unused label_candidates column.
  • Removed the invalid label_candidates feature definition (sequence: null) that caused schema parsing failures.
  • Re-exported the dataset Parquet files with a corrected schema.
  • Updated dataset metadata to match the exported files.

No conversation examples were modified.

No examples were added or removed.

The dataset content remains the same as the original release.


Blended Skill Talk

Dataset Summary

Blended Skill Talk is a conversational dataset designed to train and evaluate dialogue systems capable of combining multiple conversational skills.

The dataset combines persona-based conversation, empathetic dialogue, and knowledge-grounded conversation elements to encourage models to produce engaging, context-aware responses.

The dataset incorporates information from ConvAI2, EmpatheticDialogues, and Wizard of Wikipedia.


Data Structure (Updated)

Fields

FieldDescription
personasList of personas participating in the conversation
additional_contextExtra context or scenario description
previous_utteranceThe immediately preceding dialogue turn(s)
contextGeneral conversation context
free_messagesFree-form user or system messages
guided_messagesMessages generated via guided prompts
suggestionsSuggested responses from ConvAI2 Empathetic Dialogues and Wizard of Wikipedia
guidedchosensuggestionsSelected guided suggestions associated with the conversation

Splits

SplitExamplesSize (bytes)Description
Train40968990720Used for model training
Validation7231601536Used for validation and tuning

Total dataset size: 10592256 bytes Total number of dialogues: 4819


Loading This Version

python
from datasets import load_dataset

dataset = load_dataset(
    "TutorialGuide/blended-skill-talk-fixed"
)

print(dataset)

References

Original Hugging Face dataset: https://huggingface.co/datasets/anezatra/blended-skill-talk

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)