Dataset Viewer
Auto-converted to Parquet Duplicate
url
string
repository_url
string
labels_url
string
comments_url
string
events_url
string
html_url
string
id
int64
node_id
string
number
int64
title
string
user
dict
labels
list
state
string
locked
bool
assignee
dict
assignees
list
milestone
dict
comments
list
created_at
timestamp[s]
updated_at
timestamp[s]
closed_at
timestamp[s]
author_association
string
type
null
active_lock_reason
null
sub_issues_summary
dict
issue_dependencies_summary
dict
body
string
closed_by
dict
reactions
dict
timeline_url
string
performed_via_github_app
null
state_reason
string
draft
bool
pull_request
dict
is_pull_request
bool
https://api.github.com/repos/huggingface/datasets/issues/7813
https://api.github.com/repos/huggingface/datasets
https://api.github.com/repos/huggingface/datasets/issues/7813/labels{/name}
https://api.github.com/repos/huggingface/datasets/issues/7813/comments
https://api.github.com/repos/huggingface/datasets/issues/7813/events
https://github.com/huggingface/datasets/issues/7813
3,503,446,288
I_kwDODunzps7Q0lkQ
7,813
Caching does not work when using python3.14
{ "login": "intexcor", "id": 142020129, "node_id": "U_kgDOCHcOIQ", "avatar_url": "https://avatars.githubusercontent.com/u/142020129?v=4", "gravatar_id": "", "url": "https://api.github.com/users/intexcor", "html_url": "https://github.com/intexcor", "followers_url": "https://api.github.com/users/intexcor/...
[]
open
false
null
[]
null
[ "https://github.com/uqfoundation/dill/issues/725" ]
2025-10-10T15:36:46
2025-10-10T15:47:32
null
NONE
null
null
{ "total": 0, "completed": 0, "percent_completed": 0 }
{ "blocked_by": 0, "total_blocked_by": 0, "blocking": 0, "total_blocking": 0 }
### Describe the bug Traceback (most recent call last): File "/workspace/ctn.py", line 8, in <module> ds = load_dataset(f"naver-clova-ix/synthdog-{lang}") # или "synthdog-zh" для китайского File "/workspace/.venv/lib/python3.14/site-packages/datasets/load.py", line 1397, in load_dataset builder_instance =...
null
{ "url": "https://api.github.com/repos/huggingface/datasets/issues/7813/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/huggingface/datasets/issues/7813/timeline
null
null
null
null
false
https://api.github.com/repos/huggingface/datasets/issues/7812
https://api.github.com/repos/huggingface/datasets
https://api.github.com/repos/huggingface/datasets/issues/7812/labels{/name}
https://api.github.com/repos/huggingface/datasets/issues/7812/comments
https://api.github.com/repos/huggingface/datasets/issues/7812/events
https://github.com/huggingface/datasets/pull/7812
3,500,901,422
PR_kwDODunzps6s_New
7,812
docs: document_dataset PDFs & OCR
{ "login": "ethanknights", "id": 34215814, "node_id": "MDQ6VXNlcjM0MjE1ODE0", "avatar_url": "https://avatars.githubusercontent.com/u/34215814?v=4", "gravatar_id": "", "url": "https://api.github.com/users/ethanknights", "html_url": "https://github.com/ethanknights", "followers_url": "https://api.github.c...
[]
open
false
null
[]
null
[]
2025-10-09T23:31:41
2025-10-09T23:31:41
null
NONE
null
null
null
null
Use acronyms consistently across document_dataset docs.
null
{ "url": "https://api.github.com/repos/huggingface/datasets/issues/7812/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/huggingface/datasets/issues/7812/timeline
null
null
false
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/7812", "html_url": "https://github.com/huggingface/datasets/pull/7812", "diff_url": "https://github.com/huggingface/datasets/pull/7812.diff", "patch_url": "https://github.com/huggingface/datasets/pull/7812.patch", "merged_at": null }
true
https://api.github.com/repos/huggingface/datasets/issues/7811
https://api.github.com/repos/huggingface/datasets
https://api.github.com/repos/huggingface/datasets/issues/7811/labels{/name}
https://api.github.com/repos/huggingface/datasets/issues/7811/comments
https://api.github.com/repos/huggingface/datasets/issues/7811/events
https://github.com/huggingface/datasets/issues/7811
3,500,741,658
I_kwDODunzps7QqRQa
7,811
SIGSEGV when Python exits due to near null deref
{ "login": "iankronquist", "id": 5192353, "node_id": "MDQ6VXNlcjUxOTIzNTM=", "avatar_url": "https://avatars.githubusercontent.com/u/5192353?v=4", "gravatar_id": "", "url": "https://api.github.com/users/iankronquist", "html_url": "https://github.com/iankronquist", "followers_url": "https://api.github.com...
[]
open
false
null
[]
null
[ "The issue seems to come from `dill` which is a `datasets` dependency, e.g. this segfaults:\n\n```python\nimport dill\nfrom tqdm import tqdm\nprogress_bar = tqdm(total=(1000), unit='cols', desc='cols ')\nprogress_bar.update(1)\n```\n\n`tqdm` seems to segfault when `dill` is imported. I only found this about segfaul...
2025-10-09T22:00:11
2025-10-10T22:09:24
null
NONE
null
null
{ "total": 0, "completed": 0, "percent_completed": 0 }
{ "blocked_by": 0, "total_blocked_by": 0, "blocking": 0, "total_blocking": 0 }
### Describe the bug When I run the following python script using datasets I get a segfault. ```python from datasets import load_dataset from tqdm import tqdm progress_bar = tqdm(total=(1000), unit='cols', desc='cols ') progress_bar.update(1) ``` ``` % lldb -- python3 crashmin.py (lldb) target create "python3" Cur...
null
{ "url": "https://api.github.com/repos/huggingface/datasets/issues/7811/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/huggingface/datasets/issues/7811/timeline
null
null
null
null
false
https://api.github.com/repos/huggingface/datasets/issues/7810
https://api.github.com/repos/huggingface/datasets
https://api.github.com/repos/huggingface/datasets/issues/7810/labels{/name}
https://api.github.com/repos/huggingface/datasets/issues/7810/comments
https://api.github.com/repos/huggingface/datasets/issues/7810/events
https://github.com/huggingface/datasets/pull/7810
3,499,855,569
PR_kwDODunzps6s7wHa
7,810
fix conda deps
{ "login": "lhoestq", "id": 42851186, "node_id": "MDQ6VXNlcjQyODUxMTg2", "avatar_url": "https://avatars.githubusercontent.com/u/42851186?v=4", "gravatar_id": "", "url": "https://api.github.com/users/lhoestq", "html_url": "https://github.com/lhoestq", "followers_url": "https://api.github.com/users/lhoest...
[]
closed
false
null
[]
null
[ "The docs for this PR live [here](https://moon-ci-docs.huggingface.co/docs/datasets/pr_7810). All of your documentation changes will be reflected on that endpoint. The docs are available until 30 days after the last update." ]
2025-10-09T16:32:04
2025-10-09T16:35:15
2025-10-09T16:35:14
MEMBER
null
null
null
null
null
{ "login": "lhoestq", "id": 42851186, "node_id": "MDQ6VXNlcjQyODUxMTg2", "avatar_url": "https://avatars.githubusercontent.com/u/42851186?v=4", "gravatar_id": "", "url": "https://api.github.com/users/lhoestq", "html_url": "https://github.com/lhoestq", "followers_url": "https://api.github.com/users/lhoest...
{ "url": "https://api.github.com/repos/huggingface/datasets/issues/7810/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/huggingface/datasets/issues/7810/timeline
null
null
false
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/7810", "html_url": "https://github.com/huggingface/datasets/pull/7810", "diff_url": "https://github.com/huggingface/datasets/pull/7810.diff", "patch_url": "https://github.com/huggingface/datasets/pull/7810.patch", "merged_at": "2025-10-09T16:35...
true
https://api.github.com/repos/huggingface/datasets/issues/7809
https://api.github.com/repos/huggingface/datasets
https://api.github.com/repos/huggingface/datasets/issues/7809/labels{/name}
https://api.github.com/repos/huggingface/datasets/issues/7809/comments
https://api.github.com/repos/huggingface/datasets/issues/7809/events
https://github.com/huggingface/datasets/pull/7809
3,499,811,179
PR_kwDODunzps6s7mwb
7,809
Set dev version
{ "login": "lhoestq", "id": 42851186, "node_id": "MDQ6VXNlcjQyODUxMTg2", "avatar_url": "https://avatars.githubusercontent.com/u/42851186?v=4", "gravatar_id": "", "url": "https://api.github.com/users/lhoestq", "html_url": "https://github.com/lhoestq", "followers_url": "https://api.github.com/users/lhoest...
[]
closed
false
null
[]
null
[ "The docs for this PR live [here](https://moon-ci-docs.huggingface.co/docs/datasets/pr_7809). All of your documentation changes will be reflected on that endpoint. The docs are available until 30 days after the last update." ]
2025-10-09T16:19:19
2025-10-09T16:22:12
2025-10-09T16:19:31
MEMBER
null
null
null
null
null
{ "login": "lhoestq", "id": 42851186, "node_id": "MDQ6VXNlcjQyODUxMTg2", "avatar_url": "https://avatars.githubusercontent.com/u/42851186?v=4", "gravatar_id": "", "url": "https://api.github.com/users/lhoestq", "html_url": "https://github.com/lhoestq", "followers_url": "https://api.github.com/users/lhoest...
{ "url": "https://api.github.com/repos/huggingface/datasets/issues/7809/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/huggingface/datasets/issues/7809/timeline
null
null
false
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/7809", "html_url": "https://github.com/huggingface/datasets/pull/7809", "diff_url": "https://github.com/huggingface/datasets/pull/7809.diff", "patch_url": "https://github.com/huggingface/datasets/pull/7809.patch", "merged_at": "2025-10-09T16:19...
true
https://api.github.com/repos/huggingface/datasets/issues/7808
https://api.github.com/repos/huggingface/datasets
https://api.github.com/repos/huggingface/datasets/issues/7808/labels{/name}
https://api.github.com/repos/huggingface/datasets/issues/7808/comments
https://api.github.com/repos/huggingface/datasets/issues/7808/events
https://github.com/huggingface/datasets/pull/7808
3,499,779,993
PR_kwDODunzps6s7gBq
7,808
release: 4.2.0
{ "login": "lhoestq", "id": 42851186, "node_id": "MDQ6VXNlcjQyODUxMTg2", "avatar_url": "https://avatars.githubusercontent.com/u/42851186?v=4", "gravatar_id": "", "url": "https://api.github.com/users/lhoestq", "html_url": "https://github.com/lhoestq", "followers_url": "https://api.github.com/users/lhoest...
[]
closed
false
null
[]
null
[ "The docs for this PR live [here](https://moon-ci-docs.huggingface.co/docs/datasets/pr_7808). All of your documentation changes will be reflected on that endpoint. The docs are available until 30 days after the last update." ]
2025-10-09T16:10:53
2025-10-09T16:21:01
2025-10-09T16:11:08
MEMBER
null
null
null
null
null
{ "login": "lhoestq", "id": 42851186, "node_id": "MDQ6VXNlcjQyODUxMTg2", "avatar_url": "https://avatars.githubusercontent.com/u/42851186?v=4", "gravatar_id": "", "url": "https://api.github.com/users/lhoestq", "html_url": "https://github.com/lhoestq", "followers_url": "https://api.github.com/users/lhoest...
{ "url": "https://api.github.com/repos/huggingface/datasets/issues/7808/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/huggingface/datasets/issues/7808/timeline
null
null
false
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/7808", "html_url": "https://github.com/huggingface/datasets/pull/7808", "diff_url": "https://github.com/huggingface/datasets/pull/7808.diff", "patch_url": "https://github.com/huggingface/datasets/pull/7808.patch", "merged_at": "2025-10-09T16:11...
true
https://api.github.com/repos/huggingface/datasets/issues/7807
https://api.github.com/repos/huggingface/datasets
https://api.github.com/repos/huggingface/datasets/issues/7807/labels{/name}
https://api.github.com/repos/huggingface/datasets/issues/7807/comments
https://api.github.com/repos/huggingface/datasets/issues/7807/events
https://github.com/huggingface/datasets/pull/7807
3,499,765,725
PR_kwDODunzps6s7c_U
7,807
typo
{ "login": "lhoestq", "id": 42851186, "node_id": "MDQ6VXNlcjQyODUxMTg2", "avatar_url": "https://avatars.githubusercontent.com/u/42851186?v=4", "gravatar_id": "", "url": "https://api.github.com/users/lhoestq", "html_url": "https://github.com/lhoestq", "followers_url": "https://api.github.com/users/lhoest...
[]
closed
false
null
[]
null
[ "The docs for this PR live [here](https://moon-ci-docs.huggingface.co/docs/datasets/pr_7807). All of your documentation changes will be reflected on that endpoint. The docs are available until 30 days after the last update." ]
2025-10-09T16:06:47
2025-10-09T16:16:31
2025-10-09T16:06:58
MEMBER
null
null
null
null
add an s to be consistent with pandas' on_bad_lines
{ "login": "lhoestq", "id": 42851186, "node_id": "MDQ6VXNlcjQyODUxMTg2", "avatar_url": "https://avatars.githubusercontent.com/u/42851186?v=4", "gravatar_id": "", "url": "https://api.github.com/users/lhoestq", "html_url": "https://github.com/lhoestq", "followers_url": "https://api.github.com/users/lhoest...
{ "url": "https://api.github.com/repos/huggingface/datasets/issues/7807/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/huggingface/datasets/issues/7807/timeline
null
null
false
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/7807", "html_url": "https://github.com/huggingface/datasets/pull/7807", "diff_url": "https://github.com/huggingface/datasets/pull/7807.diff", "patch_url": "https://github.com/huggingface/datasets/pull/7807.patch", "merged_at": "2025-10-09T16:06...
true
https://api.github.com/repos/huggingface/datasets/issues/7806
https://api.github.com/repos/huggingface/datasets
https://api.github.com/repos/huggingface/datasets/issues/7806/labels{/name}
https://api.github.com/repos/huggingface/datasets/issues/7806/comments
https://api.github.com/repos/huggingface/datasets/issues/7806/events
https://github.com/huggingface/datasets/pull/7806
3,499,483,246
PR_kwDODunzps6s6gnr
7,806
Parquet: add `on_bad_file` argument to error/warn/skip bad files
{ "login": "lhoestq", "id": 42851186, "node_id": "MDQ6VXNlcjQyODUxMTg2", "avatar_url": "https://avatars.githubusercontent.com/u/42851186?v=4", "gravatar_id": "", "url": "https://api.github.com/users/lhoestq", "html_url": "https://github.com/lhoestq", "followers_url": "https://api.github.com/users/lhoest...
[]
closed
false
null
[]
null
[ "The docs for this PR live [here](https://moon-ci-docs.huggingface.co/docs/datasets/pr_7806). All of your documentation changes will be reflected on that endpoint. The docs are available until 30 days after the last update." ]
2025-10-09T14:41:46
2025-10-09T16:04:35
2025-10-09T16:04:33
MEMBER
null
null
null
null
```python from datasets import load_dataset on_bad_file = "error" # default # on_bad_file = "warn" # warn and skip bad file # on_bad_file = "skip" # skip bad file ds = load_dataset(parquet_dataset_id, on_bad_file=on_bad_file) ```
{ "login": "lhoestq", "id": 42851186, "node_id": "MDQ6VXNlcjQyODUxMTg2", "avatar_url": "https://avatars.githubusercontent.com/u/42851186?v=4", "gravatar_id": "", "url": "https://api.github.com/users/lhoestq", "html_url": "https://github.com/lhoestq", "followers_url": "https://api.github.com/users/lhoest...
{ "url": "https://api.github.com/repos/huggingface/datasets/issues/7806/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/huggingface/datasets/issues/7806/timeline
null
null
false
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/7806", "html_url": "https://github.com/huggingface/datasets/pull/7806", "diff_url": "https://github.com/huggingface/datasets/pull/7806.diff", "patch_url": "https://github.com/huggingface/datasets/pull/7806.patch", "merged_at": "2025-10-09T16:04...
true
https://api.github.com/repos/huggingface/datasets/issues/7805
https://api.github.com/repos/huggingface/datasets
https://api.github.com/repos/huggingface/datasets/issues/7805/labels{/name}
https://api.github.com/repos/huggingface/datasets/issues/7805/comments
https://api.github.com/repos/huggingface/datasets/issues/7805/events
https://github.com/huggingface/datasets/pull/7805
3,499,286,947
PR_kwDODunzps6s52Ew
7,805
Less api calls when resolving data_files
{ "login": "lhoestq", "id": 42851186, "node_id": "MDQ6VXNlcjQyODUxMTg2", "avatar_url": "https://avatars.githubusercontent.com/u/42851186?v=4", "gravatar_id": "", "url": "https://api.github.com/users/lhoestq", "html_url": "https://github.com/lhoestq", "followers_url": "https://api.github.com/users/lhoest...
[]
closed
false
null
[]
null
[ "The docs for this PR live [here](https://moon-ci-docs.huggingface.co/docs/datasets/pr_7805). All of your documentation changes will be reflected on that endpoint. The docs are available until 30 days after the last update." ]
2025-10-09T13:53:06
2025-10-09T14:01:57
2025-10-09T14:01:56
MEMBER
null
null
null
null
There ~10 unnecessary `/api/datasets/user/dataset/revision`calls due to multithreading in data files resolution. I disabled multithreading, which was actually not useful anymore since `HfFileSystem` has been using caching for a while now.
{ "login": "lhoestq", "id": 42851186, "node_id": "MDQ6VXNlcjQyODUxMTg2", "avatar_url": "https://avatars.githubusercontent.com/u/42851186?v=4", "gravatar_id": "", "url": "https://api.github.com/users/lhoestq", "html_url": "https://github.com/lhoestq", "followers_url": "https://api.github.com/users/lhoest...
{ "url": "https://api.github.com/repos/huggingface/datasets/issues/7805/reactions", "total_count": 1, "+1": 0, "-1": 0, "laugh": 0, "hooray": 1, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/huggingface/datasets/issues/7805/timeline
null
null
false
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/7805", "html_url": "https://github.com/huggingface/datasets/pull/7805", "diff_url": "https://github.com/huggingface/datasets/pull/7805.diff", "patch_url": "https://github.com/huggingface/datasets/pull/7805.patch", "merged_at": "2025-10-09T14:01...
true
https://api.github.com/repos/huggingface/datasets/issues/7804
https://api.github.com/repos/huggingface/datasets
https://api.github.com/repos/huggingface/datasets/issues/7804/labels{/name}
https://api.github.com/repos/huggingface/datasets/issues/7804/comments
https://api.github.com/repos/huggingface/datasets/issues/7804/events
https://github.com/huggingface/datasets/issues/7804
3,498,534,596
I_kwDODunzps7Qh2bE
7,804
Support scientific data formats
{ "login": "lhoestq", "id": 42851186, "node_id": "MDQ6VXNlcjQyODUxMTg2", "avatar_url": "https://avatars.githubusercontent.com/u/42851186?v=4", "gravatar_id": "", "url": "https://api.github.com/users/lhoestq", "html_url": "https://github.com/lhoestq", "followers_url": "https://api.github.com/users/lhoest...
[]
open
false
null
[]
null
[ "Please add the support for `Zarr`! That's what we use in the Bioimaging community. It is crucial, because raw upload of a *single* bio image can take _terrabytes in memory_!\n\nThe python library would be `bioio` or `zarr`:\n- [ ] Zarr: `bioio` or `zarr`\n\nSee a [Zarr example](https://ome.github.io/ome-ngff-valid...
2025-10-09T10:18:24
2025-10-10T11:26:23
null
MEMBER
null
null
{ "total": 0, "completed": 0, "percent_completed": 0 }
{ "blocked_by": 0, "total_blocked_by": 0, "blocking": 0, "total_blocking": 0 }
List of formats and libraries we can use to load the data in `datasets`: - [ ] DICOMs: pydicom - [ ] NIfTIs: nibabel - [ ] WFDB: wfdb cc @zaRizk7 for viz Feel free to comment / suggest other formats and libs you'd like to see or to share your interest in one of the mentioned format
null
{ "url": "https://api.github.com/repos/huggingface/datasets/issues/7804/reactions", "total_count": 6, "+1": 1, "-1": 0, "laugh": 0, "hooray": 2, "confused": 0, "heart": 3, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/huggingface/datasets/issues/7804/timeline
null
null
null
null
false
https://api.github.com/repos/huggingface/datasets/issues/7803
https://api.github.com/repos/huggingface/datasets
https://api.github.com/repos/huggingface/datasets/issues/7803/labels{/name}
https://api.github.com/repos/huggingface/datasets/issues/7803/comments
https://api.github.com/repos/huggingface/datasets/issues/7803/events
https://github.com/huggingface/datasets/pull/7803
3,498,395,879
PR_kwDODunzps6s2zyO
7,803
More Parquet streaming docs
{ "login": "lhoestq", "id": 42851186, "node_id": "MDQ6VXNlcjQyODUxMTg2", "avatar_url": "https://avatars.githubusercontent.com/u/42851186?v=4", "gravatar_id": "", "url": "https://api.github.com/users/lhoestq", "html_url": "https://github.com/lhoestq", "followers_url": "https://api.github.com/users/lhoest...
[]
closed
false
null
[]
null
[ "The docs for this PR live [here](https://moon-ci-docs.huggingface.co/docs/datasets/pr_7803). All of your documentation changes will be reflected on that endpoint. The docs are available until 30 days after the last update." ]
2025-10-09T09:39:11
2025-10-09T10:01:46
2025-10-09T10:01:43
MEMBER
null
null
null
null
null
{ "login": "lhoestq", "id": 42851186, "node_id": "MDQ6VXNlcjQyODUxMTg2", "avatar_url": "https://avatars.githubusercontent.com/u/42851186?v=4", "gravatar_id": "", "url": "https://api.github.com/users/lhoestq", "html_url": "https://github.com/lhoestq", "followers_url": "https://api.github.com/users/lhoest...
{ "url": "https://api.github.com/repos/huggingface/datasets/issues/7803/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/huggingface/datasets/issues/7803/timeline
null
null
false
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/7803", "html_url": "https://github.com/huggingface/datasets/pull/7803", "diff_url": "https://github.com/huggingface/datasets/pull/7803.diff", "patch_url": "https://github.com/huggingface/datasets/pull/7803.patch", "merged_at": "2025-10-09T10:01...
true
https://api.github.com/repos/huggingface/datasets/issues/7802
https://api.github.com/repos/huggingface/datasets
https://api.github.com/repos/huggingface/datasets/issues/7802/labels{/name}
https://api.github.com/repos/huggingface/datasets/issues/7802/comments
https://api.github.com/repos/huggingface/datasets/issues/7802/events
https://github.com/huggingface/datasets/issues/7802
3,497,454,119
I_kwDODunzps7Qduon
7,802
[Docs] Missing documentation for `Dataset.from_dict`
{ "login": "aaronshenhao", "id": 69421545, "node_id": "MDQ6VXNlcjY5NDIxNTQ1", "avatar_url": "https://avatars.githubusercontent.com/u/69421545?v=4", "gravatar_id": "", "url": "https://api.github.com/users/aaronshenhao", "html_url": "https://github.com/aaronshenhao", "followers_url": "https://api.github.c...
[]
open
false
null
[]
null
[]
2025-10-09T02:54:41
2025-10-09T02:57:42
null
NONE
null
null
{ "total": 0, "completed": 0, "percent_completed": 0 }
{ "blocked_by": 0, "total_blocked_by": 0, "blocking": 0, "total_blocking": 0 }
Documentation link: https://huggingface.co/docs/datasets/en/package_reference/main_classes Link to method (docstring present): https://github.com/huggingface/datasets/blob/6f2502c5a026caa89839713f6f7c8b958e5e83eb/src/datasets/arrow_dataset.py#L1029 The docstring is present for the function, but seems missing from the...
null
{ "url": "https://api.github.com/repos/huggingface/datasets/issues/7802/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/huggingface/datasets/issues/7802/timeline
null
null
null
null
false
https://api.github.com/repos/huggingface/datasets/issues/7801
https://api.github.com/repos/huggingface/datasets
https://api.github.com/repos/huggingface/datasets/issues/7801/labels{/name}
https://api.github.com/repos/huggingface/datasets/issues/7801/comments
https://api.github.com/repos/huggingface/datasets/issues/7801/events
https://github.com/huggingface/datasets/pull/7801
3,496,388,063
PR_kwDODunzps6swITn
7,801
Add parquet scan options and docs
{ "login": "lhoestq", "id": 42851186, "node_id": "MDQ6VXNlcjQyODUxMTg2", "avatar_url": "https://avatars.githubusercontent.com/u/42851186?v=4", "gravatar_id": "", "url": "https://api.github.com/users/lhoestq", "html_url": "https://github.com/lhoestq", "followers_url": "https://api.github.com/users/lhoest...
[]
closed
false
null
[]
null
[ "The docs for this PR live [here](https://moon-ci-docs.huggingface.co/docs/datasets/pr_7801). All of your documentation changes will be reflected on that endpoint. The docs are available until 30 days after the last update." ]
2025-10-08T18:04:52
2025-10-09T07:55:58
2025-10-09T07:55:56
MEMBER
null
null
null
null
I added scan options, useful to control buffering and caching when streaming and docs, including how to select a subset of columns and apply filters
{ "login": "lhoestq", "id": 42851186, "node_id": "MDQ6VXNlcjQyODUxMTg2", "avatar_url": "https://avatars.githubusercontent.com/u/42851186?v=4", "gravatar_id": "", "url": "https://api.github.com/users/lhoestq", "html_url": "https://github.com/lhoestq", "followers_url": "https://api.github.com/users/lhoest...
{ "url": "https://api.github.com/repos/huggingface/datasets/issues/7801/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/huggingface/datasets/issues/7801/timeline
null
null
false
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/7801", "html_url": "https://github.com/huggingface/datasets/pull/7801", "diff_url": "https://github.com/huggingface/datasets/pull/7801.diff", "patch_url": "https://github.com/huggingface/datasets/pull/7801.patch", "merged_at": "2025-10-09T07:55...
true
https://api.github.com/repos/huggingface/datasets/issues/7800
https://api.github.com/repos/huggingface/datasets
https://api.github.com/repos/huggingface/datasets/issues/7800/labels{/name}
https://api.github.com/repos/huggingface/datasets/issues/7800/comments
https://api.github.com/repos/huggingface/datasets/issues/7800/events
https://github.com/huggingface/datasets/pull/7800
3,494,747,495
PR_kwDODunzps6sqkmT
7,800
Fix polars cast column image
{ "login": "CloseChoice", "id": 31857876, "node_id": "MDQ6VXNlcjMxODU3ODc2", "avatar_url": "https://avatars.githubusercontent.com/u/31857876?v=4", "gravatar_id": "", "url": "https://api.github.com/users/CloseChoice", "html_url": "https://github.com/CloseChoice", "followers_url": "https://api.github.com/...
[]
open
false
null
[]
null
[ "The Image() type is set to have a storage of `string` for \"path\" and not `large_string`. Therefore while your change does work to do the conversion, it can create issues in other places. For example I'm pretty sure you wouldn't be able to concatenate the resulting dataset with a dataset with Image() using `strin...
2025-10-08T10:01:18
2025-10-12T06:14:08
null
NONE
null
null
null
null
Fixes #7765 The problem here is that polars uses pyarrow large_string for images, while pandas and others just use the string type. This PR solves that and adds a test. ```python import polars as pl from datasets import Dataset import pandas as pd import pyarrow as pa from pathlib import Path shared_data...
null
{ "url": "https://api.github.com/repos/huggingface/datasets/issues/7800/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/huggingface/datasets/issues/7800/timeline
null
null
false
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/7800", "html_url": "https://github.com/huggingface/datasets/pull/7800", "diff_url": "https://github.com/huggingface/datasets/pull/7800.diff", "patch_url": "https://github.com/huggingface/datasets/pull/7800.patch", "merged_at": null }
true
https://api.github.com/repos/huggingface/datasets/issues/7799
https://api.github.com/repos/huggingface/datasets
https://api.github.com/repos/huggingface/datasets/issues/7799/labels{/name}
https://api.github.com/repos/huggingface/datasets/issues/7799/comments
https://api.github.com/repos/huggingface/datasets/issues/7799/events
https://github.com/huggingface/datasets/pull/7799
3,487,791,741
PR_kwDODunzps6sTJKA
7,799
Define CI future
{ "login": "lhoestq", "id": 42851186, "node_id": "MDQ6VXNlcjQyODUxMTg2", "avatar_url": "https://avatars.githubusercontent.com/u/42851186?v=4", "gravatar_id": "", "url": "https://api.github.com/users/lhoestq", "html_url": "https://github.com/lhoestq", "followers_url": "https://api.github.com/users/lhoest...
[]
closed
false
null
[]
null
[ "The docs for this PR live [here](https://moon-ci-docs.huggingface.co/docs/datasets/pr_7799). All of your documentation changes will be reflected on that endpoint. The docs are available until 30 days after the last update." ]
2025-10-06T15:15:45
2025-10-07T14:30:21
2025-10-07T14:30:19
MEMBER
null
null
null
null
this should fix the CI which currently uses transformers on 3.9 while it's now unsupported
{ "login": "lhoestq", "id": 42851186, "node_id": "MDQ6VXNlcjQyODUxMTg2", "avatar_url": "https://avatars.githubusercontent.com/u/42851186?v=4", "gravatar_id": "", "url": "https://api.github.com/users/lhoestq", "html_url": "https://github.com/lhoestq", "followers_url": "https://api.github.com/users/lhoest...
{ "url": "https://api.github.com/repos/huggingface/datasets/issues/7799/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/huggingface/datasets/issues/7799/timeline
null
null
false
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/7799", "html_url": "https://github.com/huggingface/datasets/pull/7799", "diff_url": "https://github.com/huggingface/datasets/pull/7799.diff", "patch_url": "https://github.com/huggingface/datasets/pull/7799.patch", "merged_at": "2025-10-07T14:30...
true
https://api.github.com/repos/huggingface/datasets/issues/7798
https://api.github.com/repos/huggingface/datasets
https://api.github.com/repos/huggingface/datasets/issues/7798/labels{/name}
https://api.github.com/repos/huggingface/datasets/issues/7798/comments
https://api.github.com/repos/huggingface/datasets/issues/7798/events
https://github.com/huggingface/datasets/issues/7798
3,484,470,782
I_kwDODunzps7PsM3-
7,798
Audio dataset is not decoding on 4.1.1
{ "login": "thewh1teagle", "id": 61390950, "node_id": "MDQ6VXNlcjYxMzkwOTUw", "avatar_url": "https://avatars.githubusercontent.com/u/61390950?v=4", "gravatar_id": "", "url": "https://api.github.com/users/thewh1teagle", "html_url": "https://github.com/thewh1teagle", "followers_url": "https://api.github.c...
[]
open
false
null
[]
null
[ "Previously (datasets<=3.6.0), audio columns were decoded automatically when accessing a row. Now, for performance reasons, audio decoding is lazy by default: you just see the file path unless you explicitly cast the column to Audio.\n\nHere’s the fix (following the current [datasets audio docs](https://huggingface...
2025-10-05T06:37:50
2025-10-06T14:07:55
null
NONE
null
null
{ "total": 0, "completed": 0, "percent_completed": 0 }
{ "blocked_by": 0, "total_blocked_by": 0, "blocking": 0, "total_blocking": 0 }
### Describe the bug The audio column remain as non-decoded objects even when accessing them. ```python dataset = load_dataset("MrDragonFox/Elise", split = "train") dataset[0] # see that it doesn't show 'array' etc... ``` Works fine with `datasets==3.6.0` Followed the docs in - https://huggingface.co/docs/dataset...
null
{ "url": "https://api.github.com/repos/huggingface/datasets/issues/7798/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/huggingface/datasets/issues/7798/timeline
null
null
null
null
false
https://api.github.com/repos/huggingface/datasets/issues/7797
https://api.github.com/repos/huggingface/datasets
https://api.github.com/repos/huggingface/datasets/issues/7797/labels{/name}
https://api.github.com/repos/huggingface/datasets/issues/7797/comments
https://api.github.com/repos/huggingface/datasets/issues/7797/events
https://github.com/huggingface/datasets/pull/7797
3,473,011,621
PR_kwDODunzps6rhtf_
7,797
Datasets: Add WMT21 & WMT22 loaders (basic TSV loaders, sample data, tests)
{ "login": "tanisha-samant", "id": 164366940, "node_id": "U_kgDOCcwKXA", "avatar_url": "https://avatars.githubusercontent.com/u/164366940?v=4", "gravatar_id": "", "url": "https://api.github.com/users/tanisha-samant", "html_url": "https://github.com/tanisha-samant", "followers_url": "https://api.github.c...
[]
closed
false
null
[]
null
[ "closing since datasets should be added on https://huggingface.co directly" ]
2025-10-01T10:46:01
2025-10-10T15:33:25
2025-10-10T15:33:25
NONE
null
null
null
null
- Implemented TSV-based dataset loaders: - WMT21Dataset (local_datasets/wmt21/wmt21_dataset.py) - WMT22Dataset (local_datasets/wmt22/wmt22_dataset.py) These classes load source-target pairs from .tsv files for train, validation, and test splits. - Created sample dummy data for both datasets: - dummy_da...
{ "login": "lhoestq", "id": 42851186, "node_id": "MDQ6VXNlcjQyODUxMTg2", "avatar_url": "https://avatars.githubusercontent.com/u/42851186?v=4", "gravatar_id": "", "url": "https://api.github.com/users/lhoestq", "html_url": "https://github.com/lhoestq", "followers_url": "https://api.github.com/users/lhoest...
{ "url": "https://api.github.com/repos/huggingface/datasets/issues/7797/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/huggingface/datasets/issues/7797/timeline
null
null
false
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/7797", "html_url": "https://github.com/huggingface/datasets/pull/7797", "diff_url": "https://github.com/huggingface/datasets/pull/7797.diff", "patch_url": "https://github.com/huggingface/datasets/pull/7797.patch", "merged_at": null }
true
https://api.github.com/repos/huggingface/datasets/issues/7796
https://api.github.com/repos/huggingface/datasets
https://api.github.com/repos/huggingface/datasets/issues/7796/labels{/name}
https://api.github.com/repos/huggingface/datasets/issues/7796/comments
https://api.github.com/repos/huggingface/datasets/issues/7796/events
https://github.com/huggingface/datasets/pull/7796
3,470,616,799
PR_kwDODunzps6rZjrW
7,796
Docs: fix typo, improve readability, add code comments
{ "login": "tanisha-samant", "id": 164366940, "node_id": "U_kgDOCcwKXA", "avatar_url": "https://avatars.githubusercontent.com/u/164366940?v=4", "gravatar_id": "", "url": "https://api.github.com/users/tanisha-samant", "html_url": "https://github.com/tanisha-samant", "followers_url": "https://api.github.c...
[]
open
false
null
[]
null
[]
2025-09-30T18:34:16
2025-10-10T18:44:12
null
NONE
null
null
null
null
What I did: - Fixed a small typo in README to improve clarity - Fixed repeated word "frameworks frameworks" - Split long paragraphs into shorter sentences for readability - Added # Example comments before code blocks for clarity Why: - Helps new users avoid confusion How I tested: - Checked locally in Markd...
null
{ "url": "https://api.github.com/repos/huggingface/datasets/issues/7796/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/huggingface/datasets/issues/7796/timeline
null
null
false
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/7796", "html_url": "https://github.com/huggingface/datasets/pull/7796", "diff_url": "https://github.com/huggingface/datasets/pull/7796.diff", "patch_url": "https://github.com/huggingface/datasets/pull/7796.patch", "merged_at": null }
true
https://api.github.com/repos/huggingface/datasets/issues/7795
https://api.github.com/repos/huggingface/datasets
https://api.github.com/repos/huggingface/datasets/issues/7795/labels{/name}
https://api.github.com/repos/huggingface/datasets/issues/7795/comments
https://api.github.com/repos/huggingface/datasets/issues/7795/events
https://github.com/huggingface/datasets/pull/7795
3,463,990,654
PR_kwDODunzps6rDEce
7,795
Add pyarrow's binary view to features
{ "login": "delta003", "id": 6834061, "node_id": "MDQ6VXNlcjY4MzQwNjE=", "avatar_url": "https://avatars.githubusercontent.com/u/6834061?v=4", "gravatar_id": "", "url": "https://api.github.com/users/delta003", "html_url": "https://github.com/delta003", "followers_url": "https://api.github.com/users/delta...
[]
closed
false
null
[]
null
[ "@lhoestq 🙏 ", "The docs for this PR live [here](https://moon-ci-docs.huggingface.co/docs/datasets/pr_7795). All of your documentation changes will be reflected on that endpoint. The docs are available until 30 days after the last update." ]
2025-09-29T09:12:55
2025-10-10T16:04:21
2025-10-10T16:04:21
CONTRIBUTOR
null
null
null
null
Basically https://github.com/huggingface/datasets/pull/7718 just for binary view instead of string view
{ "login": "lhoestq", "id": 42851186, "node_id": "MDQ6VXNlcjQyODUxMTg2", "avatar_url": "https://avatars.githubusercontent.com/u/42851186?v=4", "gravatar_id": "", "url": "https://api.github.com/users/lhoestq", "html_url": "https://github.com/lhoestq", "followers_url": "https://api.github.com/users/lhoest...
{ "url": "https://api.github.com/repos/huggingface/datasets/issues/7795/reactions", "total_count": 2, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 2, "eyes": 0 }
https://api.github.com/repos/huggingface/datasets/issues/7795/timeline
null
null
false
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/7795", "html_url": "https://github.com/huggingface/datasets/pull/7795", "diff_url": "https://github.com/huggingface/datasets/pull/7795.diff", "patch_url": "https://github.com/huggingface/datasets/pull/7795.patch", "merged_at": "2025-10-10T16:04...
true
https://api.github.com/repos/huggingface/datasets/issues/7794
https://api.github.com/repos/huggingface/datasets
https://api.github.com/repos/huggingface/datasets/issues/7794/labels{/name}
https://api.github.com/repos/huggingface/datasets/issues/7794/comments
https://api.github.com/repos/huggingface/datasets/issues/7794/events
https://github.com/huggingface/datasets/pull/7794
3,460,793,966
PR_kwDODunzps6q4XyU
7,794
Fix nested data conversions error in parquet loading (fixes #7793)
{ "login": "Aishwarya0811", "id": 41635755, "node_id": "MDQ6VXNlcjQxNjM1NzU1", "avatar_url": "https://avatars.githubusercontent.com/u/41635755?v=4", "gravatar_id": "", "url": "https://api.github.com/users/Aishwarya0811", "html_url": "https://github.com/Aishwarya0811", "followers_url": "https://api.githu...
[]
open
false
null
[]
null
[ "Unfortunately, I'm running into this error:\r\n```\r\n~/scratch » uv run python test_hf.py \r\nResolving data file...
2025-09-27T22:04:13
2025-10-01T16:56:20
null
NONE
null
null
null
null
Fixes #7793 ## Problem Loading datasets with deeply nested structures (like `metr-evals/malt-public`) fails with: ArrowNotImplementedError: Nested data conversions not implemented for chunked array outputs This occurs when parquet files contain nested data (lists, structs, maps) that exceed PyArrow's 16MB chun...
null
{ "url": "https://api.github.com/repos/huggingface/datasets/issues/7794/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/huggingface/datasets/issues/7794/timeline
null
null
false
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/7794", "html_url": "https://github.com/huggingface/datasets/pull/7794", "diff_url": "https://github.com/huggingface/datasets/pull/7794.diff", "patch_url": "https://github.com/huggingface/datasets/pull/7794.patch", "merged_at": null }
true
https://api.github.com/repos/huggingface/datasets/issues/7793
https://api.github.com/repos/huggingface/datasets
https://api.github.com/repos/huggingface/datasets/issues/7793/labels{/name}
https://api.github.com/repos/huggingface/datasets/issues/7793/comments
https://api.github.com/repos/huggingface/datasets/issues/7793/events
https://github.com/huggingface/datasets/issues/7793
3,459,496,971
I_kwDODunzps7OM7wL
7,793
Cannot load dataset, fails with nested data conversions not implemented for chunked array outputs
{ "login": "neevparikh", "id": 41182432, "node_id": "MDQ6VXNlcjQxMTgyNDMy", "avatar_url": "https://avatars.githubusercontent.com/u/41182432?v=4", "gravatar_id": "", "url": "https://api.github.com/users/neevparikh", "html_url": "https://github.com/neevparikh", "followers_url": "https://api.github.com/use...
[]
open
false
null
[]
null
[ "Hey @neevparikh,\nThanks for reporting this! I can reproduce the issue and have identified the root cause.\nProblem: The metr-evals/malt-public dataset contains deeply nested conversation data that exceeds PyArrow's 16MB chunk limit. When PyArrow tries to read it in chunks, it hits a fundamental limitation: \"Nest...
2025-09-27T01:03:12
2025-09-27T21:35:31
null
NONE
null
null
{ "total": 0, "completed": 0, "percent_completed": 0 }
{ "blocked_by": 0, "total_blocked_by": 0, "blocking": 0, "total_blocking": 0 }
### Describe the bug Hi! When I load this dataset, it fails with a pyarrow error. I'm using datasets 4.1.1, though I also see this with datasets 4.1.2 To reproduce: ``` import datasets ds = datasets.load_dataset(path="metr-evals/malt-public", name="irrelevant_detail") ``` Error: ``` Traceback (most recent call las...
null
{ "url": "https://api.github.com/repos/huggingface/datasets/issues/7793/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/huggingface/datasets/issues/7793/timeline
null
null
null
null
false
https://api.github.com/repos/huggingface/datasets/issues/7792
https://api.github.com/repos/huggingface/datasets
https://api.github.com/repos/huggingface/datasets/issues/7792/labels{/name}
https://api.github.com/repos/huggingface/datasets/issues/7792/comments
https://api.github.com/repos/huggingface/datasets/issues/7792/events
https://github.com/huggingface/datasets/issues/7792
3,456,802,210
I_kwDODunzps7OCp2i
7,792
Concatenate IterableDataset instances and distribute underlying shards in a RoundRobin manner
{ "login": "LTMeyer", "id": 13559010, "node_id": "MDQ6VXNlcjEzNTU5MDEw", "avatar_url": "https://avatars.githubusercontent.com/u/13559010?v=4", "gravatar_id": "", "url": "https://api.github.com/users/LTMeyer", "html_url": "https://github.com/LTMeyer", "followers_url": "https://api.github.com/users/LTMeye...
[ { "id": 1935892871, "node_id": "MDU6TGFiZWwxOTM1ODkyODcx", "url": "https://api.github.com/repos/huggingface/datasets/labels/enhancement", "name": "enhancement", "color": "a2eeef", "default": true, "description": "New feature or request" } ]
open
false
null
[]
null
[ "# With `datasets.Dataset`\n\nHere is an small script that shows the distribution differences of samples between `interleave_datasets`, `concatenate_datasets` and `concatenate_datasets` + shuffling.\n\n```python\nimport datasets as hf_datasets\n\ndef gen(dataset: int, n_samples: int):\n for i in range(n_samples)...
2025-09-26T10:05:19
2025-10-06T15:24:19
null
NONE
null
null
{ "total": 0, "completed": 0, "percent_completed": 0 }
{ "blocked_by": 0, "total_blocked_by": 0, "blocking": 0, "total_blocking": 0 }
### Feature request I would like to be able to concatenate multiple `IterableDataset` with possibly different features. I would like to then be able to stream the results in parallel (both using DDP and multiple workers in the pytorch DataLoader). I want the merge of datasets to be well balanced between the different ...
null
{ "url": "https://api.github.com/repos/huggingface/datasets/issues/7792/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/huggingface/datasets/issues/7792/timeline
null
null
null
null
false
https://api.github.com/repos/huggingface/datasets/issues/7791
https://api.github.com/repos/huggingface/datasets
https://api.github.com/repos/huggingface/datasets/issues/7791/labels{/name}
https://api.github.com/repos/huggingface/datasets/issues/7791/comments
https://api.github.com/repos/huggingface/datasets/issues/7791/events
https://github.com/huggingface/datasets/pull/7791
3,454,046,306
PR_kwDODunzps6qh_2W
7,791
fix: add `num_proc` argument to `Dataset.to_sql`
{ "login": "EricSaikali", "id": 100021446, "node_id": "U_kgDOBfY0xg", "avatar_url": "https://avatars.githubusercontent.com/u/100021446?v=4", "gravatar_id": "", "url": "https://api.github.com/users/EricSaikali", "html_url": "https://github.com/EricSaikali", "followers_url": "https://api.github.com/users/...
[]
open
false
null
[]
null
[ "Hi ! could you also write a test to make sure this works fine ?\r\n\r\n(in case there needs to be a special logic to handle the concurrent writes to the database)" ]
2025-09-25T15:02:46
2025-10-06T10:42:23
null
NONE
null
null
null
null
**Task Done:** - Resolve issue #7788 : Add the missing argument mapping in Dataset.to_sql (`src/datasets/arrow_dataset.py`)
null
{ "url": "https://api.github.com/repos/huggingface/datasets/issues/7791/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/huggingface/datasets/issues/7791/timeline
null
null
false
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/7791", "html_url": "https://github.com/huggingface/datasets/pull/7791", "diff_url": "https://github.com/huggingface/datasets/pull/7791.diff", "patch_url": "https://github.com/huggingface/datasets/pull/7791.patch", "merged_at": null }
true
https://api.github.com/repos/huggingface/datasets/issues/7790
https://api.github.com/repos/huggingface/datasets
https://api.github.com/repos/huggingface/datasets/issues/7790/labels{/name}
https://api.github.com/repos/huggingface/datasets/issues/7790/comments
https://api.github.com/repos/huggingface/datasets/issues/7790/events
https://github.com/huggingface/datasets/pull/7790
3,453,679,876
PR_kwDODunzps6qgvjv
7,790
update tips in docs
{ "login": "lhoestq", "id": 42851186, "node_id": "MDQ6VXNlcjQyODUxMTg2", "avatar_url": "https://avatars.githubusercontent.com/u/42851186?v=4", "gravatar_id": "", "url": "https://api.github.com/users/lhoestq", "html_url": "https://github.com/lhoestq", "followers_url": "https://api.github.com/users/lhoest...
[]
closed
false
null
[]
null
[ "The docs for this PR live [here](https://moon-ci-docs.huggingface.co/docs/datasets/pr_7790). All of your documentation changes will be reflected on that endpoint. The docs are available until 30 days after the last update.", "cc @mishig25" ]
2025-09-25T13:36:02
2025-09-25T13:39:28
2025-09-25T13:39:22
MEMBER
null
null
null
null
null
{ "login": "lhoestq", "id": 42851186, "node_id": "MDQ6VXNlcjQyODUxMTg2", "avatar_url": "https://avatars.githubusercontent.com/u/42851186?v=4", "gravatar_id": "", "url": "https://api.github.com/users/lhoestq", "html_url": "https://github.com/lhoestq", "followers_url": "https://api.github.com/users/lhoest...
{ "url": "https://api.github.com/repos/huggingface/datasets/issues/7790/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/huggingface/datasets/issues/7790/timeline
null
null
false
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/7790", "html_url": "https://github.com/huggingface/datasets/pull/7790", "diff_url": "https://github.com/huggingface/datasets/pull/7790.diff", "patch_url": "https://github.com/huggingface/datasets/pull/7790.patch", "merged_at": "2025-09-25T13:39...
true
https://api.github.com/repos/huggingface/datasets/issues/7789
https://api.github.com/repos/huggingface/datasets
https://api.github.com/repos/huggingface/datasets/issues/7789/labels{/name}
https://api.github.com/repos/huggingface/datasets/issues/7789/comments
https://api.github.com/repos/huggingface/datasets/issues/7789/events
https://github.com/huggingface/datasets/pull/7789
3,453,273,059
PR_kwDODunzps6qfZUc
7,789
fix link for rotten_tomatoes dataset
{ "login": "0xmohit", "id": 8176079, "node_id": "MDQ6VXNlcjgxNzYwNzk=", "avatar_url": "https://avatars.githubusercontent.com/u/8176079?v=4", "gravatar_id": "", "url": "https://api.github.com/users/0xmohit", "html_url": "https://github.com/0xmohit", "followers_url": "https://api.github.com/users/0xmohit/...
[]
open
false
null
[]
null
[]
2025-09-25T11:51:36
2025-09-25T11:51:36
null
NONE
null
null
null
null
The current link leads to a 404 page.
null
{ "url": "https://api.github.com/repos/huggingface/datasets/issues/7789/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/huggingface/datasets/issues/7789/timeline
null
null
false
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/7789", "html_url": "https://github.com/huggingface/datasets/pull/7789", "diff_url": "https://github.com/huggingface/datasets/pull/7789.diff", "patch_url": "https://github.com/huggingface/datasets/pull/7789.patch", "merged_at": null }
true
https://api.github.com/repos/huggingface/datasets/issues/7788
https://api.github.com/repos/huggingface/datasets
https://api.github.com/repos/huggingface/datasets/issues/7788/labels{/name}
https://api.github.com/repos/huggingface/datasets/issues/7788/comments
https://api.github.com/repos/huggingface/datasets/issues/7788/events
https://github.com/huggingface/datasets/issues/7788
3,450,913,796
I_kwDODunzps7NsMQE
7,788
`Dataset.to_sql` doesn't utilize `num_proc`
{ "login": "tcsmaster", "id": 30357072, "node_id": "MDQ6VXNlcjMwMzU3MDcy", "avatar_url": "https://avatars.githubusercontent.com/u/30357072?v=4", "gravatar_id": "", "url": "https://api.github.com/users/tcsmaster", "html_url": "https://github.com/tcsmaster", "followers_url": "https://api.github.com/users/...
[]
open
false
null
[]
null
[]
2025-09-24T20:34:47
2025-09-24T20:35:01
null
NONE
null
null
{ "total": 0, "completed": 0, "percent_completed": 0 }
{ "blocked_by": 0, "total_blocked_by": 0, "blocking": 0, "total_blocking": 0 }
The underlying `SqlDatasetWriter` has `num_proc` as an available argument [here](https://github.com/huggingface/datasets/blob/5dc1a179783dff868b0547c8486268cfaea1ea1f/src/datasets/io/sql.py#L63) , but `Dataset.to_sql()` does not accept it, therefore it is always using one process for the SQL conversion.
null
{ "url": "https://api.github.com/repos/huggingface/datasets/issues/7788/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/huggingface/datasets/issues/7788/timeline
null
null
null
null
false
https://api.github.com/repos/huggingface/datasets/issues/7787
https://api.github.com/repos/huggingface/datasets
https://api.github.com/repos/huggingface/datasets/issues/7787/labels{/name}
https://api.github.com/repos/huggingface/datasets/issues/7787/comments
https://api.github.com/repos/huggingface/datasets/issues/7787/events
https://github.com/huggingface/datasets/pull/7787
3,450,858,674
PR_kwDODunzps6qXRo-
7,787
feat: avoid some copies in torch formatter
{ "login": "drbh", "id": 9896130, "node_id": "MDQ6VXNlcjk4OTYxMzA=", "avatar_url": "https://avatars.githubusercontent.com/u/9896130?v=4", "gravatar_id": "", "url": "https://api.github.com/users/drbh", "html_url": "https://github.com/drbh", "followers_url": "https://api.github.com/users/drbh/followers", ...
[]
closed
false
null
[]
null
[ "The docs for this PR live [here](https://moon-ci-docs.huggingface.co/docs/datasets/pr_7787). All of your documentation changes will be reflected on that endpoint. The docs are available until 30 days after the last update.", "can you re-read your PR please ?" ]
2025-09-24T20:19:44
2025-09-26T15:04:25
2025-09-26T15:04:23
CONTRIBUTOR
null
null
null
null
## perf: reduce copies in TorchFormatter This PR make changes the torch formatter to avoid unnecessary copies and casts when converting decoded batches to tensors. Because many arrays are already in a torch-friendly memory layout and dtype, we can do zero‑copy conversions (`torch.from_numpy`) and only fall back t...
{ "login": "lhoestq", "id": 42851186, "node_id": "MDQ6VXNlcjQyODUxMTg2", "avatar_url": "https://avatars.githubusercontent.com/u/42851186?v=4", "gravatar_id": "", "url": "https://api.github.com/users/lhoestq", "html_url": "https://github.com/lhoestq", "followers_url": "https://api.github.com/users/lhoest...
{ "url": "https://api.github.com/repos/huggingface/datasets/issues/7787/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/huggingface/datasets/issues/7787/timeline
null
null
false
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/7787", "html_url": "https://github.com/huggingface/datasets/pull/7787", "diff_url": "https://github.com/huggingface/datasets/pull/7787.diff", "patch_url": "https://github.com/huggingface/datasets/pull/7787.patch", "merged_at": "2025-09-26T15:04...
true
https://api.github.com/repos/huggingface/datasets/issues/7786
https://api.github.com/repos/huggingface/datasets
https://api.github.com/repos/huggingface/datasets/issues/7786/labels{/name}
https://api.github.com/repos/huggingface/datasets/issues/7786/comments
https://api.github.com/repos/huggingface/datasets/issues/7786/events
https://github.com/huggingface/datasets/pull/7786
3,448,506,148
PR_kwDODunzps6qPTgs
7,786
Sample without replacement option when interleaving datasets
{ "login": "radulescupetru", "id": 26553095, "node_id": "MDQ6VXNlcjI2NTUzMDk1", "avatar_url": "https://avatars.githubusercontent.com/u/26553095?v=4", "gravatar_id": "", "url": "https://api.github.com/users/radulescupetru", "html_url": "https://github.com/radulescupetru", "followers_url": "https://api.gi...
[]
closed
false
null
[]
null
[ "@lhoestq Continuing on the idea from https://github.com/huggingface/datasets/issues/217 \r\nThis doesn't add a new stopping criteria, but a new argument to interleave_datasets method. Let me know what you think and if you see a better way of doing this I'm open to suggestions.", "Great ! this is a cool additions...
2025-09-24T09:18:14
2025-10-07T14:50:16
2025-10-07T14:50:16
CONTRIBUTOR
null
null
null
null
Right now, `interleave_datasets` function with probabilities will sample with replacement. The PR adds the ability to sample without replacement. ``` import datasets # Create datasets of different sizes to test exhaustion data_a = [{"value": i, "source": "A"} for i in range(5)] data_b = [{"value": i, "source":...
{ "login": "lhoestq", "id": 42851186, "node_id": "MDQ6VXNlcjQyODUxMTg2", "avatar_url": "https://avatars.githubusercontent.com/u/42851186?v=4", "gravatar_id": "", "url": "https://api.github.com/users/lhoestq", "html_url": "https://github.com/lhoestq", "followers_url": "https://api.github.com/users/lhoest...
{ "url": "https://api.github.com/repos/huggingface/datasets/issues/7786/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/huggingface/datasets/issues/7786/timeline
null
null
false
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/7786", "html_url": "https://github.com/huggingface/datasets/pull/7786", "diff_url": "https://github.com/huggingface/datasets/pull/7786.diff", "patch_url": "https://github.com/huggingface/datasets/pull/7786.patch", "merged_at": "2025-10-07T14:50...
true
https://api.github.com/repos/huggingface/datasets/issues/7785
https://api.github.com/repos/huggingface/datasets
https://api.github.com/repos/huggingface/datasets/issues/7785/labels{/name}
https://api.github.com/repos/huggingface/datasets/issues/7785/comments
https://api.github.com/repos/huggingface/datasets/issues/7785/events
https://github.com/huggingface/datasets/pull/7785
3,439,897,018
PR_kwDODunzps6pyTM_
7,785
Fix Audio docstring by removing unsupported mono argument
{ "login": "tanuj-rai", "id": 84439872, "node_id": "MDQ6VXNlcjg0NDM5ODcy", "avatar_url": "https://avatars.githubusercontent.com/u/84439872?v=4", "gravatar_id": "", "url": "https://api.github.com/users/tanuj-rai", "html_url": "https://github.com/tanuj-rai", "followers_url": "https://api.github.com/users/...
[]
open
false
null
[]
null
[ "I think we can keep the arg and add the missing torch.mean() in the Audio.decode_example method", "> I think we can keep the arg and add the missing torch.mean() in the Audio.decode_example method\r\n\r\nThank you @lhoestq. I will add torch.mean()." ]
2025-09-22T09:06:52
2025-09-23T09:57:37
null
CONTRIBUTOR
null
null
null
null
This PR fixes issue #7745. Who can review: @lhoestq
null
{ "url": "https://api.github.com/repos/huggingface/datasets/issues/7785/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/huggingface/datasets/issues/7785/timeline
null
null
false
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/7785", "html_url": "https://github.com/huggingface/datasets/pull/7785", "diff_url": "https://github.com/huggingface/datasets/pull/7785.diff", "patch_url": "https://github.com/huggingface/datasets/pull/7785.patch", "merged_at": null }
true
https://api.github.com/repos/huggingface/datasets/issues/7783
https://api.github.com/repos/huggingface/datasets
https://api.github.com/repos/huggingface/datasets/issues/7783/labels{/name}
https://api.github.com/repos/huggingface/datasets/issues/7783/comments
https://api.github.com/repos/huggingface/datasets/issues/7783/events
https://github.com/huggingface/datasets/pull/7783
3,430,715,779
PR_kwDODunzps6pT7pg
7,783
Support huggingface_hub v0.x and v1.x
{ "login": "Wauplin", "id": 11801849, "node_id": "MDQ6VXNlcjExODAxODQ5", "avatar_url": "https://avatars.githubusercontent.com/u/11801849?v=4", "gravatar_id": "", "url": "https://api.github.com/users/Wauplin", "html_url": "https://github.com/Wauplin", "followers_url": "https://api.github.com/users/Waupli...
[]
closed
false
null
[]
null
[ "The docs for this PR live [here](https://moon-ci-docs.huggingface.co/docs/datasets/pr_7783). All of your documentation changes will be reflected on that endpoint. The docs are available until 30 days after the last update.", "@lhoestq could you have a look at this PR please? It makes `datasets` compatible with t...
2025-09-18T14:45:20
2025-10-01T13:56:05
2025-10-01T13:56:03
CONTRIBUTOR
null
null
null
null
Related to https://github.com/huggingface/huggingface_hub/issues/3340. This PR adapts `datasets` to be compatible with both huggingface_hub v0.x and v1.x. In practice nothing else should change (I've checked the codebase). The `HfHubHTTPError` is a base error defined in `huggingface_hub` that inherits from `requ...
{ "login": "lhoestq", "id": 42851186, "node_id": "MDQ6VXNlcjQyODUxMTg2", "avatar_url": "https://avatars.githubusercontent.com/u/42851186?v=4", "gravatar_id": "", "url": "https://api.github.com/users/lhoestq", "html_url": "https://github.com/lhoestq", "followers_url": "https://api.github.com/users/lhoest...
{ "url": "https://api.github.com/repos/huggingface/datasets/issues/7783/reactions", "total_count": 1, "+1": 1, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/huggingface/datasets/issues/7783/timeline
null
null
false
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/7783", "html_url": "https://github.com/huggingface/datasets/pull/7783", "diff_url": "https://github.com/huggingface/datasets/pull/7783.diff", "patch_url": "https://github.com/huggingface/datasets/pull/7783.patch", "merged_at": "2025-10-01T13:56...
true
End of preview. Expand in Data Studio

Dataset Card for Dataset Name

This dataset card aims to be a base template for new datasets. It has been generated using this raw template.

Dataset Details

Dataset Description

  • Curated by: [More Information Needed]
  • Funded by [optional]: [More Information Needed]
  • Shared by [optional]: [More Information Needed]
  • Language(s) (NLP): [More Information Needed]
  • License: [More Information Needed]

Dataset Sources [optional]

  • Repository: [More Information Needed]
  • Paper [optional]: [More Information Needed]
  • Demo [optional]: [More Information Needed]

Uses

Direct Use

[More Information Needed]

Out-of-Scope Use

[More Information Needed]

Dataset Structure

[More Information Needed]

Dataset Creation

Curation Rationale

[More Information Needed]

Source Data

Data Collection and Processing

[More Information Needed]

Who are the source data producers?

[More Information Needed]

Annotations [optional]

Annotation process

[More Information Needed]

Who are the annotators?

[More Information Needed]

Personal and Sensitive Information

[More Information Needed]

Bias, Risks, and Limitations

[More Information Needed]

Recommendations

Users should be made aware of the risks, biases and limitations of the dataset. More information needed for further recommendations.

Citation [optional]

BibTeX:

[More Information Needed]

APA:

[More Information Needed]

Glossary [optional]

[More Information Needed]

More Information [optional]

[More Information Needed]

Dataset Card Authors [optional]

[More Information Needed]

Dataset Card Contact

[More Information Needed]

Downloads last month
4