Update README.md
Browse files
README.md
CHANGED
|
@@ -119,6 +119,14 @@ instance_id: (str) - A formatted instance identifier, usually as org__repo_PR-nu
|
|
| 119 |
```
|
| 120 |
|
| 121 |
# Usage
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 122 |
Because huggingface's dataset library does not support complex nested structures,
|
| 123 |
there are nested structures within these fields that have been serialized in the original dataset(huggingface),
|
| 124 |
and you'll have to deserialize these if you want to use this dataset.
|
|
@@ -130,6 +138,7 @@ SERIALIZATION_FIELDS = [
|
|
| 130 |
]
|
| 131 |
```
|
| 132 |
|
|
|
|
| 133 |
## sample
|
| 134 |
```python
|
| 135 |
from datasets import load_dataset, config
|
|
|
|
| 119 |
```
|
| 120 |
|
| 121 |
# Usage
|
| 122 |
+
|
| 123 |
+
```python
|
| 124 |
+
from datasets import load_dataset
|
| 125 |
+
|
| 126 |
+
cpp_split = load_dataset("msb/msb, split='cpp')
|
| 127 |
+
|
| 128 |
+
```
|
| 129 |
+
|
| 130 |
Because huggingface's dataset library does not support complex nested structures,
|
| 131 |
there are nested structures within these fields that have been serialized in the original dataset(huggingface),
|
| 132 |
and you'll have to deserialize these if you want to use this dataset.
|
|
|
|
| 138 |
]
|
| 139 |
```
|
| 140 |
|
| 141 |
+
|
| 142 |
## sample
|
| 143 |
```python
|
| 144 |
from datasets import load_dataset, config
|