misikoff commited on
Commit
ad34fa4
1 Parent(s): 037a7cf

fix: handle more todos

Browse files
Files changed (1) hide show
  1. zillow.py +7 -14
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
- # TODO: Address all TODOs and remove all explanatory comments
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 = {A great new dataset},
28
- author={huggingface, Inc.
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 new dataset is designed to solve this great NLP task and is crafted with a lot of care.
38
  """
39
 
40
  _HOMEPAGE = "https://huggingface.co/datasets/misikoff/zillow"
41
 
42
- # TODO: Add the licence for the dataset here if you can find it
43
- _LICENSE = ""
44
 
45
 
46
  class Zillow(datasets.GeneratorBasedBuilder):
47
- """TODO: Short description of my dataset."""
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