id
int64
599M
3.29B
url
stringlengths
58
61
html_url
stringlengths
46
51
number
int64
1
7.72k
title
stringlengths
1
290
state
stringclasses
2 values
comments
int64
0
70
created_at
timestamp[s]date
2020-04-14 10:18:02
2025-08-05 09:28:51
updated_at
timestamp[s]date
2020-04-27 16:04:17
2025-08-05 11:39:56
closed_at
timestamp[s]date
2020-04-14 12:01:40
2025-08-01 05:15:45
user_login
stringlengths
3
26
labels
listlengths
0
4
body
stringlengths
0
228k
is_pull_request
bool
2 classes
1,042,887,291
https://api.github.com/repos/huggingface/datasets/issues/3200
https://github.com/huggingface/datasets/pull/3200
3,200
Catch token invalid error in CI
closed
0
2021-11-02T21:56:26
2021-11-03T09:41:08
2021-11-03T09:41:08
lhoestq
[]
The staging back end sometimes returns invalid token errors when trying to delete a repo. I modified the fixture in the test that uses staging to ignore this error
true
1,042,860,935
https://api.github.com/repos/huggingface/datasets/issues/3199
https://github.com/huggingface/datasets/pull/3199
3,199
Bump huggingface_hub
closed
0
2021-11-02T21:29:10
2021-11-14T01:48:11
2021-11-02T21:41:40
lhoestq
[]
huggingface_hub just released its first minor version, so we need to update the dependency It was supposed to be part of 1.15.0 but I'm adding it for 1.15.1
true
1,042,679,548
https://api.github.com/repos/huggingface/datasets/issues/3198
https://github.com/huggingface/datasets/pull/3198
3,198
Add Multi-Lingual LibriSpeech
closed
0
2021-11-02T18:23:59
2021-11-04T17:09:22
2021-11-04T17:09:22
patrickvonplaten
[]
Add https://www.openslr.org/94/
true
1,042,541,127
https://api.github.com/repos/huggingface/datasets/issues/3197
https://github.com/huggingface/datasets/pull/3197
3,197
Fix optimized encoding for arrays
closed
0
2021-11-02T15:55:53
2021-11-02T19:12:24
2021-11-02T19:12:23
lhoestq
[]
Hi ! #3124 introduced a regression that made the benchmarks CI fail because of a bad array comparison when checking the first encoded element. This PR fixes this by making sure that encoding is applied on all sequence types except lists. cc @eladsegal fyi (no big deal)
true
1,042,223,913
https://api.github.com/repos/huggingface/datasets/issues/3196
https://github.com/huggingface/datasets/pull/3196
3,196
QOL improvements: auto-flatten_indices and desc in map calls
closed
0
2021-11-02T11:28:50
2021-11-02T15:41:09
2021-11-02T15:41:08
mariosasko
[]
This PR: * automatically calls `flatten_indices` where needed: in `unique` and `save_to_disk` to avoid saving the indices file * adds descriptions to the map calls Fix #3040
true
1,042,204,044
https://api.github.com/repos/huggingface/datasets/issues/3195
https://github.com/huggingface/datasets/pull/3195
3,195
More robust `None` handling
closed
5
2021-11-02T11:15:10
2021-12-09T14:27:00
2021-12-09T14:26:58
mariosasko
[]
PyArrow has explicit support for `null` values, so it makes sense to support Nones on our side as well. [Colab Notebook with examples](https://colab.research.google.com/drive/1zcK8BnZYnRe3Ao2271u1T19ag9zLEiy3?usp=sharing) Changes: * allow None for the features types with special encoding (`ClassLabel, Translatio...
true
1,041,999,535
https://api.github.com/repos/huggingface/datasets/issues/3194
https://github.com/huggingface/datasets/pull/3194
3,194
Update link to Datasets Tagging app in Spaces
closed
0
2021-11-02T08:13:50
2021-11-08T10:36:23
2021-11-08T10:36:22
albertvillanova
[]
Fix #3193.
true
1,041,971,117
https://api.github.com/repos/huggingface/datasets/issues/3193
https://github.com/huggingface/datasets/issues/3193
3,193
Update link to datasets-tagging app
closed
0
2021-11-02T07:39:59
2021-11-08T10:36:22
2021-11-08T10:36:22
albertvillanova
[]
Once datasets-tagging has been transferred to Spaces: - huggingface/datasets-tagging#22 We should update the link in Datasets.
false
1,041,308,086
https://api.github.com/repos/huggingface/datasets/issues/3192
https://github.com/huggingface/datasets/issues/3192
3,192
Multiprocessing filter/map (tests) not working on Windows
open
0
2021-11-01T15:36:08
2021-11-01T15:57:03
null
BramVanroy
[ "bug" ]
While running the tests, I found that the multiprocessing examples fail on Windows, or rather they do not complete: they cause a deadlock. I haven't dug deep into it, but they do not seem to work as-is. I currently have no time to tests this in detail but at least the tests seem not to run correctly (deadlocking). #...
false
1,041,225,111
https://api.github.com/repos/huggingface/datasets/issues/3191
https://github.com/huggingface/datasets/issues/3191
3,191
Dataset viewer issue for '*compguesswhat*'
closed
4
2021-11-01T14:16:49
2022-09-12T08:02:29
2022-09-12T08:02:29
benotti
[ "streaming" ]
## Dataset viewer issue for '*compguesswhat*' **Link:** https://huggingface.co/datasets/compguesswhat File not found Am I the one who added this dataset ? No
false
1,041,153,631
https://api.github.com/repos/huggingface/datasets/issues/3190
https://github.com/huggingface/datasets/issues/3190
3,190
combination of shuffle and filter results in a bug
closed
3
2021-11-01T13:07:29
2021-11-02T10:50:49
2021-11-02T10:50:49
rabeehk
[ "bug" ]
## Describe the bug Hi, I would like to shuffle a dataset, then filter it based on each existing label. however, the combination of `filter`, `shuffle` seems to results in a bug. In the minimal example below, as you see in the filtered results, the filtered labels are not unique, meaning filter has not worked. Any su...
false
1,041,044,986
https://api.github.com/repos/huggingface/datasets/issues/3189
https://github.com/huggingface/datasets/issues/3189
3,189
conll2003 incorrect label explanation
closed
1
2021-11-01T11:03:30
2021-11-09T10:40:58
2021-11-09T10:40:58
BramVanroy
[ "bug" ]
In the [conll2003](https://huggingface.co/datasets/conll2003#data-fields) README, the labels are described as follows > - `id`: a `string` feature. > - `tokens`: a `list` of `string` features. > - `pos_tags`: a `list` of classification labels, with possible values including `"` (0), `''` (1), `#` (2), `$` (3), `(`...
false
1,040,980,712
https://api.github.com/repos/huggingface/datasets/issues/3188
https://github.com/huggingface/datasets/issues/3188
3,188
conll2002 issues
closed
4
2021-11-01T09:49:24
2021-11-15T13:50:59
2021-11-12T17:18:11
BramVanroy
[ "dataset-viewer" ]
**Link:** https://huggingface.co/datasets/conll2002 The dataset viewer throws a server error when trying to preview the dataset. ``` Message: Extraction protocol 'train' for file at 'https://raw.githubusercontent.com/teropa/nlp/master/resources/corpora/conll2002/esp.train' is not implemented yet ``` I...
false
1,040,412,869
https://api.github.com/repos/huggingface/datasets/issues/3187
https://github.com/huggingface/datasets/pull/3187
3,187
Add ChrF(++) (as implemented in sacrebleu)
closed
0
2021-10-31T08:53:58
2021-11-02T14:50:50
2021-11-02T14:31:26
BramVanroy
[]
Similar to my [PR for TER](https://github.com/huggingface/datasets/pull/3153), it feels only right to also include ChrF and friends. These are present in Sacrebleu and are therefore very similar to implement as TER and sacrebleu. I tested the implementation with sacrebleu's tests to verify. You can try this below for y...
true
1,040,369,397
https://api.github.com/repos/huggingface/datasets/issues/3186
https://github.com/huggingface/datasets/issues/3186
3,186
Dataset viewer for nli_tr
closed
6
2021-10-31T03:56:33
2022-09-12T09:15:34
2022-09-12T08:43:09
e-budur
[ "streaming" ]
## Dataset viewer issue for '*nli_tr*' **Link:** https://huggingface.co/datasets/nli_tr Hello, Thank you for the new dataset preview feature that will help the users to view the datasets online. We just noticed that the dataset viewer widget in the `nli_tr` dataset shows the error below. The error must be d...
false
1,040,291,961
https://api.github.com/repos/huggingface/datasets/issues/3185
https://github.com/huggingface/datasets/issues/3185
3,185
7z dataset preview not implemented?
closed
2
2021-10-30T20:18:27
2022-04-12T11:48:16
2022-04-12T11:48:07
Kirili4ik
[ "dataset-viewer" ]
## Dataset viewer issue for dataset 'samsum' **Link:** https://huggingface.co/datasets/samsum Server Error Status code: 400 Exception: NotImplementedError Message: Extraction protocol '7z' for file at 'https://arxiv.org/src/1911.12237v2/anc/corpus.7z' is not implemented yet
false
1,040,114,102
https://api.github.com/repos/huggingface/datasets/issues/3184
https://github.com/huggingface/datasets/pull/3184
3,184
RONEC v2
closed
2
2021-10-30T10:50:03
2021-11-02T16:02:23
2021-11-02T16:02:22
dumitrescustefan
[]
Hi, as we've recently finished with the new RONEC (Romanian Named Entity Corpus), we'd like to update the dataset here as well. It's actually essential as links to V1 are no longer valid. In reality we'd like to replace completely v1, as v2 is a full re-annotation of v1 with additional data (up to 2x size vs v1). ...
true
1,039,761,120
https://api.github.com/repos/huggingface/datasets/issues/3183
https://github.com/huggingface/datasets/pull/3183
3,183
Add missing docstring to DownloadConfig
closed
0
2021-10-29T16:56:35
2021-11-02T10:25:38
2021-11-02T10:25:37
mariosasko
[]
Document the `use_etag` and `num_proc` attributes in `DownloadConig`.
true
1,039,739,606
https://api.github.com/repos/huggingface/datasets/issues/3182
https://github.com/huggingface/datasets/pull/3182
3,182
Don't memoize strings when hashing since two identical strings may have different python ids
closed
1
2021-10-29T16:26:17
2021-11-02T09:35:38
2021-11-02T09:35:37
lhoestq
[]
When hashing an object that has several times the same string, the hashing could return a different hash if the identical strings share the same python `id()` or not. Here is an example code that shows how the issue can affect the caching: ```python import json import pyarrow as pa from datasets.features import ...
true
1,039,682,097
https://api.github.com/repos/huggingface/datasets/issues/3181
https://github.com/huggingface/datasets/issues/3181
3,181
`None` converted to `"None"` when loading a dataset
closed
9
2021-10-29T15:23:53
2021-12-11T01:16:40
2021-12-09T14:26:57
eladsegal
[ "bug" ]
## Describe the bug When loading a dataset `None` values of the type `NoneType` are converted to `'None'` of the type `str`. ## Steps to reproduce the bug ```python from datasets import load_dataset qasper = load_dataset("qasper", split="train", download_mode="reuse_cache_if_exists") print(qasper[60]["full_text...
false
1,039,641,316
https://api.github.com/repos/huggingface/datasets/issues/3180
https://github.com/huggingface/datasets/pull/3180
3,180
fix label mapping
closed
3
2021-10-29T14:42:24
2021-11-02T13:41:07
2021-11-02T10:37:12
VictorSanh
[]
Fixing label mapping for hlgd. 0 correponds to same event and 1 corresponds to different event <img width="642" alt="Capture d’écran 2021-10-29 à 10 39 58 AM" src="https://user-images.githubusercontent.com/16107619/139454810-1f225e3d-ad48-44a8-b8b1-9205c9533839.png"> <img width="638" alt="Capture d’écran 2021-10-...
true
1,039,571,928
https://api.github.com/repos/huggingface/datasets/issues/3179
https://github.com/huggingface/datasets/issues/3179
3,179
Cannot load dataset when the config name is "special"
closed
1
2021-10-29T13:30:47
2021-10-29T13:35:21
2021-10-29T13:35:21
severo
[ "bug", "dataset-viewer" ]
## Describe the bug After https://github.com/huggingface/datasets/pull/3159, we can get the config name of "Check/region_1", which is "Check___region_1". But now we cannot load the dataset (not sure it's related to the above PR though). It's the case for all the similar datasets, listed in https://github.com/hugg...
false
1,039,539,076
https://api.github.com/repos/huggingface/datasets/issues/3178
https://github.com/huggingface/datasets/issues/3178
3,178
"Property couldn't be hashed properly" even though fully picklable
closed
26
2021-10-29T12:56:09
2024-08-19T13:03:49
2022-11-02T17:18:43
BramVanroy
[ "bug" ]
## Describe the bug I am trying to tokenize a dataset with spaCy. I found that no matter what I do, the spaCy language object (`nlp`) prevents `datasets` from pickling correctly - or so the warning says - even though manually pickling is no issue. It should not be an issue either, since spaCy objects are picklable. ...
false
1,039,487,780
https://api.github.com/repos/huggingface/datasets/issues/3177
https://github.com/huggingface/datasets/issues/3177
3,177
More control over TQDM when using map/filter with multiple processes
closed
2
2021-10-29T11:56:16
2023-02-13T20:16:40
2023-02-13T20:16:40
BramVanroy
[ "enhancement" ]
It would help with the clutter in my terminal if tqdm is only shown for rank 0 when using `num_proces>0` in the map and filter methods of datasets. ```python dataset.map(lambda examples: tokenize(examples["text"]), batched=True, num_proc=6) ``` The above snippet leads to a lot of TQDM bars and depending on your...
false
1,039,068,312
https://api.github.com/repos/huggingface/datasets/issues/3176
https://github.com/huggingface/datasets/pull/3176
3,176
OpenSLR dataset: update generate_examples to properly extract data for SLR83
closed
1
2021-10-29T00:59:27
2021-11-04T16:20:45
2021-10-29T10:04:09
tyrius02
[]
Fixed #3168. The SLR38 indices are CSV files and there wasn't any code in openslr.py to process these files properly. The end result was an empty table. I've added code to properly process these CSV files.
true
1,038,945,271
https://api.github.com/repos/huggingface/datasets/issues/3175
https://github.com/huggingface/datasets/pull/3175
3,175
Add docs for `to_tf_dataset`
closed
2
2021-10-28T20:55:22
2021-11-03T15:39:36
2021-11-03T10:07:23
stevhliu
[ "documentation" ]
This PR adds some documentation for new features released in v1.13.0, with the main addition being `to_tf_dataset`: - Show how to use `to_tf_dataset` in the tutorial, and move `set_format(type='tensorflow'...)` to the Process section (let me know if I'm missing anything @Rocketknight1 😅). - Add an example for load...
true
1,038,427,245
https://api.github.com/repos/huggingface/datasets/issues/3174
https://github.com/huggingface/datasets/pull/3174
3,174
Asserts replaced by exceptions (huggingface#3171)
closed
1
2021-10-28T11:55:45
2021-11-06T06:35:32
2021-10-29T13:08:43
joseporiolayats
[]
I've replaced two asserts with their proper exceptions following the guidelines described in issue #3171 by following the contributing guidelines. PS: This is one of my first PRs, hoping I don't break anything!
true
1,038,404,300
https://api.github.com/repos/huggingface/datasets/issues/3173
https://github.com/huggingface/datasets/pull/3173
3,173
Fix issue with filelock filename being too long on encrypted filesystems
closed
0
2021-10-28T11:28:57
2021-10-29T09:42:24
2021-10-29T09:42:24
mariosasko
[]
Infer max filename length in filelock on Unix-like systems. Should fix problems on encrypted filesystems such as eCryptfs. Fix #2924 cc: @lmmx
true
1,038,351,587
https://api.github.com/repos/huggingface/datasets/issues/3172
https://github.com/huggingface/datasets/issues/3172
3,172
`SystemError 15` thrown in `Dataset.__del__` when using `Dataset.map()` with `num_proc>1`
closed
12
2021-10-28T10:29:00
2024-04-02T18:13:21
2021-11-03T11:26:10
vlievin
[ "bug" ]
## Describe the bug I use `datasets.map` to preprocess some data in my application. The error `SystemError 15` is thrown at the end of the execution of `Dataset.map()` (only with `num_proc>1`. Traceback included bellow. The exception is raised only when the code runs within a specific context. Despite ~10h spent ...
false
1,037,728,059
https://api.github.com/repos/huggingface/datasets/issues/3171
https://github.com/huggingface/datasets/issues/3171
3,171
Raise exceptions instead of using assertions for control flow
closed
4
2021-10-27T18:26:52
2021-12-23T16:40:37
2021-12-23T16:40:37
mariosasko
[ "good first issue" ]
Motivated by https://github.com/huggingface/transformers/issues/12789 in Transformers, one welcoming change would be replacing assertions with proper exceptions. The only type of assertions we should keep are those used as sanity checks. Currently, there is a total of 87 files with the `assert` statements (located u...
false
1,037,601,926
https://api.github.com/repos/huggingface/datasets/issues/3170
https://github.com/huggingface/datasets/pull/3170
3,170
Preserve ordering in `zip_dict`
closed
0
2021-10-27T16:07:30
2021-10-29T13:09:37
2021-10-29T13:09:37
mariosasko
[]
Replace `set` with the `unique_values` generator in `zip_dict`. This PR fixes the problem with the different ordering of the example keys across different Python sessions caused by the `zip_dict` call in `Features.decode_example`.
true
1,036,773,357
https://api.github.com/repos/huggingface/datasets/issues/3169
https://github.com/huggingface/datasets/pull/3169
3,169
Configurable max filename length in file locks
closed
2
2021-10-26T21:52:55
2021-10-28T16:14:14
2021-10-28T16:14:13
lmmx
[]
Resolve #2924 (https://github.com/huggingface/datasets/issues/2924#issuecomment-952330956) wherein the assumption of file lock maximum filename length to be 255 raises an OSError on encrypted drives (ecryptFS on Linux uses part of the lower filename, reducing the maximum filename size to 143). Allowing this limit to be...
true
1,036,673,263
https://api.github.com/repos/huggingface/datasets/issues/3168
https://github.com/huggingface/datasets/issues/3168
3,168
OpenSLR/83 is empty
closed
3
2021-10-26T19:42:21
2021-10-29T10:04:09
2021-10-29T10:04:09
tyrius02
[ "bug" ]
## Describe the bug As the summary says, openslr / SLR83 / train is empty. The dataset returned after loading indicates there are **zero** rows. The correct number should be **17877**. ## Steps to reproduce the bug ```python import datasets datasets.load_dataset('openslr', 'SLR83') ``` ## Expected resul...
false
1,036,488,992
https://api.github.com/repos/huggingface/datasets/issues/3167
https://github.com/huggingface/datasets/issues/3167
3,167
bookcorpusopen no longer works
closed
3
2021-10-26T16:06:15
2021-11-17T15:53:46
2021-11-17T15:53:46
lucadiliello
[ "bug" ]
## Describe the bug When using the latest version of datasets (1.14.0), I cannot use the `bookcorpusopen` dataset. The process blocks always around `9924 examples [00:06, 1439.61 examples/s]` when preparing the dataset. I also noticed that after half an hour the process is automatically killed because of the RAM usa...
false
1,036,450,283
https://api.github.com/repos/huggingface/datasets/issues/3166
https://github.com/huggingface/datasets/pull/3166
3,166
Deprecate prepare_module
closed
1
2021-10-26T15:28:24
2021-11-05T09:27:37
2021-11-05T09:27:36
albertvillanova
[]
In version 1.13, `prepare_module` was deprecated. This PR adds a deprecation warning and removes it from all the library, using `dataset_module_factory` or `metric_module_factory` instead. Fix #3165.
true
1,036,448,998
https://api.github.com/repos/huggingface/datasets/issues/3165
https://github.com/huggingface/datasets/issues/3165
3,165
Deprecate prepare_module
closed
0
2021-10-26T15:27:15
2021-11-05T09:27:36
2021-11-05T09:27:36
albertvillanova
[]
In version 1.13, `prepare_module` was deprecated. Add deprecation warning and remove its usage from all the library.
false
1,035,662,830
https://api.github.com/repos/huggingface/datasets/issues/3164
https://github.com/huggingface/datasets/issues/3164
3,164
Add raw data files to the Hub with GitHub LFS for canonical dataset
closed
3
2021-10-25T23:28:21
2021-10-30T19:54:51
2021-10-30T19:54:51
zlucia
[]
I'm interested in sharing the CaseHOLD dataset (https://arxiv.org/abs/2104.08671) as a canonical dataset on the HuggingFace Hub and would like to add the raw data files to the Hub with GitHub LFS, since it seems like a more sustainable long term storage solution, compared to other storage solutions available to my team...
false
1,035,475,061
https://api.github.com/repos/huggingface/datasets/issues/3163
https://github.com/huggingface/datasets/pull/3163
3,163
Add Image feature
closed
14
2021-10-25T19:07:48
2021-12-30T06:37:21
2021-12-06T17:49:02
mariosasko
[]
Adds the Image feature. This feature is heavily inspired by the recently added Audio feature (#2324). Currently, this PR is pretty simple. Some considerations that need further discussion: * I've decided to use `Pillow`/`PIL` as the image decoding library. Another candidate I considered is `torchvision`, mostly bec...
true
1,035,462,136
https://api.github.com/repos/huggingface/datasets/issues/3162
https://github.com/huggingface/datasets/issues/3162
3,162
`datasets-cli test` should work with datasets without scripts
open
5
2021-10-25T18:52:30
2021-11-25T16:04:29
null
sashavor
[ "enhancement" ]
It would be really useful to be able to run `datasets-cli test`for datasets that don't have scripts attached to them (whether the datasets are private or not). I wasn't able to run the script for a private test dataset that I had created on the hub (https://huggingface.co/datasets/huggingface/DataMeasurementsTest/t...
false
1,035,444,292
https://api.github.com/repos/huggingface/datasets/issues/3161
https://github.com/huggingface/datasets/pull/3161
3,161
Add riddle_sense dataset
closed
2
2021-10-25T18:30:56
2021-11-04T14:01:15
2021-11-04T14:01:15
ziyiwu9494
[]
Adding a new dataset for QA with riddles. I'm confused about the tagging process because it looks like the streamlit app loads data from the current repo, so is it something that should be done after merging or off my fork?
true
1,035,274,640
https://api.github.com/repos/huggingface/datasets/issues/3160
https://github.com/huggingface/datasets/pull/3160
3,160
Better error msg if `len(predictions)` doesn't match `len(references)` in metrics
closed
2
2021-10-25T15:25:05
2021-11-05T11:44:59
2021-11-05T09:31:02
mariosasko
[]
Improve the error message in `Metric.add_batch` if `len(predictions)` doesn't match `len(references)`. cc: @BramVanroy (feel free to test this code on your examples and review this PR)
true
1,035,174,560
https://api.github.com/repos/huggingface/datasets/issues/3159
https://github.com/huggingface/datasets/pull/3159
3,159
Make inspect.get_dataset_config_names always return a non-empty list
closed
4
2021-10-25T13:59:43
2021-10-29T13:14:37
2021-10-28T05:44:49
albertvillanova
[]
Make all named configs cases, so that no special unnamed config case needs to be handled differently. Fix #3135.
true
1,035,158,070
https://api.github.com/repos/huggingface/datasets/issues/3158
https://github.com/huggingface/datasets/pull/3158
3,158
Fix string encoding for Value type
closed
1
2021-10-25T13:44:13
2021-10-25T14:12:06
2021-10-25T14:12:05
lhoestq
[]
Some metrics have `string` features but currently it fails if users pass integers instead. Indeed feature encoding that handles the conversion of the user's objects to the right python type is missing a case for `string`, while it already works as expected for integers, floats and booleans Here is an example code th...
true
1,034,775,165
https://api.github.com/repos/huggingface/datasets/issues/3157
https://github.com/huggingface/datasets/pull/3157
3,157
Fixed: duplicate parameter and missing parameter in docstring
closed
0
2021-10-25T07:26:00
2021-10-25T14:02:19
2021-10-25T14:02:19
PanQiWei
[]
changing duplicate parameter `data_files` in `DatasetBuilder.__init__` to the missing parameter `data_dir`
true
1,034,468,757
https://api.github.com/repos/huggingface/datasets/issues/3155
https://github.com/huggingface/datasets/issues/3155
3,155
Illegal instruction (core dumped) at datasets import
closed
1
2021-10-24T17:21:36
2021-11-18T19:07:04
2021-11-18T19:07:03
hacobe
[ "bug" ]
## Describe the bug I install datasets using conda and when I import datasets I get: "Illegal instruction (core dumped)" ## Steps to reproduce the bug ``` conda create --prefix path/to/env conda activate path/to/env conda install -c huggingface -c conda-forge datasets # exits with output "Illegal instruction...
false
1,034,361,806
https://api.github.com/repos/huggingface/datasets/issues/3154
https://github.com/huggingface/datasets/issues/3154
3,154
Sacrebleu unexpected behaviour/requirement for data format
closed
2
2021-10-24T08:55:33
2021-10-31T09:08:32
2021-10-31T09:08:31
BramVanroy
[ "bug" ]
## Describe the bug When comparing with the original `sacrebleu` implementation, the `datasets` implementation does some strange things that I do not quite understand. This issue was triggered when I was trying to implement TER and found the datasets implementation of BLEU [here](https://github.com/huggingface/dataset...
false
1,034,179,198
https://api.github.com/repos/huggingface/datasets/issues/3153
https://github.com/huggingface/datasets/pull/3153
3,153
Add TER (as implemented in sacrebleu)
closed
1
2021-10-23T14:26:45
2021-11-02T11:04:11
2021-11-02T11:04:11
BramVanroy
[]
Implements TER (Translation Edit Rate) as per its implementation in sacrebleu. Sacrebleu for BLEU scores is already implemented in `datasets` so I thought this would be a nice addition. I started from the sacrebleu implementation, as the two metrics have a lot in common. Verified with sacrebleu's [testing suite](...
true
1,034,039,379
https://api.github.com/repos/huggingface/datasets/issues/3152
https://github.com/huggingface/datasets/pull/3152
3,152
Fix some typos in the documentation
closed
0
2021-10-23T01:38:35
2021-10-25T14:27:36
2021-10-25T14:03:48
h4iku
[]
null
true
1,033,890,501
https://api.github.com/repos/huggingface/datasets/issues/3151
https://github.com/huggingface/datasets/pull/3151
3,151
Re-add faiss to windows testing suite
closed
0
2021-10-22T19:34:29
2021-11-02T10:47:34
2021-11-02T10:06:03
BramVanroy
[]
In recent versions, `faiss-cpu` seems to be available for Windows as well. See the [PyPi page](https://pypi.org/project/faiss-cpu/#files) to confirm. We can therefore included it for Windows in the setup file. At first tests didn't pass due to problems with permissions as caused by `NamedTemporaryFile` on Windows. T...
true
1,033,831,530
https://api.github.com/repos/huggingface/datasets/issues/3150
https://github.com/huggingface/datasets/issues/3150
3,150
Faiss _is_ available on Windows
closed
1
2021-10-22T18:07:16
2021-11-02T10:06:03
2021-11-02T10:06:03
BramVanroy
[]
In the setup file, I find the following: https://github.com/huggingface/datasets/blob/87c71b9c29a40958973004910f97e4892559dfed/setup.py#L171 However, FAISS does install perfectly fine on Windows on my system. You can also confirm this on the [PyPi page](https://pypi.org/project/faiss-cpu/#files), where Windows wh...
false
1,033,747,625
https://api.github.com/repos/huggingface/datasets/issues/3149
https://github.com/huggingface/datasets/pull/3149
3,149
Add CMU Hinglish DoG Dataset for MT
closed
2
2021-10-22T16:17:25
2021-11-15T11:36:42
2021-11-15T10:27:45
Ishan-Kumar2
[]
Address part of #2841 Added the CMU Hinglish DoG Dataset as in GLUECoS. Added it as a seperate dataset as unlike other tasks of GLUE CoS this can't be evaluated for a BERT like model. Consists of parallel dataset between Hinglish (Hindi-English) and English, can be used for Machine Translation between the two. ...
true
1,033,685,208
https://api.github.com/repos/huggingface/datasets/issues/3148
https://github.com/huggingface/datasets/issues/3148
3,148
Streaming with num_workers != 0
closed
4
2021-10-22T15:07:17
2022-07-04T12:14:58
2022-07-04T12:14:58
justheuristic
[ "bug" ]
## Describe the bug When using dataset streaming with pytorch DataLoader, the setting num_workers to anything other than 0 causes the code to freeze forever before yielding the first batch. The code owner is likely @lhoestq ## Steps to reproduce the bug For your convenience, we've prepped a colab notebook th...
false
1,033,607,659
https://api.github.com/repos/huggingface/datasets/issues/3147
https://github.com/huggingface/datasets/pull/3147
3,147
Fix CLI test to ignore verfications when saving infos
closed
0
2021-10-22T13:52:46
2021-10-27T08:01:50
2021-10-27T08:01:49
albertvillanova
[]
Fix #3146.
true
1,033,605,947
https://api.github.com/repos/huggingface/datasets/issues/3146
https://github.com/huggingface/datasets/issues/3146
3,146
CLI test command throws NonMatchingSplitsSizesError when saving infos
closed
0
2021-10-22T13:50:53
2021-10-27T08:01:49
2021-10-27T08:01:49
albertvillanova
[ "bug" ]
When trying to generate a datset JSON metadata, a `NonMatchingSplitsSizesError` is thrown: ``` $ datasets-cli test datasets/arabic_billion_words --save_infos --all_configs Testing builder 'Alittihad' (1/10) Downloading and preparing dataset arabic_billion_words/Alittihad (download: 332.13 MiB, generated: Unknown si...
false
1,033,580,009
https://api.github.com/repos/huggingface/datasets/issues/3145
https://github.com/huggingface/datasets/issues/3145
3,145
[when Image type will exist] provide a way to get the data as binary + filename
closed
4
2021-10-22T13:23:49
2021-12-22T11:05:37
2021-12-22T11:05:36
severo
[ "enhancement", "dataset-viewer" ]
**Is your feature request related to a problem? Please describe.** When a dataset cell contains a value of type Image (be it from a remote URL, an Array2D/3D, or any other way to represent images), I want to be able to write the image to the disk, with the correct filename, and optionally to know its mimetype, in or...
false
1,033,573,760
https://api.github.com/repos/huggingface/datasets/issues/3144
https://github.com/huggingface/datasets/issues/3144
3,144
Infer the features if missing
closed
1
2021-10-22T13:17:33
2022-09-08T08:23:10
2022-09-08T08:23:10
severo
[ "enhancement", "dataset-viewer" ]
**Is your feature request related to a problem? Please describe.** Some datasets, in particular community datasets, have no info file, thus no features. **Describe the solution you'd like** If a dataset has no features, the first loaded data (5-10 rows) could be used to infer the type. Related: `datasets` w...
false
1,033,569,655
https://api.github.com/repos/huggingface/datasets/issues/3143
https://github.com/huggingface/datasets/issues/3143
3,143
Provide a way to check if the features (in info) match with the data of a split
open
1
2021-10-22T13:13:36
2021-10-22T13:17:56
null
severo
[ "enhancement", "dataset-viewer" ]
**Is your feature request related to a problem? Please describe.** I understand that currently the data loaded has not always the type described in the info features **Describe the solution you'd like** Provide a way to check if the rows have the type described by info features **Describe alternatives you'v...
false
1,033,566,034
https://api.github.com/repos/huggingface/datasets/issues/3142
https://github.com/huggingface/datasets/issues/3142
3,142
Provide a way to write a streamed dataset to the disk
open
2
2021-10-22T13:09:53
2024-01-12T07:26:43
null
severo
[ "enhancement", "dataset-viewer" ]
**Is your feature request related to a problem? Please describe.** The streaming mode allows to get the 100 first rows of a dataset very quickly. But it does not cache the answer, so a posterior call to get the same 100 rows will send a request to the server again and again. **Describe the solution you'd like** ...
false
1,033,555,910
https://api.github.com/repos/huggingface/datasets/issues/3141
https://github.com/huggingface/datasets/pull/3141
3,141
Fix caching bugs
closed
0
2021-10-22T12:59:25
2021-10-22T20:52:08
2021-10-22T13:47:05
mariosasko
[]
This PR fixes some caching bugs (most likely introduced in the latest refactor): * remove ")" added by accident in the dataset dir name * correctly pass the namespace kwargs in `CachedDatasetModuleFactory` * improve the warning message if `HF_DATASETS_OFFLINE is `True`
true
1,033,524,079
https://api.github.com/repos/huggingface/datasets/issues/3139
https://github.com/huggingface/datasets/issues/3139
3,139
Fix file/directory deletion on Windows
open
0
2021-10-22T12:22:08
2021-10-22T12:22:08
null
mariosasko
[ "bug" ]
Currently, on Windows, some attempts to delete a dataset file/directory will fail with the `PerimissionError`. Examples: - download a dataset, then force redownload it in the same session while keeping a reference to the downloaded dataset ```python from datasets import load_dataset dset = load_dataset("sst", s...
false
1,033,379,997
https://api.github.com/repos/huggingface/datasets/issues/3138
https://github.com/huggingface/datasets/issues/3138
3,138
More fine-grained taxonomy of error types
open
1
2021-10-22T09:35:29
2022-09-20T13:04:42
null
severo
[ "enhancement", "dataset-viewer" ]
**Is your feature request related to a problem? Please describe.** Exceptions like `FileNotFoundError` can be raised by different parts of the code, and it's hard to detect which one did **Describe the solution you'd like** Give a specific exception type for every group of similar errors **Describe alternat...
false
1,033,363,652
https://api.github.com/repos/huggingface/datasets/issues/3137
https://github.com/huggingface/datasets/pull/3137
3,137
Fix numpy deprecation warning for ragged tensors
closed
1
2021-10-22T09:17:46
2021-10-22T16:04:15
2021-10-22T16:04:14
lhoestq
[]
Numpy shows a deprecation warning when we call `np.array` on a list of ragged tensors without specifying the `dtype`. If their shapes match, the tensors can be collated together, otherwise the resulting array should have `dtype=np.object`. Fix #3084 cc @Rocketknight1
true
1,033,360,396
https://api.github.com/repos/huggingface/datasets/issues/3136
https://github.com/huggingface/datasets/pull/3136
3,136
Fix script of Arabic Billion Words dataset to return all data
closed
0
2021-10-22T09:14:24
2021-10-22T13:28:41
2021-10-22T13:28:40
albertvillanova
[]
The script has a bug and only parses and generates a portion of the entire dataset. This PR fixes the loading script so that is properly parses the entire dataset. Current implementation generates the same number of examples as reported in the [original paper](https://arxiv.org/abs/1611.04033) for all configurat...
true
1,033,294,299
https://api.github.com/repos/huggingface/datasets/issues/3135
https://github.com/huggingface/datasets/issues/3135
3,135
Make inspect.get_dataset_config_names always return a non-empty list of configs
closed
2
2021-10-22T08:02:50
2021-10-28T05:44:49
2021-10-28T05:44:49
severo
[ "enhancement", "dataset-viewer" ]
**Is your feature request related to a problem? Please describe.** Currently, some datasets have a configuration, while others don't. It would be simpler for the user to always have configuration names to refer to **Describe the solution you'd like** In that sense inspect.get_dataset_config_names should always...
false
1,033,251,755
https://api.github.com/repos/huggingface/datasets/issues/3134
https://github.com/huggingface/datasets/issues/3134
3,134
Couldn't reach https://raw.githubusercontent.com/huggingface/datasets/1.11.0/metrics/rouge/rouge.py
closed
4
2021-10-22T07:07:52
2023-09-14T01:19:45
2022-01-19T14:02:31
yanan1116
[ "bug" ]
datasets version: 1.12.1 `metric = datasets.load_metric('rouge')` The error: > ConnectionError Traceback (most recent call last) > <ipython-input-3-dd10a0c5212f> in <module> > ----> 1 metric = datasets.load_metric('rouge') > > /usr/local/lib/python3.6/dist-packages/datasets/load....
false
1,032,511,710
https://api.github.com/repos/huggingface/datasets/issues/3133
https://github.com/huggingface/datasets/pull/3133
3,133
Support Audio feature in streaming mode
closed
0
2021-10-21T13:37:57
2021-11-12T14:13:05
2021-11-12T14:13:04
albertvillanova
[]
Fix #3132.
true
1,032,505,430
https://api.github.com/repos/huggingface/datasets/issues/3132
https://github.com/huggingface/datasets/issues/3132
3,132
Support Audio feature in streaming mode
closed
0
2021-10-21T13:32:18
2021-11-12T14:13:04
2021-11-12T14:13:04
albertvillanova
[ "enhancement" ]
Currently, Audio feature is only supported for non-streaming datasets. Due to the large size of many speech datasets, we should also support Audio feature in streaming mode.
false
1,032,309,865
https://api.github.com/repos/huggingface/datasets/issues/3131
https://github.com/huggingface/datasets/issues/3131
3,131
Add ADE20k
closed
1
2021-10-21T10:13:09
2023-01-27T14:40:20
2023-01-27T14:40:20
NielsRogge
[ "dataset request", "vision" ]
## Adding a Dataset - **Name:** ADE20k (actually it's called the MIT Scene Parsing Benchmark, it's actually a subset of ADE20k but a lot of authors still call it ADE20k) - **Description:** A semantic segmentation dataset, consisting of 150 classes. - **Paper:** http://people.csail.mit.edu/bzhou/publication/scene-par...
false
1,032,299,417
https://api.github.com/repos/huggingface/datasets/issues/3130
https://github.com/huggingface/datasets/pull/3130
3,130
Create SECURITY.md
closed
1
2021-10-21T10:03:03
2021-10-21T14:33:28
2021-10-21T14:31:50
zidingz
[]
To let the repository confirm feedback@huggingface.co as its security contact.
true
1,032,234,167
https://api.github.com/repos/huggingface/datasets/issues/3129
https://github.com/huggingface/datasets/pull/3129
3,129
Support Audio feature for TAR archives in sequential access
closed
7
2021-10-21T08:56:51
2021-11-17T17:42:08
2021-11-17T17:42:07
albertvillanova
[]
Add Audio feature support for TAR archived files in sequential access. Fix #3128.
true
1,032,201,870
https://api.github.com/repos/huggingface/datasets/issues/3128
https://github.com/huggingface/datasets/issues/3128
3,128
Support Audio feature for TAR archives in sequential access
closed
0
2021-10-21T08:23:01
2021-11-17T17:42:07
2021-11-17T17:42:07
albertvillanova
[ "enhancement" ]
Currently, Audio feature accesses each audio file by their file path. However, streamed TAR archive files do not allow random access to their archived files. Therefore, we should enhance the Audio feature to support TAR archived files in sequential access.
false
1,032,100,613
https://api.github.com/repos/huggingface/datasets/issues/3127
https://github.com/huggingface/datasets/issues/3127
3,127
datasets-cli: convertion of a tfds dataset to a huggingface one.
open
1
2021-10-21T06:14:27
2021-10-27T11:36:05
null
vitalyshalumov
[]
### Discussed in https://github.com/huggingface/datasets/discussions/3079 <div type='discussions-op-text'> <sup>Originally posted by **vitalyshalumov** October 14, 2021</sup> I'm trying to convert a tfds dataset to a huggingface one. I've tried: 1. datasets-cli convert --tfds_path ~/tensorflow_datas...
false
1,032,093,055
https://api.github.com/repos/huggingface/datasets/issues/3126
https://github.com/huggingface/datasets/issues/3126
3,126
"arabic_billion_words" dataset does not create the full dataset
closed
1
2021-10-21T06:02:38
2021-10-22T13:28:40
2021-10-22T13:28:40
vitalyshalumov
[ "bug" ]
## Describe the bug When running: raw_dataset = load_dataset('arabic_billion_words','Alittihad') the correct dataset file is pulled from the url. But, the generated dataset includes just a small portion of the data included in the file. This is true for all other portions of the "arabic_billion_words" dataset ('A...
false
1,032,046,666
https://api.github.com/repos/huggingface/datasets/issues/3125
https://github.com/huggingface/datasets/pull/3125
3,125
Add SLR83 to OpenSLR
closed
0
2021-10-21T04:26:00
2021-10-22T20:10:05
2021-10-22T08:30:22
tyrius02
[]
The PR resolves #3119, adding SLR83 (UK and Ireland dialects) to the previously created OpenSLR dataset.
true
1,031,976,286
https://api.github.com/repos/huggingface/datasets/issues/3124
https://github.com/huggingface/datasets/pull/3124
3,124
More efficient nested features encoding
closed
2
2021-10-21T01:55:31
2021-11-02T15:07:13
2021-11-02T11:04:04
eladsegal
[]
Nested encoding of features wastes a lot of time on operations which are effectively doing nothing when lists are used. For example, if in the input we have a list of integers, `encoded_nested_example` will iterate over it and apply `encoded_nested_example` on every element even though it just return the int as is. ...
true
1,031,793,207
https://api.github.com/repos/huggingface/datasets/issues/3123
https://github.com/huggingface/datasets/issues/3123
3,123
Segmentation fault when loading datasets from file
closed
2
2021-10-20T20:16:11
2021-11-02T14:57:07
2021-11-02T14:57:07
TevenLeScao
[ "bug" ]
## Describe the bug Custom dataset loading sometimes segfaults and kills the process if chunks contain a variety of features/ ## Steps to reproduce the bug Download an example file: ``` wget https://gist.githubusercontent.com/TevenLeScao/11e2184394b3fa47d693de2550942c6b/raw/4232704d08fbfcaf93e5b51def9e50515076...
false
1,031,787,509
https://api.github.com/repos/huggingface/datasets/issues/3122
https://github.com/huggingface/datasets/issues/3122
3,122
OSError with a custom dataset loading script
closed
8
2021-10-20T20:08:39
2021-11-23T09:55:38
2021-11-23T09:55:38
suzanab
[ "bug" ]
## Describe the bug I am getting an OS error when trying to load the newly uploaded dataset classla/janes_tag. What puzzles me is that I have already uploaded a very similar dataset - classla/reldi_hr - with no issues. The loading scripts for the two datasets are almost identical and they have the same directory struc...
false
1,031,673,115
https://api.github.com/repos/huggingface/datasets/issues/3121
https://github.com/huggingface/datasets/pull/3121
3,121
Use huggingface_hub.HfApi to list datasets/metrics
closed
0
2021-10-20T17:48:29
2021-11-05T11:45:08
2021-11-05T09:48:36
mariosasko
[]
Delete `datasets.inspect.HfApi` and use `huggingface_hub.HfApi` instead. WIP until https://github.com/huggingface/huggingface_hub/pull/429 is merged, then wait for the new release of `huggingface_hub`, update the `huggingface_hub` version in `setup.py` and merge this PR. cc: @lhoestq
true
1,031,574,511
https://api.github.com/repos/huggingface/datasets/issues/3120
https://github.com/huggingface/datasets/pull/3120
3,120
Correctly update metadata to preserve features when concatenating datasets with axis=1
closed
0
2021-10-20T15:54:58
2021-10-22T08:28:51
2021-10-21T14:50:21
mariosasko
[]
This PR correctly updates metadata to preserve higher-level feature types (e.g. `ClassLabel`) in `datasets.concatenate_datasets` when `axis=1`. Previously, we would delete the feature metadata in `datasets.concatenate_datasets` if `axis=1` and restore the feature types from the arrow table schema in `Dataset.__init__`....
true
1,031,328,044
https://api.github.com/repos/huggingface/datasets/issues/3119
https://github.com/huggingface/datasets/issues/3119
3,119
Add OpenSLR 83 - Crowdsourced high-quality UK and Ireland English Dialect speech
closed
1
2021-10-20T12:05:07
2021-10-22T19:00:52
2021-10-22T08:30:22
tyrius02
[ "dataset request" ]
## Adding a Dataset - **Name:** *openslr** - **Description:** *Data set which contains male and female recordings of English from various dialects of the UK and Ireland.* - **Paper:** *https://www.openslr.org/resources/83/about.html* - **Data:** *Eleven separate data files can be found via https://www.openslr.org/r...
false
1,031,309,549
https://api.github.com/repos/huggingface/datasets/issues/3118
https://github.com/huggingface/datasets/pull/3118
3,118
Fix CI error at each release commit
closed
0
2021-10-20T11:44:38
2021-10-20T13:02:36
2021-10-20T13:02:36
albertvillanova
[]
Fix test_load_dataset_canonical at release commit. Fix #3117.
true
1,031,308,083
https://api.github.com/repos/huggingface/datasets/issues/3117
https://github.com/huggingface/datasets/issues/3117
3,117
CI error at each release commit
closed
0
2021-10-20T11:42:53
2021-10-20T13:02:35
2021-10-20T13:02:35
albertvillanova
[ "bug" ]
After 1.12.0, there is a recurrent CI error at each release commit: https://app.circleci.com/pipelines/github/huggingface/datasets/8289/workflows/665d954d-e409-4602-8202-e678594d2946/jobs/51110 ``` ____________________ LoadTest.test_load_dataset_canonical _____________________ [gw0] win32 -- Python 3.6.8 C:\tools\...
false
1,031,270,611
https://api.github.com/repos/huggingface/datasets/issues/3116
https://github.com/huggingface/datasets/pull/3116
3,116
Update doc links to point to new docs
closed
0
2021-10-20T11:00:47
2021-10-22T08:29:28
2021-10-22T08:26:45
mariosasko
[ "documentation" ]
This PR: * updates the README links and the ADD_NEW_DATASET template to point to the new docs (the new docs don't have a section with the list of all the possible features, so I added that info to the `Features` docstring, which is then referenced in the ADD_NEW_DATASET template) * fixes some broken links in the `.rs...
true
1,030,737,524
https://api.github.com/repos/huggingface/datasets/issues/3115
https://github.com/huggingface/datasets/pull/3115
3,115
Fill in dataset card for NCBI disease dataset
closed
0
2021-10-19T20:57:05
2021-10-22T08:25:07
2021-10-22T08:25:07
edugp
[]
null
true
1,030,693,130
https://api.github.com/repos/huggingface/datasets/issues/3114
https://github.com/huggingface/datasets/issues/3114
3,114
load_from_disk in DatasetsDict/Dataset not working with PyArrowHDFS wrapper implementing fsspec.spec.AbstractFileSystem
closed
2
2021-10-19T20:01:45
2022-02-14T14:00:28
2022-02-14T14:00:28
francisco-perez-sorrosal
[ "bug" ]
## Describe the bug Passing a PyArrowHDFS implementation of fsspec.spec.AbstractFileSystem (in the `fs` param required by `load_from_disk` methods in `DatasetDict` (in datasets_dict.py) and `Dataset` (in arrow_dataset.py) results in an error when calling the download method in the `fs` parameter. ## Steps to repr...
false
1,030,667,547
https://api.github.com/repos/huggingface/datasets/issues/3113
https://github.com/huggingface/datasets/issues/3113
3,113
Loading Data from HDF files
open
9
2021-10-19T19:26:46
2025-06-19T05:41:23
null
FeryET
[ "enhancement", "good second issue" ]
**Is your feature request related to a problem? Please describe.** More often than not I come along big HDF datasets, and currently there is no straight forward way to feed them to a dataset. **Describe the solution you'd like** I would love to see a `from_h5` method that gets an interface implemented by the user ...
false
1,030,613,083
https://api.github.com/repos/huggingface/datasets/issues/3112
https://github.com/huggingface/datasets/issues/3112
3,112
OverflowError: There was an overflow in the <class 'pyarrow.lib.ListArray'>. Try to reduce writer_batch_size to have batches smaller than 2GB
open
4
2021-10-19T18:21:41
2021-10-19T18:52:29
null
BenoitDalFerro
[ "bug" ]
## Describe the bug Despite having batches way under 2Gb when running `datasets.map()`, after processing correctly the data of the first batch without fuss and irrespective of writer_batch_size (say 2,4,8,16,32,64 and 128 in my case), it returns the following error : > OverflowError: There was an overflow in the <c...
false
1,030,598,983
https://api.github.com/repos/huggingface/datasets/issues/3111
https://github.com/huggingface/datasets/issues/3111
3,111
concatenate_datasets removes ClassLabel typing.
closed
1
2021-10-19T18:05:31
2021-10-21T14:50:21
2021-10-21T14:50:21
Dref360
[ "bug" ]
## Describe the bug When concatenating two datasets, we lose typing of ClassLabel columns. I can work on this if this is a legitimate bug, ## Steps to reproduce the bug ```python import datasets from datasets import Dataset, ClassLabel, Value, concatenate_datasets DS_LEN = 100 my_dataset = Dataset.from_...
false
1,030,558,484
https://api.github.com/repos/huggingface/datasets/issues/3110
https://github.com/huggingface/datasets/pull/3110
3,110
Stream TAR-based dataset using iter_archive
closed
2
2021-10-19T17:16:24
2021-11-05T17:48:49
2021-11-05T17:48:48
lhoestq
[]
I converted all the dataset based on TAR archive to use iter_archive instead, so that they can be streamable. It means that around 80 datasets become streamable :)
true
1,030,543,284
https://api.github.com/repos/huggingface/datasets/issues/3109
https://github.com/huggingface/datasets/pull/3109
3,109
Update BibTeX entry
closed
0
2021-10-19T16:59:31
2021-10-19T17:13:28
2021-10-19T17:13:27
albertvillanova
[]
Update BibTeX entry.
true
1,030,405,618
https://api.github.com/repos/huggingface/datasets/issues/3108
https://github.com/huggingface/datasets/pull/3108
3,108
Add Google BLEU (aka GLEU) metric
closed
0
2021-10-19T14:48:38
2021-10-25T14:07:04
2021-10-25T14:07:04
slowwavesleep
[]
This PR adds the NLTK implementation of Google BLEU metric. This is also a part of an effort to resolve an unfortunate naming collision between GLEU for machine translation and GLEU for grammatical error correction. I used [this page](https://huggingface.co/docs/datasets/add_metric.html) for reference. Please, point ...
true
1,030,357,527
https://api.github.com/repos/huggingface/datasets/issues/3107
https://github.com/huggingface/datasets/pull/3107
3,107
Add paper BibTeX citation
closed
0
2021-10-19T14:08:11
2021-10-19T14:26:22
2021-10-19T14:26:21
albertvillanova
[]
Add paper BibTeX citation to README file.
true
1,030,112,473
https://api.github.com/repos/huggingface/datasets/issues/3106
https://github.com/huggingface/datasets/pull/3106
3,106
Fix URLs in blog_authorship_corpus dataset
closed
0
2021-10-19T10:06:05
2021-10-19T12:50:40
2021-10-19T12:50:39
albertvillanova
[]
After contacting the authors of the paper "Effects of Age and Gender on Blogging", they confirmed: - the old URLs are no longer valid - there are alternative host URLs Fix #3091.
true
1,029,098,843
https://api.github.com/repos/huggingface/datasets/issues/3105
https://github.com/huggingface/datasets/issues/3105
3,105
download_mode=`force_redownload` does not work on removed datasets
open
0
2021-10-18T13:12:38
2021-10-22T09:36:10
null
severo
[ "bug", "dataset-viewer" ]
## Describe the bug If a cached dataset is removed from the library, I don't see how to delete it programmatically. I thought that using `force_redownload` would try to refresh the cache, then raise an exception, but it reuses the cache instead. ## Steps to reproduce the bug _requires to already have `wit` in ...
false
1,029,080,412
https://api.github.com/repos/huggingface/datasets/issues/3104
https://github.com/huggingface/datasets/issues/3104
3,104
Missing Zenodo 1.13.3 release
closed
1
2021-10-18T12:57:18
2021-10-22T13:22:25
2021-10-22T13:22:24
albertvillanova
[ "bug" ]
After `datasets` 1.13.3 release, this does not appear in Zenodo releases: https://zenodo.org/record/5570305 TODO: - [x] Contact Zenodo support - [x] Check it is fixed
false
1,029,069,310
https://api.github.com/repos/huggingface/datasets/issues/3103
https://github.com/huggingface/datasets/pull/3103
3,103
Fix project description in PyPI
closed
0
2021-10-18T12:47:29
2021-10-18T12:59:57
2021-10-18T12:59:56
albertvillanova
[]
Fix project description appearing in PyPI, so that it contains the content of the README.md file (like transformers). Currently, `datasets` project description appearing in PyPI shows the release instructions addressed to core maintainers: https://pypi.org/project/datasets/1.13.3/ Fix #3102.
true
1,029,067,062
https://api.github.com/repos/huggingface/datasets/issues/3102
https://github.com/huggingface/datasets/issues/3102
3,102
Unsuitable project description in PyPI
closed
0
2021-10-18T12:45:00
2021-10-18T12:59:56
2021-10-18T12:59:56
albertvillanova
[]
Currently, `datasets` project description appearing in PyPI shows the release instructions addressed to core maintainers: https://pypi.org/project/datasets/1.13.3/
false
1,028,966,968
https://api.github.com/repos/huggingface/datasets/issues/3101
https://github.com/huggingface/datasets/pull/3101
3,101
Update SUPERB to use Audio features
closed
1
2021-10-18T11:05:18
2021-10-18T12:33:54
2021-10-18T12:06:46
anton-l
[]
This is the same dataset refresh as the other Audio ones: https://github.com/huggingface/datasets/pull/3081 cc @patrickvonplaten
true
1,028,738,180
https://api.github.com/repos/huggingface/datasets/issues/3100
https://github.com/huggingface/datasets/pull/3100
3,100
Replace FSTimeoutError with parent TimeoutError
closed
0
2021-10-18T07:37:09
2021-10-18T07:51:55
2021-10-18T07:51:54
albertvillanova
[]
PR #3050 introduced a dependency on `fsspec.FSTiemoutError`. Note that this error only exists from `fsspec` version `2021.06.0` (June 2021). To fix #3097, there are 2 alternatives: - Either pinning `fsspec` to versions newer or equal to `2021.06.0` - Or replacing `fsspec.FSTimeoutError` wth its parent `asyncio.Tim...
true
1,028,338,078
https://api.github.com/repos/huggingface/datasets/issues/3099
https://github.com/huggingface/datasets/issues/3099
3,099
AttributeError: module 'huggingface_hub.hf_api' has no attribute 'DatasetInfo'
closed
6
2021-10-17T14:17:47
2021-11-09T16:42:29
2021-11-09T16:42:28
JTWang2000
[ "bug" ]
## Describe the bug When using `pip install datasets` or use `conda install -c huggingface -c conda-forge datasets` cannot install datasets ## Steps to reproduce the bug ```python from datasets import load_dataset dataset = load_dataset("sst", "default") ``` ## Actual results ---------------------------...
false