fix: handle more todos
Browse files
zillow.py
CHANGED
@@ -11,8 +11,7 @@
|
|
11 |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12 |
# See the License for the specific language governing permissions and
|
13 |
# limitations under the License.
|
14 |
-
|
15 |
-
"""TODO: Add a description here."""
|
16 |
|
17 |
|
18 |
import json
|
@@ -20,31 +19,25 @@ import os
|
|
20 |
|
21 |
import datasets
|
22 |
|
23 |
-
# TODO: Add BibTeX citation
|
24 |
-
# Find for instance the citation on arxiv or on the dataset repo/website
|
25 |
_CITATION = """\
|
26 |
@InProceedings{huggingface:dataset,
|
27 |
-
title = {
|
28 |
-
author={
|
29 |
-
}
|
30 |
-
year={2020}
|
31 |
}
|
32 |
"""
|
33 |
|
34 |
-
# TODO: Add description of the dataset here
|
35 |
-
# You can copy an official description
|
36 |
_DESCRIPTION = """\
|
37 |
-
This
|
38 |
"""
|
39 |
|
40 |
_HOMEPAGE = "https://huggingface.co/datasets/misikoff/zillow"
|
41 |
|
42 |
-
|
43 |
-
_LICENSE = ""
|
44 |
|
45 |
|
46 |
class Zillow(datasets.GeneratorBasedBuilder):
|
47 |
-
"""
|
48 |
|
49 |
VERSION = datasets.Version("1.1.0")
|
50 |
|
|
|
11 |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12 |
# See the License for the specific language governing permissions and
|
13 |
# limitations under the License.
|
14 |
+
"""This dataset is comprised of seven different configurations of data covering different aspects of the housing market in the United States. All data is provided by Zillow. The seven configurations are: home_values_forecasts, new_construction, for_sale_listings, rentals, sales, home_values, and days_on_market. Each configuration has a different set of features and target variables. The data is provided in JSONL format."""
|
|
|
15 |
|
16 |
|
17 |
import json
|
|
|
19 |
|
20 |
import datasets
|
21 |
|
|
|
|
|
22 |
_CITATION = """\
|
23 |
@InProceedings{huggingface:dataset,
|
24 |
+
title = {Housing Data},
|
25 |
+
author={Zillow},
|
26 |
+
year={2024}
|
|
|
27 |
}
|
28 |
"""
|
29 |
|
|
|
|
|
30 |
_DESCRIPTION = """\
|
31 |
+
This dataset is comprised of seven different configurations of data covering different aspects of the housing market in the United States. All data is provided by Zillow. The seven configurations are: home_values_forecasts, new_construction, for_sale_listings, rentals, sales, home_values, and days_on_market. Each configuration has a different set of features and target variables. The data is provided in JSONL format.
|
32 |
"""
|
33 |
|
34 |
_HOMEPAGE = "https://huggingface.co/datasets/misikoff/zillow"
|
35 |
|
36 |
+
_LICENSE = "other"
|
|
|
37 |
|
38 |
|
39 |
class Zillow(datasets.GeneratorBasedBuilder):
|
40 |
+
"""Housing data in the United States provided by Zillow"""
|
41 |
|
42 |
VERSION = datasets.Version("1.1.0")
|
43 |
|