Datasets:
The dataset viewer is not available for this subset.
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.
IN5000 Open-Source Software Evolution — Forecasting (TsFile)
This dataset is the multivariate time-series forecasting data from the TU Delft IN5000 MSc thesis "A Framework for Identifying Evolution Patterns of Open-Source Software Projects", converted from CSV to Apache TsFile format.
Each time series describes the evolution of one open-source GitHub repository over a sequence of observation steps, across 11 software-engineering activity metrics (stars, issues, commits, contributors, deployments, forks, pull requests, workflows, releases, repository size, …).
Source
- Original dataset: MattiaBonfanti-CS/IN5000-MB-TUD-Forecasting
- Original code / analysis: https://github.com/IN5000-MB-TUD/data-analysis
- Author: Mattia Bonfanti — MSc Computer Science (Software Technology), TU Delft, IN5000 master's thesis, academic year 2023/2024 (m.bonfanti@student.tudelft.nl)
- License: MIT (inherited from the original dataset)
Data structure
The source is a single CSV (time_series_data.csv, 109,882 rows × 14 columns)
in long format: one row per (repository, step). Key facts derived from the data:
- 1,323 distinct repositories (
unique_id, e.g.nlbdev/pipeline), each one an independent time series. dsis a per-series integer step index0, 1, 2, …(ordinal observation step, not a real calendar timestamp). Series lengths vary (≈30–162 steps, median 83).cluster∈ {0, 1, 2} is a fixed evolution-pattern cluster label assigned to each repository (constant within a series).repositoryis the integer encoding ofunique_id(1:1 mapping).- 10 integer activity metrics:
stargazers,issues,commits,contributors,deployments,forks,pull_requests,workflows,releases,size. No missing values.
TsFile mapping
The TsFile uses the table model. One repository = one device (time-series).
| TsFile role | Column(s) | Type | Notes |
|---|---|---|---|
| TAG (device dimension) | unique_id, cluster |
STRING, INT64 | repository identity + its evolution cluster |
| TIME | derived from ds |
INT64 (ms) | ds value used directly as the millisecond timestamp |
| FIELD | repository |
INT64 | integer encoding of unique_id (redundant, kept on request) |
| FIELD | stargazers, issues, commits, contributors, deployments, forks, pull_requests, workflows, releases, size |
INT64 | activity metrics |
- Table name:
in5000_oss_forecasting. Time precision:ms. - Within each device, rows are sorted by
Time(ascending).
Conversion notes (column handling)
ds→ Time: consumed into the derivedTimecolumn and not kept as a separate field. Lossless:Timeequals the originalds. Because the dataset carries no real calendar dates (only an ordinal step index), the integer step is written directly as a millisecond value.repositoryis kept as a FIELD even though it is a 1:1 numeric encoding of theunique_idtag (redundant by design choice).- No rows dropped; the dataset has no train/test split (single CSV).
Files
.
├── README.md
└── data/
└── in5000_oss_forecasting.tsfile
Reading the TsFile
from tsfile import TsFileReader
reader = TsFileReader("data/in5000_oss_forecasting.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 'in5000_oss_forecasting' via reader.query_table(...)
Citation
Please cite the original thesis / dataset author (Mattia Bonfanti, TU Delft IN5000, 2023/2024) and link back to the original dataset.
- Downloads last month
- 31