added description and a home page
Browse files- airbnb_multicity.py +2 -2
airbnb_multicity.py
CHANGED
|
@@ -3,7 +3,7 @@ import pyarrow as pa
|
|
| 3 |
import pyarrow.parquet as pq
|
| 4 |
|
| 5 |
|
| 6 |
-
DESCRIPTION = ""
|
| 7 |
DATA_URL="https://huggingface.co/datasets/kraina/airbnb_multicity/resolve/main/data/all_airbnb.parquet"
|
| 8 |
|
| 9 |
class AirbnbDatasetConfig(datasets.BuilderConfig):
|
|
@@ -24,7 +24,7 @@ class AirbnbDataset(datasets.ArrowBasedBuilder):
|
|
| 24 |
return datasets.DatasetInfo(
|
| 25 |
# This is the description that will appear on the datasets page.
|
| 26 |
description=DESCRIPTION,
|
| 27 |
-
homepage="",
|
| 28 |
citation="",
|
| 29 |
# This defines the different columns of the dataset and their types
|
| 30 |
features=datasets.Features(
|
|
|
|
| 3 |
import pyarrow.parquet as pq
|
| 4 |
|
| 5 |
|
| 6 |
+
DESCRIPTION = "The dataset contains Airbnb data from 80 capitals and major cities all around the world."
|
| 7 |
DATA_URL="https://huggingface.co/datasets/kraina/airbnb_multicity/resolve/main/data/all_airbnb.parquet"
|
| 8 |
|
| 9 |
class AirbnbDatasetConfig(datasets.BuilderConfig):
|
|
|
|
| 24 |
return datasets.DatasetInfo(
|
| 25 |
# This is the description that will appear on the datasets page.
|
| 26 |
description=DESCRIPTION,
|
| 27 |
+
homepage="https://insideairbnb.com/",
|
| 28 |
citation="",
|
| 29 |
# This defines the different columns of the dataset and their types
|
| 30 |
features=datasets.Features(
|