Datasets:
ahnafsamin
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -101,7 +101,7 @@ To load the full SUBAK.KO corpus, use the following code:
|
|
101 |
```python
|
102 |
from datasets import load_dataset
|
103 |
|
104 |
-
dataset = load_dataset("
|
105 |
```
|
106 |
|
107 |
To load a specific split of the SUBAK.KO, define the split and set the streaming mode as True in the following way:
|
@@ -109,7 +109,7 @@ To load a specific split of the SUBAK.KO, define the split and set the streaming
|
|
109 |
```python
|
110 |
from datasets import load_dataset
|
111 |
|
112 |
-
dataset = load_dataset("
|
113 |
```
|
114 |
More documentation on streaming can be found [from this link.](https://huggingface.co/docs/datasets/stream#split-dataset)
|
115 |
|
|
|
101 |
```python
|
102 |
from datasets import load_dataset
|
103 |
|
104 |
+
dataset = load_dataset("SUST-CSE-Speech/SUBAK.KO")
|
105 |
```
|
106 |
|
107 |
To load a specific split of the SUBAK.KO, define the split and set the streaming mode as True in the following way:
|
|
|
109 |
```python
|
110 |
from datasets import load_dataset
|
111 |
|
112 |
+
dataset = load_dataset("SUST-CSE-Speech/SUBAK.KO", split="test", streaming=True)
|
113 |
```
|
114 |
More documentation on streaming can be found [from this link.](https://huggingface.co/docs/datasets/stream#split-dataset)
|
115 |
|