File size: 435 Bytes
c33dd6b
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from datasets.io.csv import CsvDatasetReader
from datasets.utils.typing import PathLike, NestedDataStructureLike


class SvoProbesDataset(CsvDatasetReader):
    def __init__(
        self,
        path_or_paths: NestedDataStructureLike[
            PathLike] = "https://raw.githubusercontent.com/deepmind/svo_probes/main/svo_probes.csv",
        *args,
        **kwargs,
    ):
        super().__init__(path_or_paths, *args, **kwargs)