Chapter 5 questions

I had the same error.
I don’t know the details but I can make the dataset using pandas package as below.

import pandas as pd
from datasets import Dataset
df = pd.read_json('datasets-issues.jsonl', orient='records', lines=True)
issues_dataset = Dataset.from_pandas(df, split="train")
issues_dataset
1 Like