number
int64
2
7.91k
title
stringlengths
1
290
body
stringlengths
0
228k
state
stringclasses
2 values
created_at
timestamp[s]date
2020-04-14 18:18:51
2025-12-16 10:45:02
updated_at
timestamp[s]date
2020-04-29 09:23:05
2025-12-16 19:34:46
closed_at
timestamp[s]date
2020-04-29 09:23:05
2025-12-16 14:20:48
url
stringlengths
48
51
author
stringlengths
3
26
comments_count
int64
0
70
labels
listlengths
0
4
2,957
MultiWOZ Dataset NonMatchingChecksumError
## Describe the bug The checksums for the downloaded MultiWOZ dataset and source MultiWOZ dataset aren't matching. ## Steps to reproduce the bug Both of the below dataset versions yield the checksum error: ```python from datasets import load_dataset dataset = load_dataset('multi_woz_v22', 'v2.2') dataset = loa...
CLOSED
2021-09-22T23:45:00
2022-03-15T16:07:02
2022-03-15T16:07:02
https://github.com/huggingface/datasets/issues/2957
bradyneal
1
[ "bug" ]
2,956
Cache problem in the `load_dataset` method for local compressed file(s)
## Describe the bug Cache problem in the `load_dataset` method: when modifying a compressed file in a local folder `load_dataset` doesn't detect the change and load the previous version. ## Steps to reproduce the bug To test it directly, I have prepared a [Google Colaboratory notebook](https://colab.research.g...
OPEN
2021-09-22T13:34:32
2023-08-31T16:49:01
null
https://github.com/huggingface/datasets/issues/2956
SaulLu
1
[ "bug" ]
2,953
Trying to get in touch regarding a security issue
Hey there! I'd like to report a security issue but cannot find contact instructions on your repository. If not a hassle, might you kindly add a `SECURITY.md` file with an email, or another contact method? GitHub [recommends](https://docs.github.com/en/code-security/getting-started/adding-a-security-policy-to-your-rep...
CLOSED
2021-09-21T15:58:13
2021-10-21T15:16:43
2021-10-21T15:16:43
https://github.com/huggingface/datasets/issues/2953
JamieSlome
1
[]
2,945
Protect master branch
After accidental merge commit (91c55355b634d0dc73350a7ddee1a6776dbbdd69) into `datasets` master branch, all commits present in the feature branch were permanently added to `datasets` master branch history, as e.g.: - 00cc036fea7c7745cfe722360036ed306796a3f2 - 13ae8c98602bbad8197de3b9b425f4c78f582af1 - ... I propo...
CLOSED
2021-09-20T06:47:01
2021-09-20T12:01:27
2021-09-20T12:00:16
https://github.com/huggingface/datasets/issues/2945
albertvillanova
2
[ "enhancement" ]
2,944
Add `remove_columns` to `IterableDataset `
**Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. ```python from datasets import load_dataset dataset = load_dataset("c4", 'realnewslike', streaming =True, split='train') dataset = dataset.remove_columns('url') ``` ``` AttributeError: 'I...
CLOSED
2021-09-20T04:01:00
2021-10-08T15:31:53
2021-10-08T15:31:53
https://github.com/huggingface/datasets/issues/2944
changjonathanc
1
[ "enhancement", "good first issue" ]
2,943
Backwards compatibility broken for cached datasets that use `.filter()`
## Describe the bug After upgrading to datasets `1.12.0`, some cached `.filter()` steps from `1.11.0` started failing with `ValueError: Keys mismatch: between {'indices': Value(dtype='uint64', id=None)} and {'file': Value(dtype='string', id=None), 'text': Value(dtype='string', id=None), 'speaker_id': Value(dtype='in...
CLOSED
2021-09-19T16:16:37
2021-09-20T16:25:43
2021-09-20T16:25:42
https://github.com/huggingface/datasets/issues/2943
anton-l
6
[ "bug" ]
2,941
OSCAR unshuffled_original_ko: NonMatchingSplitsSizesError
## Describe the bug Cannot download OSCAR `unshuffled_original_ko` due to `NonMatchingSplitsSizesError`. ## Steps to reproduce the bug ```python >>> dataset = datasets.load_dataset('oscar', 'unshuffled_original_ko') NonMatchingSplitsSizesError: [{'expected': SplitInfo(name='train', num_bytes=25292102197, num...
OPEN
2021-09-18T10:39:13
2022-01-19T14:10:07
null
https://github.com/huggingface/datasets/issues/2941
ayaka14732
1
[ "bug", "dataset bug" ]
2,937
load_dataset using default cache on Windows causes PermissionError: [WinError 5] Access is denied
## Describe the bug Standard process to download and load the wiki_bio dataset causes PermissionError in Windows 10 and 11. ## Steps to reproduce the bug ```python from datasets import load_dataset ds = load_dataset('wiki_bio') ``` ## Expected results It is expected that the dataset downloads without any er...
CLOSED
2021-09-17T16:52:10
2022-08-24T13:09:08
2022-08-24T13:09:08
https://github.com/huggingface/datasets/issues/2937
daqieq
4
[ "bug" ]
2,934
to_tf_dataset keeps a reference to the open data somewhere, causing issues on windows
To reproduce: ```python import datasets as ds import weakref import gc d = ds.load_dataset("mnist", split="train") ref = weakref.ref(d._data.table) tfd = d.to_tf_dataset("image", batch_size=1, shuffle=False, label_cols="label") del tfd, d gc.collect() assert ref() is None, "Error: there is at least one refe...
CLOSED
2021-09-17T15:26:53
2021-10-13T09:03:23
2021-10-13T09:03:23
https://github.com/huggingface/datasets/issues/2934
lhoestq
2
[ "bug" ]
2,932
Conda build fails
## Describe the bug Current `datasets` version in conda is 1.9 instead of 1.12. The build of the conda package fails.
CLOSED
2021-09-17T12:49:22
2021-09-21T15:31:10
2021-09-21T15:31:10
https://github.com/huggingface/datasets/issues/2932
albertvillanova
2
[ "bug" ]
2,930
Mutable columns argument breaks set_format
## Describe the bug If you pass a mutable list to the `columns` argument of `set_format` and then change the list afterwards, the returned columns also change. ## Steps to reproduce the bug ```python from datasets import load_dataset dataset = load_dataset("glue", "cola") column_list = ["idx", "label"] datas...
CLOSED
2021-09-16T12:27:22
2021-09-16T13:50:53
2021-09-16T13:50:53
https://github.com/huggingface/datasets/issues/2930
Rocketknight1
1
[ "bug" ]
2,927
Datasets 1.12 dataset.filter TypeError: get_indices_from_mask_function() got an unexpected keyword argument
## Describe the bug Upgrading to 1.12 caused `dataset.filter` call to fail with > get_indices_from_mask_function() got an unexpected keyword argument valid_rel_labels ## Steps to reproduce the bug ```pythondef filter_good_rows( ex: Dict, valid_rel_labels: Set[str], valid_ner_labels: Set[st...
CLOSED
2021-09-16T01:14:02
2021-09-20T16:23:22
2021-09-20T16:23:21
https://github.com/huggingface/datasets/issues/2927
timothyjlaurent
2
[ "bug" ]
2,926
Error when downloading datasets to non-traditional cache directories
## Describe the bug When the cache directory is linked (soft link) to a directory on a NetApp device, the download fails. ## Steps to reproduce the bug ```bash ln -s /path/to/netapp/.cache ~/.cache ``` ```python load_dataset("imdb") ``` ## Expected results Successfully loading IMDB dataset ## Actual...
OPEN
2021-09-15T19:59:46
2021-11-24T21:42:31
null
https://github.com/huggingface/datasets/issues/2926
dar-tau
1
[ "bug" ]
2,924
"File name too long" error for file locks
## Describe the bug Getting the following error when calling `load_dataset("gar1t/test")`: ``` OSError: [Errno 36] File name too long: '<user>/.cache/huggingface/datasets/_home_garrett_.cache_huggingface_datasets_csv_test-7c856aea083a7043_0.0.0_9144e0a4e8435090117cea53e6c7537173ef2304525df4a077c435d8ee7828ff.inc...
CLOSED
2021-09-15T18:16:50
2023-12-08T13:39:51
2021-10-29T09:42:24
https://github.com/huggingface/datasets/issues/2924
gar1t
12
[ "bug" ]
2,923
Loading an autonlp dataset raises in normal mode but not in streaming mode
## Describe the bug The same dataset (from autonlp) raises an error in normal mode, but does not raise in streaming mode ## Steps to reproduce the bug ```python from datasets import load_dataset load_dataset("severo/autonlp-data-sentiment_detection-3c8bcd36", split="train", streaming=False) ## raises an err...
CLOSED
2021-09-15T17:44:38
2022-04-12T10:09:40
2022-04-12T10:09:39
https://github.com/huggingface/datasets/issues/2923
severo
1
[ "bug", "dataset-viewer" ]
2,921
Using a list of multi-dim numpy arrays raises an error "can only convert 1-dimensional array values"
This error has been introduced in https://github.com/huggingface/datasets/pull/2361 To reproduce: ```python import numpy as np from datasets import Dataset d = Dataset.from_dict({"a": [np.zeros((2, 2))]}) ``` raises ```python Traceback (most recent call last): File "playground/ttest.py", line 5, in <mod...
CLOSED
2021-09-15T17:12:11
2021-09-15T17:21:45
2021-09-15T17:21:45
https://github.com/huggingface/datasets/issues/2921
lhoestq
0
[]
2,919
Unwanted progress bars when accessing examples
When accessing examples from a dataset formatted for pytorch, some progress bars appear when accessing examples: ```python In [1]: import datasets as ds In [2]: d = ds.Dataset.from_dict({"a": [0, 1, 2]}).with_format("torch") ...
CLOSED
2021-09-15T14:05:10
2021-09-15T17:21:49
2021-09-15T17:18:23
https://github.com/huggingface/datasets/issues/2919
lhoestq
1
[]
2,918
`Can not decode content-encoding: gzip` when loading `scitldr` dataset with streaming
## Describe the bug Trying to load the `"FullText"` config of the `"scitldr"` dataset with `streaming=True` raises an error from `aiohttp`: ```python ClientPayloadError: 400, message='Can not decode content-encoding: gzip' ``` cc @lhoestq ## Steps to reproduce the bug ```python from datasets import load_...
CLOSED
2021-09-15T13:06:07
2021-12-01T08:15:00
2021-12-01T08:15:00
https://github.com/huggingface/datasets/issues/2918
SBrandeis
3
[ "bug", "streaming" ]
2,917
windows download abnormal
## Describe the bug The script clearly exists (accessible from the browser), but the script download fails on windows. Then I tried it again and it can be downloaded normally on linux. why?? ## Steps to reproduce the bug ```python3.7 + windows ![image](https://user-images.githubusercontent.com/52347799/133436174-43...
CLOSED
2021-09-15T12:45:35
2021-09-16T17:17:48
2021-09-16T17:17:48
https://github.com/huggingface/datasets/issues/2917
wei1826676931
3
[ "bug" ]
2,914
Having a dependency defining fsspec entrypoint raises an AttributeError when importing datasets
## Describe the bug In one of my project, I defined a custom fsspec filesystem with an entrypoint. My guess is that by doing so, a variable named `spec` is created in the module `fsspec` (created by entering a for loop as there are entrypoints defined, see the loop in question [here](https://github.com/intake/filesys...
CLOSED
2021-09-15T07:54:06
2021-09-15T16:49:17
2021-09-15T16:49:16
https://github.com/huggingface/datasets/issues/2914
pierre-godard
1
[ "bug" ]
2,913
timit_asr dataset only includes one text phrase
## Describe the bug The dataset 'timit_asr' only includes one text phrase. It only includes the transcription "Would such an act of refusal be useful?" multiple times rather than different phrases. ## Steps to reproduce the bug Note: I am following the tutorial https://huggingface.co/blog/fine-tune-wav2vec2-englis...
CLOSED
2021-09-14T21:06:07
2021-09-15T08:05:19
2021-09-15T08:05:18
https://github.com/huggingface/datasets/issues/2913
margotwagner
2
[ "bug" ]
2,904
FORCE_REDOWNLOAD does not work
## Describe the bug With GenerateMode.FORCE_REDOWNLOAD, the documentation says +------------------------------------+-----------+---------+ | | Downloads | Dataset | +====================================+===========+=========+ | `REUSE_DATASET_IF_EXISTS` (default...
OPEN
2021-09-14T09:45:26
2021-10-06T09:37:19
null
https://github.com/huggingface/datasets/issues/2904
anoopkatti
3
[ "bug" ]
2,902
Add WIT Dataset
## Adding a Dataset - **Name:** *WIT* - **Description:** *Wikipedia-based Image Text Dataset* - **Paper:** *[WIT: Wikipedia-based Image Text Dataset for Multimodal Multilingual Machine Learning ](https://arxiv.org/abs/2103.01913)* - **Data:** *https://github.com/google-research-datasets/wit* - **Motivation:** (e...
CLOSED
2021-09-13T19:38:49
2024-10-02T15:37:48
2022-06-01T17:28:40
https://github.com/huggingface/datasets/issues/2902
nateraw
6
[ "dataset request" ]
2,901
Incompatibility with pytest
## Describe the bug pytest complains about xpathopen / path.open("w") ## Steps to reproduce the bug Create a test file, `test.py`: ```python import datasets as ds def load_dataset(): ds.load_dataset("counter", split="train", streaming=True) ``` And launch it with pytest: ```bash python -m pyt...
CLOSED
2021-09-13T19:12:17
2021-09-14T08:40:47
2021-09-14T08:40:47
https://github.com/huggingface/datasets/issues/2901
severo
1
[ "bug" ]
2,899
Dataset
## Adding a Dataset - **Name:** *name of the dataset* - **Description:** *short description of the dataset (or link to social media or blog post)* - **Paper:** *link to the dataset paper if available* - **Data:** *link to the Github repository or current dataset location* - **Motivation:** *what are some good reasons t...
CLOSED
2021-09-12T07:38:53
2021-09-12T16:12:15
2021-09-12T16:12:15
https://github.com/huggingface/datasets/issues/2899
rcacho172
0
[ "dataset request" ]
2,898
Hug emoji
## Adding a Dataset - **Name:** *name of the dataset* - **Description:** *short description of the dataset (or link to social media or blog post)* - **Paper:** *link to the dataset paper if available* - **Data:** *link to the Github repository or current dataset location* - **Motivation:** *what are some good reasons t...
CLOSED
2021-09-12T03:27:51
2021-09-12T16:13:13
2021-09-12T16:13:13
https://github.com/huggingface/datasets/issues/2898
Jackg-08
0
[ "dataset request" ]
2,892
Error when encoding a dataset with None objects with a Sequence feature
There is an error when encoding a dataset with None objects with a Sequence feature To reproduce: ```python from datasets import Dataset, Features, Value, Sequence data = {"a": [[0], None]} features = Features({"a": Sequence(Value("int32"))}) dataset = Dataset.from_dict(data, features=features) ``` raises ...
CLOSED
2021-09-10T14:11:43
2021-09-13T14:18:13
2021-09-13T14:17:42
https://github.com/huggingface/datasets/issues/2892
lhoestq
1
[ "bug" ]
2,890
0x290B112ED1280537B24Ee6C268a004994a16e6CE
## Adding a Dataset - **Name:** *name of the dataset* - **Description:** *short description of the dataset (or link to social media or blog post)* - **Paper:** *link to the dataset paper if available* - **Data:** *link to the Github repository or current dataset location* - **Motivation:** *what are some good reasons t...
CLOSED
2021-09-10T09:51:17
2021-09-10T11:45:29
2021-09-10T11:45:29
https://github.com/huggingface/datasets/issues/2890
rcacho172
0
[ "dataset request" ]
2,889
Coc
## Adding a Dataset - **Name:** *name of the dataset* - **Description:** *short description of the dataset (or link to social media or blog post)* - **Paper:** *link to the dataset paper if available* - **Data:** *link to the Github repository or current dataset location* - **Motivation:** *what are some good reasons t...
CLOSED
2021-09-10T07:32:07
2021-09-10T11:45:54
2021-09-10T11:45:54
https://github.com/huggingface/datasets/issues/2889
Bwiggity
0
[ "dataset request" ]
2,888
v1.11.1 release date
Hello, i need to use latest features in one of my packages but there have been no new datasets release since 2 months ago. When do you plan to publush v1.11.1 release?
CLOSED
2021-09-09T21:53:15
2021-09-12T20:18:35
2021-09-12T16:15:39
https://github.com/huggingface/datasets/issues/2888
fcakyon
2
[ "question" ]
2,886
Hj
CLOSED
2021-09-09T18:58:52
2021-09-10T11:46:29
2021-09-10T11:46:29
https://github.com/huggingface/datasets/issues/2886
Noorasri
0
[]
2,885
Adding an Elastic Search index to a Dataset
## Describe the bug When trying to index documents from the squad dataset, the connection to ElasticSearch seems to break: Reusing dataset squad (/Users/andreasmotz/.cache/huggingface/datasets/squad/plain_text/1.0.0/d6ec3ceb99ca480ce37cdd35555d6cb2511d223b9150cce08a837ef62ffea453) 90%|████████████████████████████...
OPEN
2021-09-09T12:21:39
2021-10-20T18:57:11
null
https://github.com/huggingface/datasets/issues/2885
MotzWanted
3
[ "bug" ]
2,882
`load_dataset('docred')` results in a `NonMatchingChecksumError`
## Describe the bug I get consistent `NonMatchingChecksumError: Checksums didn't match for dataset source files` errors when trying to execute `datasets.load_dataset('docred')`. ## Steps to reproduce the bug It is quasi only this code: ```python import datasets data = datasets.load_dataset('docred') ``` ## ...
CLOSED
2021-09-09T05:55:02
2021-09-13T11:24:30
2021-09-13T11:24:30
https://github.com/huggingface/datasets/issues/2882
tmpr
1
[ "bug" ]
2,879
In v1.4.1, all TIMIT train transcripts are "Would such an act of refusal be useful?"
## Describe the bug Using version 1.4.1 of `datasets`, TIMIT transcripts are all the same. ## Steps to reproduce the bug I was following this tutorial - https://huggingface.co/blog/fine-tune-wav2vec2-english But here's a distilled repro: ```python !pip install datasets==1.4.1 from datasets import load_datas...
CLOSED
2021-09-07T18:53:45
2021-09-08T16:55:19
2021-09-08T09:12:28
https://github.com/huggingface/datasets/issues/2879
rcgale
3
[ "bug" ]
2,878
NotADirectoryError: [WinError 267] During load_from_disk
## Describe the bug Trying to load saved dataset or dataset directory from Amazon S3 on a Windows machine fails. Performing the same operation succeeds on non-windows environment (AWS Sagemaker). ## Steps to reproduce the bug ```python # Followed https://huggingface.co/docs/datasets/filesystems.html#loading-a-pr...
OPEN
2021-09-07T15:15:05
2021-09-07T15:15:05
null
https://github.com/huggingface/datasets/issues/2878
Grassycup
0
[ "bug" ]
2,877
Don't keep the dummy data folder or dataset_infos.json when resolving data files
When there's no dataset script, all the data files of a folder or a repository on the Hub are loaded as data files. There are already a few exceptions: - files starting with "." are ignored - the dataset card "README.md" is ignored - any file named "config.json" is ignored (currently it isn't used anywhere, but i...
CLOSED
2021-09-07T14:09:04
2021-09-29T09:05:38
2021-09-29T09:05:38
https://github.com/huggingface/datasets/issues/2877
lhoestq
2
[ "enhancement" ]
2,875
Add Congolese Swahili speech datasets
## Adding a Dataset - **Name:** Congolese Swahili speech corpora - **Data:** https://gamayun.translatorswb.org/data/ Instructions to add a new dataset can be found [here](https://github.com/huggingface/datasets/blob/master/ADD_NEW_DATASET.md). Also related: https://mobile.twitter.com/OktemAlp/status/14351963936...
OPEN
2021-09-07T12:13:50
2021-09-07T12:13:50
null
https://github.com/huggingface/datasets/issues/2875
osanseviero
0
[ "dataset request", "speech" ]
2,871
datasets.config.PYARROW_VERSION has no attribute 'major'
In the test_dataset_common.py script, line 288-289 ``` if datasets.config.PYARROW_VERSION.major < 3: packaged_datasets = [pd for pd in packaged_datasets if pd["dataset_name"] != "parquet"] ``` which throws the error below. `datasets.config.PYARROW_VERSION` itself return the string '4.0.1'. I have tested thi...
CLOSED
2021-09-06T21:06:57
2021-09-08T08:51:52
2021-09-08T08:51:52
https://github.com/huggingface/datasets/issues/2871
bwang482
5
[ "bug" ]
2,869
TypeError: 'NoneType' object is not callable
## Describe the bug TypeError: 'NoneType' object is not callable ## Steps to reproduce the bug ```python from datasets import load_dataset, load_metric dataset = datasets.load_dataset("glue", 'cola') ``` ## Expected results A clear and concise description of the expected results. ## Actual results Speci...
CLOSED
2021-09-03T11:27:39
2025-02-19T09:57:34
2021-09-08T09:24:55
https://github.com/huggingface/datasets/issues/2869
Chenfei-Kang
17
[ "bug" ]
2,868
Add Common Objects in 3D (CO3D)
## Adding a Dataset - **Name:** *Common Objects in 3D (CO3D)* - **Description:** *See blog post [here](https://ai.facebook.com/blog/common-objects-in-3d-dataset-for-3d-reconstruction)* - **Paper:** *[link to paper](https://arxiv.org/abs/2109.00512)* - **Data:** *[link to data](https://ai.facebook.com/datasets/co3d-...
OPEN
2021-09-02T20:36:12
2024-01-17T12:03:59
null
https://github.com/huggingface/datasets/issues/2868
nateraw
0
[ "dataset request", "vision" ]
2,866
"counter" dataset raises an error in normal mode, but not in streaming mode
## Describe the bug `counter` dataset raises an error on `load_dataset()`, but simply returns an empty iterator in streaming mode. ## Steps to reproduce the bug ```python >>> import datasets as ds >>> a = ds.load_dataset('counter', split="train", streaming=False) Using custom data configuration default Dow...
CLOSED
2021-09-02T13:10:53
2021-10-14T09:24:09
2021-10-14T09:24:09
https://github.com/huggingface/datasets/issues/2866
severo
11
[ "bug" ]
2,860
Cannot download TOTTO dataset
Error: Couldn't find file at https://storage.googleapis.com/totto/totto_data.zip `datasets version: 1.11.0` # How to reproduce: ```py from datasets import load_dataset dataset = load_dataset('totto') ```
CLOSED
2021-09-01T11:04:10
2021-09-02T06:47:40
2021-09-02T06:47:40
https://github.com/huggingface/datasets/issues/2860
mrm8488
1
[ "bug" ]
2,859
Loading allenai/c4 in streaming mode does too many HEAD requests
This does 60,000+ HEAD requests to get all the ETags of all the data files: ```python from datasets import load_dataset load_dataset("allenai/c4", streaming=True) ``` It makes loading the dataset completely impractical. The ETags are used to compute the config id (it must depend on the data files being used). ...
CLOSED
2021-08-31T21:11:04
2021-10-12T07:35:52
2021-10-11T11:05:51
https://github.com/huggingface/datasets/issues/2859
lhoestq
2
[ "enhancement", "streaming" ]
2,850
Wound segmentation datasets
## Adding a Dataset - **Name:** Wound segmentation datasets - **Description:** annotated wound image dataset - **Paper:** https://www.nature.com/articles/s41598-020-78799-w - **Data:** https://github.com/uwm-bigdata/wound-segmentation - **Motivation:** Interesting simple image dataset, useful for segmentation, wi...
OPEN
2021-08-30T10:44:32
2021-12-08T12:02:00
null
https://github.com/huggingface/datasets/issues/2850
osanseviero
0
[ "dataset request", "vision" ]
2,849
Add Open Catalyst Project Dataset
## Adding a Dataset - **Name:** Open Catalyst 2020 (OC20) Dataset - **Website:** https://opencatalystproject.org/ - **Data:** https://github.com/Open-Catalyst-Project/ocp/blob/master/DATASET.md Instructions to add a new dataset can be found [here](https://github.com/huggingface/datasets/blob/master/ADD_NEW_DATAS...
OPEN
2021-08-30T10:14:39
2021-08-30T10:14:39
null
https://github.com/huggingface/datasets/issues/2849
osanseviero
0
[ "dataset request" ]
2,846
Negative timezone
## Describe the bug The load_dataset method do not accept a parquet file with a negative timezone, as it has the following regex: ``` "^(s|ms|us|ns),\s*tz=([a-zA-Z0-9/_+:]*)$" ``` So a valid timestap ```timestamp[us, tz=-03:00]``` returns an error when loading parquet files. ## Steps to reproduce the bug ```py...
CLOSED
2021-08-27T20:50:33
2021-09-10T11:51:07
2021-09-10T11:51:07
https://github.com/huggingface/datasets/issues/2846
jadermcs
1
[ "bug" ]
2,845
[feature request] adding easy to remember `datasets.cache_dataset()` + `datasets.is_dataset_cached()`
Often, there is a need to prepare a dataset but not use it immediately, e.g. think tests suite setup, so it'd be really useful to be able to do: ``` if not datasets.is_dataset_cached(ds): datasets.cache_dataset(ds) ``` This can already be done with: ``` builder = load_dataset_builder(ds) if not os.path.idsi...
OPEN
2021-08-27T18:21:51
2021-08-27T18:24:05
null
https://github.com/huggingface/datasets/issues/2845
stas00
0
[ "enhancement" ]
2,842
always requiring the username in the dataset name when there is one
Me and now another person have been bitten by the `datasets`'s non-strictness on requiring a dataset creator's username when it's due. So both of us started with `stas/openwebtext-10k`, somewhere along the lines lost `stas/` and continued using `openwebtext-10k` and it all was good until we published the software an...
CLOSED
2021-08-26T23:31:53
2021-10-22T09:43:35
2021-10-22T09:43:35
https://github.com/huggingface/datasets/issues/2842
stas00
6
[ "enhancement" ]
2,841
Adding GLUECoS Hinglish and Spanglish code-switching bemchmark
## Adding a Dataset - **Name:** GLUECoS - **Description:** a Microsoft Benchmark to evaluate code-switching for only two language pairs but a variety of tasks - **Paper:** https://aclanthology.org/2020.acl-main.329/ - **Data:** https://github.com/microsoft/GLUECoS - **Motivation:** We currently only have [one othe...
OPEN
2021-08-26T17:47:39
2021-10-20T18:41:20
null
https://github.com/huggingface/datasets/issues/2841
yjernite
1
[ "dataset request" ]
2,840
How can I compute BLEU-4 score use `load_metric` ?
I have found the sacrebleu metric. But, I do not know the difference between it and BLEU-4. If I want to compute BLEU-4 score, what can i do?
CLOSED
2021-08-26T17:36:37
2021-08-27T08:13:24
2021-08-27T08:13:24
https://github.com/huggingface/datasets/issues/2840
Doragd
0
[]
2,839
OpenWebText: NonMatchingSplitsSizesError
## Describe the bug When downloading `openwebtext`, I'm getting: ``` datasets.utils.info_utils.NonMatchingSplitsSizesError: [{'expected': SplitInfo(name='train', num_bytes=39769494896, num_examples=8013769, dataset_name='openwebtext'), 'recorded': SplitInfo(name='train', num_bytes=39611023912, num_examples=7982430...
CLOSED
2021-08-26T13:50:26
2021-09-21T14:12:40
2021-09-21T14:09:43
https://github.com/huggingface/datasets/issues/2839
thomasw21
5
[ "bug" ]
2,837
prepare_module issue when loading from read-only fs
## Describe the bug When we use prepare_module from a readonly file system, we create a FileLock using the `local_path`. This path is not necessarily writable. `lock_path = local_path + ".lock"` ## Steps to reproduce the bug Run `load_dataset` on a readonly python loader file. ```python ds = load_datas...
CLOSED
2021-08-25T15:21:26
2021-10-05T17:58:22
2021-10-05T17:58:22
https://github.com/huggingface/datasets/issues/2837
Dref360
1
[ "bug" ]
2,833
IndexError when accessing first element of a Dataset if first RecordBatch is empty
The computation of the offsets of the underlying Table of a Dataset has some issues if the first RecordBatch is empty. ```python from datasets import Dataset import pyarrow as pa pa_table = pa.Table.from_pydict({"a": [1]}) pa_table2 = pa.Table.from_pydict({"a": []}, schema=pa_table.schema) ds_table = pa.conca...
CLOSED
2021-08-24T16:49:20
2021-08-24T17:21:17
2021-08-24T17:21:17
https://github.com/huggingface/datasets/issues/2833
lhoestq
0
[]
2,832
Logging levels not taken into account
## Describe the bug The `logging` module isn't working as intended relative to the levels to set. ## Steps to reproduce the bug ```python from datasets import logging logging.set_verbosity_debug() logger = logging.get_logger() logger.error("ERROR") logger.warning("WARNING") logger.info("INFO") logge...
CLOSED
2021-08-24T11:50:41
2023-07-12T17:19:30
2023-07-12T17:19:29
https://github.com/huggingface/datasets/issues/2832
LysandreJik
2
[ "bug" ]
2,831
ArrowInvalid when mapping dataset with missing values
## Describe the bug I encountered an `ArrowInvalid` when mapping dataset with missing values. Here are the files for a minimal example. The exception is only thrown when the first line in the csv has a missing value (if you move the last line to the top it isn't thrown). [data_small.csv](https://github.com/huggingf...
OPEN
2021-08-24T08:50:42
2021-08-31T14:15:34
null
https://github.com/huggingface/datasets/issues/2831
uniquefine
1
[ "bug" ]
2,829
Optimize streaming from TAR archives
Hi ! As you know TAR has some constraints for data streaming. While it is optimized for buffering, the files in the TAR archive **need to be streamed in order**. It means that we can't choose which file to stream from, and this notation is to be avoided for TAR archives: ``` tar://books_large_p1.txt::https://storage....
CLOSED
2021-08-23T16:56:40
2022-09-21T14:29:46
2022-09-21T14:08:39
https://github.com/huggingface/datasets/issues/2829
lhoestq
1
[ "enhancement", "streaming" ]
2,826
Add a Text Classification dataset: KanHope
## Adding a Dataset - **Name:** *KanHope* - **Description:** *A code-mixed English-Kannada dataset for Hope speech detection* - **Paper:** *https://arxiv.org/abs/2108.04616* (I am the author of the paper} - **Author:** *[AdeepH](https://github.com/adeepH)* - **Data:** *https://github.com/adeepH/KanHope/tree/main/d...
CLOSED
2021-08-23T12:21:58
2021-10-01T18:06:59
2021-10-01T18:06:59
https://github.com/huggingface/datasets/issues/2826
adeepH
1
[ "dataset request" ]
2,825
The datasets.map function does not load cached dataset after moving python script
## Describe the bug The datasets.map function caches the processed data to a certain directory. When the map function is called another time with totally the same parameters, the cached data are supposed to be reloaded instead of re-processing. However, it doesn't reuse cached data sometimes. I use the common data pro...
CLOSED
2021-08-23T03:23:37
2024-07-29T11:25:50
2021-08-31T13:13:36
https://github.com/huggingface/datasets/issues/2825
hobbitlzy
6
[ "bug" ]
2,823
HF_DATASETS_CACHE variable in Windows
I can't seem to use a custom Cache directory in Windows. I have tried: set HF_DATASETS_CACHE = "C:\Datasets" set HF_DATASETS_CACHE = "C:/Datasets" set HF_DATASETS_CACHE = "C:\\Datasets" set HF_DATASETS_CACHE = "r'C:\Datasets'" set HF_DATASETS_CACHE = "\Datasets" set HF_DATASETS_CACHE = "/Datasets" In each in...
CLOSED
2021-08-21T13:17:44
2021-08-21T13:20:11
2021-08-21T13:20:11
https://github.com/huggingface/datasets/issues/2823
rp2839
1
[]
2,821
Cannot load linnaeus dataset
## Describe the bug The [linnaeus](https://huggingface.co/datasets/linnaeus) dataset cannot be loaded. To reproduce: ``` from datasets import load_dataset datasets = load_dataset("linnaeus") ``` This results in: ``` Downloading and preparing dataset linnaeus/linnaeus (download: 17.36 MiB, generated: 8.74 MiB,...
CLOSED
2021-08-20T12:15:15
2021-08-31T13:13:02
2021-08-31T13:12:09
https://github.com/huggingface/datasets/issues/2821
NielsRogge
1
[ "bug" ]
2,820
Downloading “reddit” dataset keeps timing out.
## Describe the bug A clear and concise description of what the bug is. Everytime I try and download the reddit dataset it times out before finishing and I have to try again. There is some timeout error that I will post once it happens again. ## Steps to reproduce the bug ```python from datasets import load_d...
CLOSED
2021-08-20T02:52:36
2021-09-08T14:52:02
2021-09-08T14:52:02
https://github.com/huggingface/datasets/issues/2820
smeyerhot
10
[ "bug" ]
2,818
cannot load data from my loacal path
## Describe the bug I just want to directly load data from my local path,but find a bug.And I compare it with pandas to provide my local path is real. here is my code ```python3 # print my local path print(config.train_path) # read data and print data length tarin=pd.read_csv(config.train_path) print(len(tari...
CLOSED
2021-08-19T11:13:30
2023-07-25T17:42:15
2023-07-25T17:42:15
https://github.com/huggingface/datasets/issues/2818
yang-collect
1
[ "bug" ]
2,816
Add Mostly Basic Python Problems Dataset
## Adding a Dataset - **Name:** Mostly Basic Python Problems Dataset - **Description:** The benchmark consists of around 1,000 crowd-sourced Python programming problems, designed to be solvable by entry level programmers, covering programming fundamentals, standard library functionality, and so on. Each problem consi...
OPEN
2021-08-18T20:28:39
2021-09-10T08:04:20
null
https://github.com/huggingface/datasets/issues/2816
osanseviero
1
[ "dataset request" ]
2,813
Remove compression from xopen
We implemented support for streaming with 2 requirements: - transparent use for the end user: just needs to pass the parameter `streaming=True` - no additional work for the contributors: previous loading scripts should also work in streaming mode with no (or minor) changes; and new loading scripts should not involve ...
CLOSED
2021-08-18T09:35:59
2021-08-23T15:59:14
2021-08-23T15:59:14
https://github.com/huggingface/datasets/issues/2813
albertvillanova
1
[ "generic discussion" ]
2,812
arXiv Dataset verification problem
## Describe the bug `dataset_infos.json` for `arxiv_dataset` contains a fixed number of training examples, however the data (downloaded from an external source) is updated every week with additional examples. Therefore, loading the dataset without `ignore_verifications=True` results in a verification error.
OPEN
2021-08-17T18:01:48
2022-01-19T14:15:35
null
https://github.com/huggingface/datasets/issues/2812
eladsegal
0
[ "bug", "dataset bug" ]
2,808
Enable streaming for Wikipedia corpora
**Is your feature request related to a problem? Please describe.** Several of the [Wikipedia corpora](https://huggingface.co/datasets?search=wiki) on the Hub involve quite large files that would be a good candidate for streaming. Currently it is not possible to stream these corpora: ```python from datasets import ...
CLOSED
2021-08-16T15:59:12
2023-07-20T13:45:30
2023-07-20T13:45:30
https://github.com/huggingface/datasets/issues/2808
lewtun
1
[ "enhancement" ]
2,799
Loading JSON throws ArrowNotImplementedError
## Describe the bug I have created a [dataset](https://huggingface.co/datasets/lewtun/github-issues-test) of GitHub issues in line-separated JSON format and am finding that I cannot load it with the `json` loading script (see stack trace below). Curiously, there is no problem loading the dataset with `pandas` which...
CLOSED
2021-08-13T15:31:48
2022-01-10T18:59:32
2022-01-10T18:59:32
https://github.com/huggingface/datasets/issues/2799
lewtun
11
[ "bug" ]
2,797
Make creating/editing dataset cards easier, by editing on site and dumping info from test command.
**Is your feature request related to a problem? Please describe.** Creating and editing dataset cards should be but not that easy - If other else know Some information I don't know (bias of dataset, dataset curation, supported dataset, ...), he/she should know the description on hf.co comes from README.md under git...
OPEN
2021-08-13T11:54:49
2021-08-14T08:42:09
null
https://github.com/huggingface/datasets/issues/2797
richarddwang
0
[ "enhancement" ]
2,794
Warnings and documentation about pickling incorrect
## Describe the bug I have a docs bug and a closely related docs enhancement suggestion! ### Bug The warning and documentation say "either `dill` or `pickle`" for fingerprinting. But it seems that `dill`, which is installed by `datasets` by default, _must_ work, or else the fingerprinting fails. Warning: ...
OPEN
2021-08-12T23:09:13
2021-08-12T23:09:31
null
https://github.com/huggingface/datasets/issues/2794
mbforbes
0
[ "bug" ]
2,788
How to sample every file in a list of files making up a split in a dataset when loading?
I am loading a dataset with multiple train, test, and validation files like this: ``` data_files_dict = { "train": [train_file1, train_file2], "test": [test_file1, test_file2], "val": [val_file1, val_file2] } dataset = datasets.load_dataset( "csv", data_files=data_files_dict, split=[...
CLOSED
2021-08-11T17:43:21
2023-07-25T17:40:50
2023-07-25T17:40:50
https://github.com/huggingface/datasets/issues/2788
brijow
1
[]
2,787
ConnectionError: Couldn't reach https://raw.githubusercontent.com
Hello, I am trying to run run_glue.py and it gives me this error - Traceback (most recent call last): File "E:/BERT/pytorch_hugging/transformers/examples/pytorch/text-classification/run_glue.py", line 546, in <module> main() File "E:/BERT/pytorch_hugging/transformers/examples/pytorch/text-classification/...
CLOSED
2021-08-11T16:19:01
2023-10-03T12:39:25
2021-08-18T15:09:18
https://github.com/huggingface/datasets/issues/2787
jinec
9
[ "bug" ]
2,781
Latest v2.0.0 release of sacrebleu has broken some metrics
## Describe the bug After `sacrebleu` v2.0.0 release (see changes here: https://github.com/mjpost/sacrebleu/pull/152/files#diff-2553a315bb1f7e68c9c1b00d56eaeb74f5205aeb3a189bc3e527b122c6078795L17-R15), some of `datasets` metrics are broken: - Default tokenizer `sacrebleu.DEFAULT_TOKENIZER` no longer exists: - #273...
CLOSED
2021-08-10T09:59:41
2021-08-10T11:16:07
2021-08-10T11:16:07
https://github.com/huggingface/datasets/issues/2781
albertvillanova
0
[ "bug" ]
2,776
document `config.HF_DATASETS_OFFLINE` and precedence
https://github.com/huggingface/datasets/pull/1976 implemented `HF_DATASETS_OFFLINE`, but: 1. `config.HF_DATASETS_OFFLINE` is not documented 2. the precedence is not documented (env, config) I'm thinking it probably should be similar to what it says https://huggingface.co/docs/datasets/loading_datasets.html#from-th...
OPEN
2021-08-09T21:23:17
2021-08-09T21:23:17
null
https://github.com/huggingface/datasets/issues/2776
stas00
0
[ "enhancement" ]
2,775
`generate_random_fingerprint()` deterministic with 🤗Transformers' `set_seed()`
## Describe the bug **Update:** I dug into this to try to reproduce the underlying issue, and I believe it's that `set_seed()` from the `transformers` library makes the "random" fingerprint identical each time. I believe this is still a bug, because `datasets` is used exactly this way in `transformers` after `set_se...
CLOSED
2021-08-09T19:28:51
2024-01-26T15:05:36
2024-01-26T15:05:35
https://github.com/huggingface/datasets/issues/2775
mbforbes
3
[ "bug" ]
2,773
Remove dataset_infos.json
**Is your feature request related to a problem? Please describe.** As discussed, there are infos in the `dataset_infos.json` which are redundant and we could have them only in the README file. Others could be migrated to the README, like: "dataset_size", "size_in_bytes", "download_size", "splits.split_name.[num_byt...
CLOSED
2021-08-09T07:43:19
2024-05-04T14:52:10
2024-05-04T14:52:10
https://github.com/huggingface/datasets/issues/2773
albertvillanova
1
[ "enhancement", "generic discussion" ]
2,772
Remove returned feature constrain
In the current version, the returned value of the map function has to be list or ndarray. However, this makes it unsuitable for many tasks. In NLP, many features are sparse like verb words, noun chunks, if we want to assign different values to different words, which will result in a large sparse matrix if we only score...
OPEN
2021-08-08T04:01:30
2021-08-08T08:48:01
null
https://github.com/huggingface/datasets/issues/2772
PosoSAgapo
0
[ "enhancement" ]
2,768
`ArrowInvalid: Added column's length must match table's length.` after using `select`
## Describe the bug I would like to add a column to a downsampled dataset. However I get an error message saying the length don't match with the length of the unsampled dataset indicated. I suspect that the dataset size is not updated when calling `select`. ## Steps to reproduce the bug ```python from datasets im...
CLOSED
2021-08-07T13:17:29
2021-08-09T11:26:43
2021-08-09T11:26:43
https://github.com/huggingface/datasets/issues/2768
lvwerra
2
[ "bug" ]
2,767
equal operation to perform unbatch for huggingface datasets
Hi I need to use "unbatch" operation in tensorflow on a huggingface dataset, I could not find this operation, could you kindly direct me how I can do it, here is the problem I am trying to solve: I am considering "record" dataset in SuperGlue and I need to replicate each entery of the dataset for each answer, to ma...
CLOSED
2021-08-06T19:45:52
2022-03-07T13:58:00
2022-03-07T13:58:00
https://github.com/huggingface/datasets/issues/2767
dorooddorood606
5
[ "bug" ]
2,765
BERTScore Error
## Describe the bug A clear and concise description of what the bug is. ## Steps to reproduce the bug ```python predictions = ["hello there", "general kenobi"] references = ["hello there", "general kenobi"] bert = load_metric('bertscore') bert.compute(predictions=predictions, references=references,lang='en') ...
CLOSED
2021-08-06T15:58:57
2021-08-09T11:16:25
2021-08-09T11:16:25
https://github.com/huggingface/datasets/issues/2765
gagan3012
1
[ "bug" ]
2,763
English wikipedia datasets is not clean
## Describe the bug Wikipedia english dumps contain many wikipedia paragraphs like "References", "Category:" and "See Also" that should not be used for training. ## Steps to reproduce the bug ```python # Sample code to reproduce the bug from datasets import load_dataset w = load_dataset('wikipedia', '20200501.e...
CLOSED
2021-08-05T14:37:24
2023-07-25T17:43:04
2023-07-25T17:43:04
https://github.com/huggingface/datasets/issues/2763
lucadiliello
1
[ "bug" ]
2,762
Add RVL-CDIP dataset
## Adding a Dataset - **Name:** RVL-CDIP - **Description:** The RVL-CDIP (Ryerson Vision Lab Complex Document Information Processing) dataset consists of 400,000 grayscale images in 16 classes, with 25,000 images per class. There are 320,000 training images, 40,000 validation images, and 40,000 test images. The image...
CLOSED
2021-08-05T09:57:05
2022-04-21T17:15:41
2022-04-21T17:15:41
https://github.com/huggingface/datasets/issues/2762
NielsRogge
3
[ "dataset request", "vision" ]
2,761
Error loading C4 realnewslike dataset
## Describe the bug Error loading C4 realnewslike dataset. Validation part mismatch ## Steps to reproduce the bug ```python raw_datasets = load_dataset('c4', 'realnewslike', cache_dir=model_args.cache_dir) ## Expected results success on data loading ## Actual results Downloading: 100%|███████████████████████...
CLOSED
2021-08-05T08:16:58
2021-08-08T19:44:34
2021-08-08T19:44:34
https://github.com/huggingface/datasets/issues/2761
danshirron
4
[ "bug" ]
2,760
Add Nuswide dataset
## Adding a Dataset - **Name:** *NUSWIDE* - **Description:** *[A Real-World Web Image Dataset from National University of Singapore](https://lms.comp.nus.edu.sg/wp-content/uploads/2019/research/nuswide/NUS-WIDE.html)* - **Paper:** *[here](https://lms.comp.nus.edu.sg/wp-content/uploads/2019/research/nuswide/nuswide-c...
OPEN
2021-08-05T03:00:41
2021-12-08T12:06:23
null
https://github.com/huggingface/datasets/issues/2760
shivangibithel
0
[ "dataset request", "vision" ]
2,757
Unexpected type after `concatenate_datasets`
## Describe the bug I am trying to concatenate two `Dataset` using `concatenate_datasets` but it turns out that after concatenation the features are casted from `torch.Tensor` to `list`. It then leads to a weird tensors when trying to convert it to a `DataLoader`. However, if I use each `Dataset` separately everythi...
CLOSED
2021-08-04T07:10:39
2021-08-04T16:01:24
2021-08-04T16:01:23
https://github.com/huggingface/datasets/issues/2757
JulesBelveze
2
[ "bug" ]
2,750
Second concatenation of datasets produces errors
Hi, I am need to concatenate my dataset with others several times, and after I concatenate it for the second time, the features of features (e.g. tags names) are collapsed. This hinders, for instance, the usage of tokenize function with `data.map`. ``` from datasets import load_dataset, concatenate_datasets d...
CLOSED
2021-08-03T10:47:04
2022-01-19T14:23:43
2022-01-19T14:19:05
https://github.com/huggingface/datasets/issues/2750
Aktsvigun
5
[ "bug" ]
2,749
Raise a proper exception when trying to stream a dataset that requires to manually download files
## Describe the bug At least for 'reclor', 'telugu_books', 'turkish_movie_sentiment', 'ubuntu_dialogs_corpus', 'wikihow', trying to `load_dataset` in streaming mode raises a `TypeError` without any detail about why it fails. ## Steps to reproduce the bug ```python from datasets import load_dataset dataset = ...
CLOSED
2021-08-03T10:26:27
2021-08-09T08:53:35
2021-08-04T11:36:30
https://github.com/huggingface/datasets/issues/2749
severo
2
[ "bug" ]
2,746
Cannot load `few-nerd` dataset
## Describe the bug Cannot load `few-nerd` dataset. ## Steps to reproduce the bug ```python from datasets import load_dataset load_dataset('few-nerd', 'supervised') ``` ## Actual results Executing above code will give the following error: ``` Using the latest cached version of the module from /Users...
CLOSED
2021-08-02T22:18:57
2021-11-16T08:51:34
2021-08-03T19:45:43
https://github.com/huggingface/datasets/issues/2746
Mehrad0711
6
[ "bug" ]
2,743
Dataset JSON is incorrect
## Describe the bug The JSON file generated for https://github.com/huggingface/datasets/blob/573f3d35081cee239d1b962878206e9abe6cde91/datasets/journalists_questions/journalists_questions.py is https://github.com/huggingface/datasets/blob/573f3d35081cee239d1b962878206e9abe6cde91/datasets/journalists_questions/dataset...
CLOSED
2021-08-02T13:01:26
2021-08-03T10:06:57
2021-08-03T09:25:33
https://github.com/huggingface/datasets/issues/2743
severo
2
[ "bug" ]
2,742
Improve detection of streamable file types
**Is your feature request related to a problem? Please describe.** ```python from datasets import load_dataset_builder from datasets.utils.streaming_download_manager import StreamingDownloadManager builder = load_dataset_builder("journalists_questions", name="plain_text") builder._split_generators(StreamingDownl...
CLOSED
2021-08-02T12:55:09
2021-11-12T17:18:10
2021-11-12T17:18:10
https://github.com/huggingface/datasets/issues/2742
severo
1
[ "enhancement", "dataset-viewer" ]
2,741
Add Hypersim dataset
## Adding a Dataset - **Name:** Hypersim - **Description:** photorealistic synthetic dataset for holistic indoor scene understanding - **Paper:** *link to the dataset paper if available* - **Data:** https://github.com/apple/ml-hypersim Instructions to add a new dataset can be found [here](https://github.com/hugg...
OPEN
2021-08-02T10:06:50
2021-12-08T12:06:51
null
https://github.com/huggingface/datasets/issues/2741
osanseviero
0
[ "dataset request", "vision" ]
2,737
SacreBLEU update
With the latest release of [sacrebleu](https://github.com/mjpost/sacrebleu), `datasets.metrics.sacrebleu` is broken, and getting error. AttributeError: module 'sacrebleu' has no attribute 'DEFAULT_TOKENIZER' this happens since in new version of sacrebleu there is no `DEFAULT_TOKENIZER`, but sacrebleu.py tries...
CLOSED
2021-07-30T23:53:08
2021-09-22T10:47:41
2021-08-03T04:23:37
https://github.com/huggingface/datasets/issues/2737
devrimcavusoglu
5
[ "bug" ]
2,736
Add Microsoft Building Footprints dataset
## Adding a Dataset - **Name:** Microsoft Building Footprints - **Description:** With the goal to increase the coverage of building footprint data available as open data for OpenStreetMap and humanitarian efforts, we have released millions of building footprints as open data available to download free of charge. - *...
OPEN
2021-07-30T16:17:08
2021-12-08T12:09:03
null
https://github.com/huggingface/datasets/issues/2736
albertvillanova
1
[ "dataset request", "vision" ]
2,735
Add Open Buildings dataset
## Adding a Dataset - **Name:** Open Buildings - **Description:** A dataset of building footprints to support social good applications. Building footprints are useful for a range of important applications, from population estimation, urban planning and humanitarian response, to environmental and climate science....
OPEN
2021-07-30T16:08:39
2021-07-31T05:01:25
null
https://github.com/huggingface/datasets/issues/2735
albertvillanova
0
[ "dataset request" ]
2,730
Update CommonVoice with new release
## Adding a Dataset - **Name:** CommonVoice mid-2021 release - **Description:** more data in CommonVoice: Languages that have increased the most by percentage are Thai (almost 20x growth, from 12 hours to 250 hours), Luganda (almost 9x growth, from 8 to 80), Esperanto (7x growth, from 100 to 840), and Tamil (almost 8...
OPEN
2021-07-29T15:59:59
2021-08-07T16:19:19
null
https://github.com/huggingface/datasets/issues/2730
yjernite
3
[ "dataset request" ]
2,728
Concurrent use of same dataset (already downloaded)
## Describe the bug When launching several jobs at the same time loading the same dataset trigger some errors see (last comments). ## Steps to reproduce the bug export HF_DATASETS_CACHE=/gpfswork/rech/toto/datasets for MODEL in "bert-base-uncased" "roberta-base" "distilbert-base-cased"; do # "bert-base-uncased" ...
OPEN
2021-07-29T14:18:38
2021-08-02T07:25:57
null
https://github.com/huggingface/datasets/issues/2728
PierreColombo
4
[ "bug" ]
2,727
Error in loading the Arabic Billion Words Corpus
## Describe the bug I get `IndexError: list index out of range` when trying to load the `Techreen` and `Almustaqbal` configs of the dataset. ## Steps to reproduce the bug ```python load_dataset("arabic_billion_words", "Techreen") load_dataset("arabic_billion_words", "Almustaqbal") ``` ## Expected results Th...
CLOSED
2021-07-29T12:53:09
2021-07-30T13:03:55
2021-07-30T13:03:55
https://github.com/huggingface/datasets/issues/2727
M-Salti
2
[ "bug" ]
2,724
404 Error when loading remote data files from private repo
## Describe the bug When loading remote data files from a private repo, a 404 error is raised. ## Steps to reproduce the bug ```python url = hf_hub_url("lewtun/asr-preds-test", "preds.jsonl", repo_type="dataset") dset = load_dataset("json", data_files=url, use_auth_token=True) # HTTPError: 404 Client Error: Not...
CLOSED
2021-07-28T14:24:23
2021-07-29T04:58:49
2021-07-28T16:38:01
https://github.com/huggingface/datasets/issues/2724
albertvillanova
3
[ "bug" ]
2,722
Missing cache file
Strangely missing cache file after I restart my program again. `glue_dataset = datasets.load_dataset('glue', 'sst2')` `FileNotFoundError: [Errno 2] No such file or directory: /Users/chris/.cache/huggingface/datasets/glue/sst2/1.0.0/dacbe3125aa31d7f70367a07a8a9e72a5a0bfeb5fc42e75c9db75b96d6053ad/dataset_info.json...
CLOSED
2021-07-28T03:52:07
2022-03-21T08:27:51
2022-03-21T08:27:51
https://github.com/huggingface/datasets/issues/2722
PosoSAgapo
2
[ "bug" ]
2,719
Use ETag in streaming mode to detect resource updates
**Is your feature request related to a problem? Please describe.** I want to cache data I generate from processing a dataset I've loaded in streaming mode, but I've currently no way to know if the remote data has been updated or not, thus I don't know when to invalidate my cache. **Describe the solution you'd lik...
OPEN
2021-07-27T14:17:09
2021-10-22T09:36:08
null
https://github.com/huggingface/datasets/issues/2719
severo
0
[ "enhancement", "dataset-viewer" ]
2,716
Calling shuffle on IterableDataset will disable batching in case any functions were mapped
When using dataset in streaming mode, if one applies `shuffle` method on the dataset and `map` method for which `batched=True` than the batching operation will not happen, instead `batched` will be set to `False` I did RCA on the dataset codebase, the problem is emerging from [this line of code](https://github.com/h...
CLOSED
2021-07-26T13:24:59
2021-07-26T18:04:43
2021-07-26T18:04:43
https://github.com/huggingface/datasets/issues/2716
amankhandelia
3
[ "bug" ]