Datasets:
bryant1410
commited on
Commit
·
c33dd6b
1
Parent(s):
e03e951
Create svo_probes.py
Browse files- svo_probes.py +13 -0
svo_probes.py
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from datasets.io.csv import CsvDatasetReader
|
2 |
+
from datasets.utils.typing import PathLike, NestedDataStructureLike
|
3 |
+
|
4 |
+
|
5 |
+
class SvoProbesDataset(CsvDatasetReader):
|
6 |
+
def __init__(
|
7 |
+
self,
|
8 |
+
path_or_paths: NestedDataStructureLike[
|
9 |
+
PathLike] = "https://raw.githubusercontent.com/deepmind/svo_probes/main/svo_probes.csv",
|
10 |
+
*args,
|
11 |
+
**kwargs,
|
12 |
+
):
|
13 |
+
super().__init__(path_or_paths, *args, **kwargs)
|