Hello, I have a json file on the format:
[
{
"question": *question-text*
"answer": *answer-text*
},
{
"question": *question-text*
"answer": *answer-text*
},
...
]
I want to load this into a hugging face Dataset. I’ve tried to use the load_dataset() function from datasets and the Dataset.from_list() function but in both cases I’ve received ArrowTypeError. Anyone who know why and how I can resolve this?