Datasets:
Tasks:
Text Generation
Sub-tasks:
dialogue-modeling
Languages:
Russian
Size:
1M<n<10M
Tags:
conversations
License:
Update README.md
Browse files
README.md
CHANGED
@@ -61,7 +61,7 @@ This dataset is designed for:
|
|
61 |
```python
|
62 |
from datasets import load_dataset
|
63 |
|
64 |
-
for sample in load_dataset("inkoziev/Conversations"):
|
65 |
print(sample['conversation'])
|
66 |
```
|
67 |
|
|
|
61 |
```python
|
62 |
from datasets import load_dataset
|
63 |
|
64 |
+
for sample in load_dataset("inkoziev/Conversations", split="train", trust_remote_code=True, streaming=True):
|
65 |
print(sample['conversation'])
|
66 |
```
|
67 |
|