Load the GuppyLM Chat Dataset
mainYou can load the GuppyLM Chat training dataset (60K single-turn conversations) using the Hugging Face datasets library. The dataset contains conversations between a human and Guppy, a small fish character that speaks in short, lowercase sentences about its aquatic environment.
from datasets import load_dataset
ds = load_dataset("arman-bd/guppylm-60k-generic")
print(ds["train"][0])
# {'input': 'hi guppy', 'output': 'hello. the water is nice today.', 'category': 'greeting'}