🎭 Avatars
Collection
The latest AI-powered technologies usher in a new era of realistic avatars! 🚀
•
75 items
•
Updated
•
88
All the HF H4 datasets follow it :)
We could definitely do some like https://huggingface.co/datasets/argilla/distilabel-intel-orca-dpo-pairs, orca etc.
I'm doing hh-rlhf right now so it can be used with alignment-handbook.
It's the same. But I feel we would benefit from a different name than ChatML, which I sometimes see used to refer this format and and the actual chat template format.
messages = [
{
"role": "system",
"content": "You are a friendly chatbot who always responds in the style of a pirate",
},
{"role": "user", "content": "How many helicopters can a human eat in one sitting?"},
]
messages
column of type list.role
and content
keys.role
should be one of system
, assistant
or user
.content
is the text content of the message.