File size: 845 Bytes
1074d7c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Dataset Summary
 The presented dataset contains `10000` Jupyter notebooks, 
 each of which contains at least one error. In addition to the notebook content, 
 the dataset also provides information about the repository where the notebook is stored. 
 This information can help restore the environment if needed.
 
![dataset_errors_overview.svg](docs%2Fstatic%2Fdataset_errors_overview.svg)

# Getting Started
This dataset is organized such that it can be naively loaded via the Hugging Face datasets library. We recommend using streaming due to the large size of the files.

```Python
import nbformat
from datasets import load_dataset

dataset = load_dataset(
    "JetBrains-Research/jupyter-errors-dataset", split="test", streaming=True
)
row = next(iter(dataset))
notebook = nbformat.reads(row["content"], as_version=nbformat.NO_CONVERT)
```