Datasets:
conversations
listlengths 2
2
| source
stringclasses 1
value | category
stringclasses 2
values |
---|---|---|
[
{
"from": "user",
"value": "What is the recommended workout plan for a user with age 25?"
},
{
"from": "assistant",
"value": "The recommended workout plan for a user with age 25 is HIIT, Strength Training, Endurance."
}
] | Human | Q&A |
[
{
"from": "user",
"value": "Why is the user recommended HIIT, Strength Training, and Endurance?"
},
{
"from": "assistant",
"value": "Because the user is 25 years old, which falls within the 18-35 age range."
}
] | Human | Explain |
FineCorpus-WorkoutExercise
This dataset contains structured workout exercise prompts for fine-tuning LLMs.
Structure:
conversations
: Contains multi-turn dialogue pairs.source
: Indicates whether the data is from reasoning (Human
) or generated by an AI model (LLM
).category
: Categorizes data intoQ&A
,Explain
,Describe
,Translate
.
Usage:
To use this dataset:
from datasets import load_dataset
dataset = load_dataset("padiflm/FineCorpus-WorkoutExercise", split="train")
print(dataset[:5])
- Downloads last month
- 34