Datasets:
Dataset Viewer
The dataset viewer is not available for this subset.
Cannot get the split names for the config 'default' of the dataset.
Exception: SplitsNotFoundError
Message: The split names could not be parsed from the dataset config.
Traceback: Traceback (most recent call last):
File "/usr/local/lib/python3.12/site-packages/datasets/inspect.py", line 286, in get_dataset_config_info
for split_generator in builder._split_generators(
^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/packaged_modules/tsfile/tsfile.py", line 271, in _split_generators
scan = self._scan_metadata(all_files)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/packaged_modules/tsfile/tsfile.py", line 304, in _scan_metadata
from tsfile.constants import TIME_COLUMN, ColumnCategory
ModuleNotFoundError: No module named 'tsfile'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/src/services/worker/src/worker/job_runners/config/split_names.py", line 66, in compute_split_names_from_streaming_response
for split in get_dataset_split_names(
^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/inspect.py", line 340, in get_dataset_split_names
info = get_dataset_config_info(
^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/inspect.py", line 291, in get_dataset_config_info
raise SplitsNotFoundError("The split names could not be parsed from the dataset config.") from err
datasets.inspect.SplitsNotFoundError: The split names could not be parsed from the dataset config.Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
weatherAUS — Australian Daily Weather (TsFile)
Daily weather observations from 49 locations across Australia, the classic "predict if it rains tomorrow" dataset, converted from Parquet to Apache TsFile format.
Each time series is one weather station/city, observed once per day from 2007-11-01 to 2017-06-25, across 22 meteorological variables (temperature, rainfall, humidity, pressure, wind, cloud, sunshine, …).
Source
- Original dataset: lowkeydev-ln/weatherAUS
- Underlying data: Australian Bureau of Meteorology (BOM) public weather observations. The dataset is widely circulated (e.g. on Kaggle) as "Rain in Australia".
- License: the source HF dataset card declares no explicit license; the underlying observations are public BOM data. Verify terms before redistribution.
Data structure
Single Parquet (142,193 rows × 24 columns), long format: one row per (Location, Date). Key facts derived from the data:
- 49 distinct locations (
Location, e.g.Adelaide,Sydney,Woomera), each an independent daily time series (≈1,521–3,418 rows each). Dateis a real calendar date (YYYY-MM-DD); daily, equally spaced.- (Location, Date) is unique — no duplicate (station, day) rows.
- Many columns contain missing values (e.g.
Sunshine~67k,Cloud3pm~57k,Evaporation~61k missing). These are preserved as-is — no imputation, no rows dropped.
TsFile mapping
The TsFile uses the table model. One location = one device (time series).
| TsFile role | Column(s) | Type | Notes |
|---|---|---|---|
| TAG (device) | Location |
STRING | 49 Australian cities/stations |
| TIME | derived from Date |
INT64 (ms) | real Unix-epoch milliseconds |
| FIELD | MinTemp, MaxTemp, Rainfall, Evaporation, Sunshine, WindGustSpeed, WindSpeed9am, WindSpeed3pm, Humidity9am, Humidity3pm, Pressure9am, Pressure3pm, Cloud9am, Cloud3pm, Temp9am, Temp3pm, RISK_MM |
DOUBLE | numeric measurements |
| FIELD | WindGustDir, WindDir9am, WindDir3pm |
STRING | 16-point compass direction |
| FIELD | RainToday, RainTomorrow |
STRING | Yes / No |
- Table name:
weather_aus. Time precision:ms. - Within each device, rows are sorted by
Time(ascending).
Conversion notes (column handling)
Date→ Time: parsed into the derivedTimecolumn (Unix epoch ms) and not kept as a separate field. Lossless — daily, equally spaced.RISK_MMkept: this is the well-known target-leakage column (it equals the next day'sRainfall, i.e. the answer behindRainTomorrow). It is kept here as a genuine measurement; drop it if you train a model on this data.- No rows dropped, no imputation. Missing numeric values become
NaN, missing strings become empty. - Single split (no separate train/test); the entire CSV is one TsFile.
Files
.
├── README.md
└── data/
└── weather_aus.tsfile
Reading the TsFile
from tsfile import TsFileReader
reader = TsFileReader("data/weather_aus.tsfile")
for name, table in reader.get_all_table_schemas().items():
print(name, [c.get_column_name() for c in table.get_columns()])
# Query FIELD/TAG columns of the table 'weather_aus' via reader.query_table(...)
- Downloads last month
- 43