fix: readme adjustments
Browse files
README.md
CHANGED
@@ -13,12 +13,6 @@ description: 'This dataset is comprised of seven different configurations of dat
|
|
13 |
has a different set of features and target variables. The data is provided in JSONL
|
14 |
format.'
|
15 |
homepage: https://www.zillow.com/research/data/
|
16 |
-
configs:
|
17 |
-
- config_name: days_on_market
|
18 |
-
data_files:
|
19 |
-
- split: train
|
20 |
-
path:
|
21 |
-
- "parquet_files/days_on_market.parquet"
|
22 |
dataset_info:
|
23 |
- config_name: days_on_market
|
24 |
features:
|
@@ -432,11 +426,15 @@ dataset_info:
|
|
432 |
dataset_size: 27088039
|
433 |
---
|
434 |
|
435 |
-
# Housing Data Provided by Zillow
|
436 |
-
Updated 2023-02-01
|
437 |
|
438 |
This dataset contains several configs produced based on files available at https://www.zillow.com/research/data/.
|
439 |
|
|
|
|
|
|
|
|
|
440 |
Supported configs:
|
441 |
- [`days_on_market`](#days-on-market): Days to pending, days to close, share of listings with a price cut, and price cuts.
|
442 |
- [`for_sale_listings`](#for-sale-listings): Median listing price, new listings, and new pending listings.
|
|
|
13 |
has a different set of features and target variables. The data is provided in JSONL
|
14 |
format.'
|
15 |
homepage: https://www.zillow.com/research/data/
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
dataset_info:
|
17 |
- config_name: days_on_market
|
18 |
features:
|
|
|
426 |
dataset_size: 27088039
|
427 |
---
|
428 |
|
429 |
+
# Housing Data Provided by Zillow
|
430 |
+
Updated: 2023-02-01
|
431 |
|
432 |
This dataset contains several configs produced based on files available at https://www.zillow.com/research/data/.
|
433 |
|
434 |
+
# Viewer Notes
|
435 |
+
|
436 |
+
Because this repository includes the code used to process the raw Zillow data, the dataset viewer is not enabled. This is because the dataset viewer is not enabled for datasets that run arbitrary python code. For a normal viewer experience, please see the simplified version of this dataset at https://huggingface.co/datasets/misikoff/zillow-viewer. The viewer should be enabled there and the config files should match what is found here.
|
437 |
+
|
438 |
Supported configs:
|
439 |
- [`days_on_market`](#days-on-market): Days to pending, days to close, share of listings with a price cut, and price cuts.
|
440 |
- [`for_sale_listings`](#for-sale-listings): Median listing price, new listings, and new pending listings.
|
zillow.py
CHANGED
@@ -60,39 +60,39 @@ class Zillow(datasets.GeneratorBasedBuilder):
|
|
60 |
|
61 |
BUILDER_CONFIGS = [
|
62 |
datasets.BuilderConfig(
|
63 |
-
name="
|
64 |
version=VERSION,
|
65 |
-
description="This
|
66 |
),
|
67 |
datasets.BuilderConfig(
|
68 |
-
name="
|
69 |
version=VERSION,
|
70 |
-
description="This dataset covers
|
71 |
),
|
72 |
datasets.BuilderConfig(
|
73 |
-
name="
|
74 |
version=VERSION,
|
75 |
-
description="This dataset covers
|
76 |
),
|
77 |
datasets.BuilderConfig(
|
78 |
-
name="
|
79 |
version=VERSION,
|
80 |
-
description="This
|
81 |
),
|
82 |
datasets.BuilderConfig(
|
83 |
-
name="
|
84 |
version=VERSION,
|
85 |
-
description="This dataset covers
|
86 |
),
|
87 |
datasets.BuilderConfig(
|
88 |
-
name="
|
89 |
version=VERSION,
|
90 |
-
description="This dataset covers
|
91 |
),
|
92 |
datasets.BuilderConfig(
|
93 |
-
name="
|
94 |
version=VERSION,
|
95 |
-
description="This dataset covers
|
96 |
),
|
97 |
]
|
98 |
|
|
|
60 |
|
61 |
BUILDER_CONFIGS = [
|
62 |
datasets.BuilderConfig(
|
63 |
+
name="days_on_market",
|
64 |
version=VERSION,
|
65 |
+
description="This dataset covers days-on-market data for the United States",
|
66 |
),
|
67 |
datasets.BuilderConfig(
|
68 |
+
name="for_sale_listings",
|
69 |
version=VERSION,
|
70 |
+
description="This dataset covers for sale listings for the United States",
|
71 |
),
|
72 |
datasets.BuilderConfig(
|
73 |
+
name="home_values",
|
74 |
version=VERSION,
|
75 |
+
description="This dataset covers home values for the United States",
|
76 |
),
|
77 |
datasets.BuilderConfig(
|
78 |
+
name="home_values_forecasts",
|
79 |
version=VERSION,
|
80 |
+
description="This data covers home value forecasts for the United States",
|
81 |
),
|
82 |
datasets.BuilderConfig(
|
83 |
+
name="new_construction",
|
84 |
version=VERSION,
|
85 |
+
description="This dataset covers new construction data for the United States",
|
86 |
),
|
87 |
datasets.BuilderConfig(
|
88 |
+
name="rentals",
|
89 |
version=VERSION,
|
90 |
+
description="This dataset covers rental data for the United States",
|
91 |
),
|
92 |
datasets.BuilderConfig(
|
93 |
+
name="sales",
|
94 |
version=VERSION,
|
95 |
+
description="This dataset covers sales data for the United States",
|
96 |
),
|
97 |
]
|
98 |
|