Update README.md
Browse files
README.md
CHANGED
@@ -56,6 +56,14 @@ configs:
|
|
56 |
data_files: preprocessed/stackexchange-math/*.jsonl
|
57 |
```
|
58 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
59 |
## Preprocessed Data
|
60 |
In the `./preprocessed/stackexchange-math` directory and `./preprocessed/stackexchange-math--1q1a` directory, you will find the data structured in two formats:
|
61 |
|
|
|
56 |
data_files: preprocessed/stackexchange-math/*.jsonl
|
57 |
```
|
58 |
|
59 |
+
How to load data:
|
60 |
+
|
61 |
+
```python
|
62 |
+
from datasets import load_dataset
|
63 |
+
|
64 |
+
ds = load_dataset("wikimedia/wikipedia", "stackmathqa1600k") # or any valid config_name
|
65 |
+
```
|
66 |
+
|
67 |
## Preprocessed Data
|
68 |
In the `./preprocessed/stackexchange-math` directory and `./preprocessed/stackexchange-math--1q1a` directory, you will find the data structured in two formats:
|
69 |
|