inkoziev commited on
Commit
8ce86f7
·
verified ·
1 Parent(s): 6e6d4b4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
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