nielsr HF Staff commited on
Commit
9dacbf9
·
verified ·
1 Parent(s): aea6a3e

Update dataset card: Add paper/project links, time-series-forecasting task, and BibTeX

Browse files

This pull request aims to enhance the dataset card for the "Hitchhiking Rides Dataset" by implementing the following improvements:

- **Update Task Category**: Changed the `task_categories` metadata tag from `tabular-regression` to `time-series-forecasting`. This better reflects the dataset's primary use case in predicting waiting times, as highlighted in the paper and the dataset's "Data Science Uses" section.
- **Add Paper Link**: Corrected the empty links to the associated paper, pointing them to the official Hugging Face Papers page: `https://huggingface.co/papers/2506.21946`.
- **Add Project Page Link**: Included a prominent link to the project's official website (`https://tillwenke.github.io/`) in the dataset card content for easier access to related resources.
- **Add BibTeX Citation**: Provided a complete BibTeX citation for the paper in the "Citation" section, ensuring proper attribution for researchers.
- **Minor Correction**: Corrected a typo from "scrip" to "script" in the "Dataset Sources" section.

These updates will make the dataset card more informative, accurate, and user-friendly for the community.

Files changed (1) hide show
  1. README.md +21 -11
README.md CHANGED
@@ -1,19 +1,19 @@
1
  ---
2
- license: odbl
3
- task_categories:
4
- - tabular-regression
5
  language:
6
  - en
7
  - fr
8
  - de
9
  - nl
 
 
 
 
 
 
10
  tags:
11
  - mobility
12
  - hitchhiking
13
  - transport
14
- pretty_name: Largest Dataset of Hitchhiking Rides
15
- size_categories:
16
- - 10K<n<100K
17
  dataset_info:
18
  features:
19
  - name: stops
@@ -98,11 +98,14 @@ configs:
98
  - split: train
99
  path: data/train-*
100
  ---
 
101
  # The Hitchhiking Rides Dataset
102
 
103
  <!-- Provide a quick summary of the dataset. -->
104
 
105
- Here the dataset described in [Hitchhiking Rides Dataset: Two decades of crowd-sourced records on stochastic traveling]() is published.
 
 
106
 
107
  This is the largest dataset of crowd-sourced real-world hitchhiking rides.
108
  Data has been collected on online platforms such das `liftershalte.info`, `hitchwiki.org` and `hitchmap.com` starting in 2005 until today.
@@ -127,7 +130,7 @@ Data has been collected on online platforms such das `liftershalte.info`, `hitch
127
 
128
  Sources are given for each entry in the respective dataset column.
129
 
130
- Data was fetched from the different sources and published here running [this scrip](https://github.com/Hitchwiki/hitchhiking-data/blob/main/analysis/publications/2025%20-%20Wenke/publish_dataset.ipynb).
131
 
132
  ## Uses
133
 
@@ -149,7 +152,7 @@ The structure that this dataset follows is described in the [Hitchhiking Data St
149
 
150
  ## Dataset Creation & Bias, Risks, and Limitations
151
 
152
- A dataset paper was published on [arXiv]() to address the above questions.
153
 
154
 
155
  ## Citation [optional]
@@ -158,8 +161,15 @@ A dataset paper was published on [arXiv]() to address the above questions.
158
 
159
  **BibTeX:**
160
 
161
- [More Information Needed]
162
-
 
 
 
 
 
 
 
163
 
164
  ## Dataset Card Authors
165
 
 
1
  ---
 
 
 
2
  language:
3
  - en
4
  - fr
5
  - de
6
  - nl
7
+ license: odbl
8
+ size_categories:
9
+ - 10K<n<100K
10
+ task_categories:
11
+ - time-series-forecasting
12
+ pretty_name: Largest Dataset of Hitchhiking Rides
13
  tags:
14
  - mobility
15
  - hitchhiking
16
  - transport
 
 
 
17
  dataset_info:
18
  features:
19
  - name: stops
 
98
  - split: train
99
  path: data/train-*
100
  ---
101
+
102
  # The Hitchhiking Rides Dataset
103
 
104
  <!-- Provide a quick summary of the dataset. -->
105
 
106
+ Here the dataset described in [Hitchhiking Rides Dataset: Two decades of crowd-sourced records on stochastic traveling](https://huggingface.co/papers/2506.21946) is published.
107
+
108
+ Project page: https://tillwenke.github.io/
109
 
110
  This is the largest dataset of crowd-sourced real-world hitchhiking rides.
111
  Data has been collected on online platforms such das `liftershalte.info`, `hitchwiki.org` and `hitchmap.com` starting in 2005 until today.
 
130
 
131
  Sources are given for each entry in the respective dataset column.
132
 
133
+ Data was fetched from the different sources and published here running [this script](https://github.com/Hitchwiki/hitchhiking-data/blob/main/analysis/publications/2025%20-%20Wenke/publish_dataset.ipynb).
134
 
135
  ## Uses
136
 
 
152
 
153
  ## Dataset Creation & Bias, Risks, and Limitations
154
 
155
+ A dataset paper was published on [Hugging Face Papers](https://huggingface.co/papers/2506.21946) to address the above questions.
156
 
157
 
158
  ## Citation [optional]
 
161
 
162
  **BibTeX:**
163
 
164
+ ```bibtex
165
+ @article{wenke2025hitchhiking,
166
+ title={Hitchhiking Rides Dataset: Two decades of crowd-sourced records on stochastic traveling},
167
+ author={Wenke, Till},
168
+ journal={Hugging Face Papers},
169
+ year={2025},
170
+ url={https://huggingface.co/papers/2506.21946}
171
+ }
172
+ ```
173
 
174
  ## Dataset Card Authors
175