Datasets:

Modalities:
Text
Languages:
Russian
Libraries:
Datasets
License:
Y1OV commited on
Commit
a86e761
·
verified ·
1 Parent(s): 104181d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +6 -2
README.md CHANGED
@@ -99,9 +99,13 @@ This benchmark highlights the need for further research into the reliability of
99
 
100
  ```
101
  from huggingface_hub import hf_hub_download
 
102
 
103
-
104
- dataset = hf_hub_download(repo_id="RANEPA-ai/SLAVA-OpenData-2800-v1", filename="open_questions_data.jsonl", repo_type="dataset")
 
 
 
105
 
106
  ```
107
 
 
99
 
100
  ```
101
  from huggingface_hub import hf_hub_download
102
+ import pandas as pd
103
 
104
+ dataset = hf_hub_download(repo_id="RANEPA-ai/SLAVA-OpenData-2800-v1",
105
+ filename="open_questions_data.jsonl",
106
+ repo_type="dataset",
107
+ token="your_token")
108
+ df = pd.read_json(dataset, lines=True)
109
 
110
  ```
111