misikoff commited on
Commit
6ff8cd9
1 Parent(s): 80cdc78

fix filepath

Browse files
Files changed (1) hide show
  1. zillow.py +3 -3
zillow.py CHANGED
@@ -137,7 +137,7 @@ class NewDataset(datasets.GeneratorBasedBuilder):
137
  name=datasets.Split.TRAIN,
138
  # These kwargs will be passed to _generate_examples
139
  gen_kwargs={
140
- "filepath": 'data/home_value_forecasts', # os.path.join(data_dir, "train.jsonl"),
141
  "split": "train",
142
  },
143
  ),
@@ -145,7 +145,7 @@ class NewDataset(datasets.GeneratorBasedBuilder):
145
  name=datasets.Split.VALIDATION,
146
  # These kwargs will be passed to _generate_examples
147
  gen_kwargs={
148
- "filepath": 'data/home_value_forecasts', # os.path.join(data_dir, "dev.jsonl"),
149
  "split": "dev",
150
  },
151
  ),
@@ -153,7 +153,7 @@ class NewDataset(datasets.GeneratorBasedBuilder):
153
  name=datasets.Split.TEST,
154
  # These kwargs will be passed to _generate_examples
155
  gen_kwargs={
156
- "filepath": 'data/home_value_forecasts', # os.path.join(data_dir, "test.jsonl"),
157
  "split": "test",
158
  },
159
  ),
 
137
  name=datasets.Split.TRAIN,
138
  # These kwargs will be passed to _generate_examples
139
  gen_kwargs={
140
+ "filepath": 'data/home_value_forecasts/Metro_zhvf_growth_uc_sfrcondo_tier_0.33_0.67_month.csv', # os.path.join(data_dir, "train.jsonl"),
141
  "split": "train",
142
  },
143
  ),
 
145
  name=datasets.Split.VALIDATION,
146
  # These kwargs will be passed to _generate_examples
147
  gen_kwargs={
148
+ "filepath": 'data/home_value_forecasts/Metro_zhvf_growth_uc_sfrcondo_tier_0.33_0.67_month.csv', # os.path.join(data_dir, "dev.jsonl"),
149
  "split": "dev",
150
  },
151
  ),
 
153
  name=datasets.Split.TEST,
154
  # These kwargs will be passed to _generate_examples
155
  gen_kwargs={
156
+ "filepath": 'data/home_value_forecasts/Metro_zhvf_growth_uc_sfrcondo_tier_0.33_0.67_month.csv', # os.path.join(data_dir, "test.jsonl"),
157
  "split": "test",
158
  },
159
  ),