svo_probes / svo_probes.py
bryant1410's picture
Create svo_probes.py
c33dd6b
raw
history blame
435 Bytes
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)