Dataset Viewer issue
#1
by
isashap
- opened
The dataset viewer is not working.
Error details:
Error code: UnexpectedError
Thanks for reporting. I am investigating it.
Please note that this is not specifically an issue with the viewer: your dataset cannot be loaded.
First, the training file is not identified because the filename does not match the word "train": the word "trainer" is used instead.
- You could either rename the file or define the filenames for each split by using the YAML tags in the header of your README file. See our docs: https://huggingface.co/docs/datasets/repository_structure#define-your-splits-and-subsets-in-yaml
Second, the column names (defined in the header of your CSV files) are different for the train and test splits:
- Column names in the train CSV file:
job,concat
- Column names in the test CSV file:
job,resume point
You need to rename the column names, so that they are the same for all the splits.
albertvillanova
changed discussion status to
closed
thank you so much for your help!