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
For instance dataset.train_test_split(...) returns a HF Dataset, which then breaks serialization, deserialization logic.
Not sure if there's a better solution but the quick fix would be to wrap the methods (train_test_split, filter, select, sort, etc.) with Dataset.from_hf_dataset(...)
The text was updated successfully, but these errors were encountered:
For instance
dataset.train_test_split(...)
returns a HF Dataset, which then breaks serialization, deserialization logic.Not sure if there's a better solution but the quick fix would be to wrap the methods (train_test_split, filter, select, sort, etc.) with
Dataset.from_hf_dataset(...)
The text was updated successfully, but these errors were encountered: