misikoff commited on
Commit
ef3130e
·
1 Parent(s): 18bcae8

fix: typos

Browse files
processed/home_values_forecasts/final2.jsonl DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:362f909b077ef5da2fb09b1339eb5641d1746435c06bedc2affc70743f13fd3b
3
- size 13942709
 
 
 
 
zillow.py CHANGED
@@ -94,10 +94,10 @@ class Zillow(datasets.GeneratorBasedBuilder):
94
  "Metro": datasets.Value(dtype="string", id="Metro"),
95
  "County": datasets.Value(dtype="string", id="County"),
96
  "Date": datasets.Value(dtype="string", id="Date"),
97
- # "Month Over Month % (Smoothed) (Seasonally Adjusted)": datasets.Value(
98
- # dtype="float32",
99
- # id="Month Over Month % (Smoothed) (Seasonally Adjusted)",
100
- # ),
101
  "Quarter Over Quarter % (Smoothed) (Seasonally Adjusted)": datasets.Value(
102
  dtype="float32",
103
  id="Quarter Over Quarter % (Smoothed) (Seasonally Adjusted)",
@@ -302,7 +302,7 @@ class Zillow(datasets.GeneratorBasedBuilder):
302
  )
303
 
304
  def _split_generators(self, dl_manager):
305
- file_path = os.path.join("processed", self.config.name, "final2.jsonl")
306
  file_train = dl_manager.download(file_path)
307
  # file_test = dl_manager.download(os.path.join(self.config.name, "test.csv"))
308
  # file_eval = dl_manager.download(os.path.join(self.config.name, "valid.csv"))
@@ -350,9 +350,9 @@ class Zillow(datasets.GeneratorBasedBuilder):
350
  "Metro": data["Metro"],
351
  "County": data["County"],
352
  "Date": data["Date"],
353
- # "Month Over Month % (Smoothed) (Seasonally Adjusted)": data[
354
- # "Month Over Month % (Smoothed) (Seasonally Adjusted)"
355
- # ],
356
  "Quarter Over Quarter % (Smoothed) (Seasonally Adjusted)": data[
357
  "Quarter Over Quarter % (Smoothed) (Seasonally Adjusted)"
358
  ],
 
94
  "Metro": datasets.Value(dtype="string", id="Metro"),
95
  "County": datasets.Value(dtype="string", id="County"),
96
  "Date": datasets.Value(dtype="string", id="Date"),
97
+ "Month Over Month % (Smoothed) (Seasonally Adjusted)": datasets.Value(
98
+ dtype="float32",
99
+ id="Month Over Month % (Smoothed) (Seasonally Adjusted)",
100
+ ),
101
  "Quarter Over Quarter % (Smoothed) (Seasonally Adjusted)": datasets.Value(
102
  dtype="float32",
103
  id="Quarter Over Quarter % (Smoothed) (Seasonally Adjusted)",
 
302
  )
303
 
304
  def _split_generators(self, dl_manager):
305
+ file_path = os.path.join("processed", self.config.name, "final3.jsonl")
306
  file_train = dl_manager.download(file_path)
307
  # file_test = dl_manager.download(os.path.join(self.config.name, "test.csv"))
308
  # file_eval = dl_manager.download(os.path.join(self.config.name, "valid.csv"))
 
350
  "Metro": data["Metro"],
351
  "County": data["County"],
352
  "Date": data["Date"],
353
+ "Month Over Month % (Smoothed) (Seasonally Adjusted)": data[
354
+ "Month Over Month % (Smoothed) (Seasonally Adjusted)"
355
+ ],
356
  "Quarter Over Quarter % (Smoothed) (Seasonally Adjusted)": data[
357
  "Quarter Over Quarter % (Smoothed) (Seasonally Adjusted)"
358
  ],