You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is supposed to work the same as the (local) text data format, but it comes up against:
ifprompt_featureandcompletion_feature:
returnCompletionsDataset(ds, tokenizer, prompt_feature, completion_feature)
eliftext_feature:
returnDataset(train_ds, text_key=text_feature)
else:
raiseValueError(
"Specify either a prompt and completion feature or a text ""feature for the Hugging Face dataset."
)
which errors out because train_ds is not defined
The text was updated successfully, but these errors were encountered:
chimezie
added a commit
to chimezie/mlx-examples
that referenced
this issue
Nov 4, 2024
If you use a hf_dataset configuration such as (for e.x.)
It is supposed to work the same as the (local) text data format, but it comes up against:
which errors out because
train_ds
is not definedThe text was updated successfully, but these errors were encountered: