mstz commited on
Commit
246038c
1 Parent(s): f065932

Update isolet.py

Browse files
Files changed (1) hide show
  1. isolet.py +2 -1
isolet.py CHANGED
@@ -23,7 +23,7 @@ _CITATION = """
23
 
24
  # Dataset info
25
  urls_per_split = {
26
- "train": "https://github.com/riccotti/InterpretableModels/raw/master/datasets/isolet.data.gz"
27
  }
28
  features_types_per_config = {
29
  "isolet": {
@@ -63,6 +63,7 @@ class Isolet(datasets.GeneratorBasedBuilder):
63
  ]
64
 
65
  def _generate_examples(self, filepath: str):
 
66
  data = pandas.read_csv(filepath, header=None)
67
  data = self.preprocess(data, config=self.config.name)
68
 
 
23
 
24
  # Dataset info
25
  urls_per_split = {
26
+ "train": "https://huggingface.co/datasets/mstz/isolet/resolve/main/isolet.zip"
27
  }
28
  features_types_per_config = {
29
  "isolet": {
 
63
  ]
64
 
65
  def _generate_examples(self, filepath: str):
66
+ print(filepath)
67
  data = pandas.read_csv(filepath, header=None)
68
  data = self.preprocess(data, config=self.config.name)
69