Datasets:
Update README.md
Browse files
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 |
-
|
|
|
|
|
|
|
|
|
|
| 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 |
|