fix: typos
Browse files
processed/days_on_market/{final2.jsonl → final5.jsonl}
RENAMED
File without changes
|
processed/for_sale_listings/final2.jsonl
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:38e3f7794b23cfdb27f446d888b6c930078e5fb511311c7d216a248f27c74757
|
3 |
-
size 179627939
|
|
|
|
|
|
|
|
zillow.py
CHANGED
@@ -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, "
|
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,15 +350,15 @@ class Zillow(datasets.GeneratorBasedBuilder):
|
|
350 |
"Metro": data["Metro"],
|
351 |
"County": data["County"],
|
352 |
"Date": data["Date"],
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
"Month Over Month %": data["Month Over Month %"],
|
363 |
"Quarter Over Quarter %": data["Quarter Over Quarter %"],
|
364 |
"Year Over Year %": data["Year Over Year %"],
|
|
|
302 |
)
|
303 |
|
304 |
def _split_generators(self, dl_manager):
|
305 |
+
file_path = os.path.join("processed", self.config.name, "final5.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 |
+
],
|
359 |
+
"Year Over Year % (Smoothed) (Seasonally Adjusted)": data[
|
360 |
+
"Year Over Year % (Smoothed) (Seasonally Adjusted)"
|
361 |
+
],
|
362 |
"Month Over Month %": data["Month Over Month %"],
|
363 |
"Quarter Over Quarter %": data["Quarter Over Quarter %"],
|
364 |
"Year Over Year %": data["Year Over Year %"],
|