We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I try to run the following code in colab:
from datasets import load_dataset dataset = load_dataset("xinrongzhang2022/InfiniteBench")
I get the following error:
DatasetGenerationCastError: An error occurred while generating the dataset All the data files must have the same columns, but at some point there are 1 missing columns ({'options'}) This happened while the json dataset builder was generating data using hf://datasets/xinrongzhang2022/InfiniteBench/kv_retrieval.jsonl (at revision 2c3c9fe62808833ab783026bbf8e7a47539a28c6) Please either edit the data files to have matching columns, or separate them into different configurations (see docs at https://hf.co/docs/hub/datasets-manual-configuration#multiple-configurations)
DatasetGenerationCastError: An error occurred while generating the dataset
All the data files must have the same columns, but at some point there are 1 missing columns ({'options'})
This happened while the json dataset builder was generating data using
hf://datasets/xinrongzhang2022/InfiniteBench/kv_retrieval.jsonl (at revision 2c3c9fe62808833ab783026bbf8e7a47539a28c6)
Please either edit the data files to have matching columns, or separate them into different configurations (see docs at https://hf.co/docs/hub/datasets-manual-configuration#multiple-configurations)
The text was updated successfully, but these errors were encountered:
We have re-uploaded the files and solved this problem. Please kindly use load_dataset("xinrongzhang2022/InfiniteBench") now!
Sorry, something went wrong.
Running into this issue as well
please kindly set features when loading datasets
features
import datasets from dataset import Value, Sequence ft = Features({"id": Value("int64"), "context": Value("string"), "input": Value("string"), "answer": Sequence(Value("string")), "options": Sequence(Value("string"))}) dataset = load_dataset("xinrongzhang2022/InfiniteBench", features=ft)
from datasets import load_dataset, Features, Value, Sequence ft = Features({ "id": Value("int64"), "context": Value("string"), "input": Value("string"), "answer": Sequence(Value("string")), "options": Sequence(Value("string")) }) dataset = load_dataset("xinrongzhang2022/InfiniteBench", features=ft)
tuantuanzhang
No branches or pull requests
When I try to run the following code in colab:
from datasets import load_dataset
dataset = load_dataset("xinrongzhang2022/InfiniteBench")
I get the following error:
The text was updated successfully, but these errors were encountered: