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
4,915
FileNotFoundError while downloading wikipedia dataset for any language
## Describe the bug Hi, I am currently trying to download wikipedia dataset using load_dataset("wikipedia", language="aa", date="20220401", split="train",beam_runner='DirectRunner'). However, I end up in getting filenotfound error. I get this error for any language I try to download. Environment: ## Step...
OPEN
2022-08-30T16:15:46
2022-12-04T22:20:33
null
https://github.com/huggingface/datasets/issues/4915
Shilpac20
5
[ "bug" ]
4,912
datasets map() handles all data at a stroke and takes long time
**1. Background** Huggingface datasets package advises using `map()` to process data in batches. In the example code on pretraining masked language model, they use `map()` to tokenize all data at a stroke before the train loop. The corresponding code: ``` with accelerator.main_process_first(): tokenized_...
CLOSED
2022-08-30T02:25:56
2023-04-06T09:43:58
2022-09-06T09:23:35
https://github.com/huggingface/datasets/issues/4912
BruceStayHungry
7
[]
4,911
[Tests] Ensure `datasets` supports renamed repositories
On https://hf.co/datasets you can rename a dataset (or sometimes move it to another user/org). The website handles redirections correctly and AFAIK `datasets` does as well. However it would be nice to have an integration test to make sure we don't break support for renamed datasets. To implement this we can use t...
OPEN
2022-08-29T14:46:14
2025-06-19T06:10:52
null
https://github.com/huggingface/datasets/issues/4911
lhoestq
2
[ "good second issue" ]
4,910
Identical keywords in build_kwargs and config_kwargs lead to TypeError in load_dataset_builder()
## Describe the bug In `load_dataset_builder()`, `build_kwargs` and `config_kwargs` can contain the same keywords leading to a TypeError("type object got multiple values for keyword argument "xyz"). I ran into this problem with the keyword: `base_path`. It might happen with other kwargs as well. I think a quickfix...
OPEN
2022-08-29T14:11:48
2025-09-15T08:14:21
null
https://github.com/huggingface/datasets/issues/4910
bablf
9
[ "bug", "good first issue" ]
4,907
None Type error for swda datasets
## Describe the bug I got `'NoneType' object is not callable` error while calling the swda datasets. ## Steps to reproduce the bug ```python from datasets import load_dataset dataset = load_dataset("swda") ``` ## Expected results Run without error ## Environment info <!-- You can run the command `datase...
CLOSED
2022-08-29T07:05:20
2022-08-30T14:43:41
2022-08-30T14:43:41
https://github.com/huggingface/datasets/issues/4907
hannan72
3
[ "bug" ]
4,906
Can't import datasets AttributeError: partially initialized module 'datasets' has no attribute 'utils' (most likely due to a circular import)
## Describe the bug A clear and concise description of what the bug is. Not able to import datasets ## Steps to reproduce the bug ```python # Sample code to reproduce the bug import os os.environ["WANDB_API_KEY"] = "0" ## to silence warning import numpy as np import random import sklearn import matplotlib.p...
CLOSED
2022-08-28T02:23:24
2024-11-16T08:59:17
2022-10-03T12:22:50
https://github.com/huggingface/datasets/issues/4906
OPterminator
7
[ "bug" ]
4,902
Name the default config `default`
Currently, if a dataset has no configuration, a default configuration is created from the dataset name. For example, for a dataset loaded from the hub repository, such as https://huggingface.co/datasets/user/dataset (repo id is `user/dataset`), the default configuration will be `user--dataset`. It might be easier...
CLOSED
2022-08-26T16:16:22
2023-07-24T21:15:31
2023-07-24T21:15:31
https://github.com/huggingface/datasets/issues/4902
severo
1
[ "enhancement", "question" ]
4,900
Dataset Viewer issue for asaxena1990/Dummy_dataset
### Link _No response_ ### Description _No response_ ### Owner _No response_
CLOSED
2022-08-26T15:15:44
2023-07-24T15:42:09
2023-07-24T15:42:09
https://github.com/huggingface/datasets/issues/4900
ankurcl
3
[]
4,898
Dataset Viewer issue for timit_asr
### Link _No response_ ### Description _No response_ ### Owner _No response_
CLOSED
2022-08-26T07:12:05
2022-10-03T12:40:28
2022-10-03T12:40:27
https://github.com/huggingface/datasets/issues/4898
InayatUllah932
5
[]
4,897
datasets generate large arrow file
Checking the large file in disk, and found the large cache file in the cifar10 data directory: ![image](https://user-images.githubusercontent.com/18533904/186830449-ba96cdeb-0fe8-4543-994d-2abe7145933f.png) As we know, the size of cifar10 dataset is ~130MB, but the cache file has almost 30GB size, there may be so...
CLOSED
2022-08-26T05:51:16
2022-09-18T05:07:52
2022-09-18T05:07:52
https://github.com/huggingface/datasets/issues/4897
jax11235
2
[ "bug" ]
4,895
load_dataset method returns Unknown split "validation" even if this dir exists
## Describe the bug The `datasets.load_dataset` returns a `ValueError: Unknown split "validation". Should be one of ['train', 'test'].` when running `load_dataset(local_data_dir_path, split="validation")` even if the `validation` sub-directory exists in the local data path. The data directories are as follows and a...
CLOSED
2022-08-25T12:11:00
2024-03-26T16:47:48
2022-09-29T08:07:50
https://github.com/huggingface/datasets/issues/4895
SamSamhuns
18
[ "bug" ]
4,893
Oversampling strategy for iterable datasets in `interleave_datasets`
In https://github.com/huggingface/datasets/pull/4831 @ylacombe added an oversampling strategy for `interleave_datasets`. However right now it doesn't work for datasets loaded using `load_dataset(..., streaming=True)`, which are `IterableDataset` objects. It would be nice to expand `interleave_datasets` for iterable ...
CLOSED
2022-08-25T10:06:55
2022-10-03T12:37:46
2022-10-03T12:37:46
https://github.com/huggingface/datasets/issues/4893
lhoestq
9
[ "good second issue" ]
4,889
torchaudio 11.0 yields different results than torchaudio 12.1 when loading MP3
## Describe the bug When loading Common Voice with torchaudio 0.11.0 the results are different to 0.12.1 which leads to problems in transformers see: https://github.com/huggingface/transformers/pull/18749 ## Steps to reproduce the bug If you run the following code once with `torchaudio==0.11.0+cu102` and `torc...
CLOSED
2022-08-24T16:54:43
2023-03-02T15:33:05
2023-03-02T15:33:04
https://github.com/huggingface/datasets/issues/4889
patrickvonplaten
5
[ "bug" ]
4,888
Dataset Viewer issue for subjqa
### Link https://huggingface.co/datasets/subjqa ### Description Getting the following error for this dataset: ``` Status code: 500 Exception: Status500Error Message: 2 or more items returned, instead of 1 ``` Not sure what's causing it though πŸ€” ### Owner Yes
CLOSED
2022-08-24T13:26:20
2022-09-08T08:23:42
2022-09-08T08:23:42
https://github.com/huggingface/datasets/issues/4888
lewtun
2
[ "dataset-viewer" ]
4,886
Loading huggan/CelebA-HQ throws pyarrow.lib.ArrowInvalid
## Describe the bug Loading huggan/CelebA-HQ throws pyarrow.lib.ArrowInvalid ## Steps to reproduce the bug ```python from datasets import load_dataset dataset = load_dataset('huggan/CelebA-HQ') ``` ## Expected results See https://colab.research.google.com/drive/141LJCcM2XyqprPY83nIQ-Zk3BbxWeahq?usp=sharing#...
OPEN
2022-08-24T11:24:21
2023-02-02T02:40:53
null
https://github.com/huggingface/datasets/issues/4886
JeanKaddour
9
[ "bug" ]
4,885
Create dataset from list of dicts
I often find myself with data from a variety of sources, and a list of dicts is very common among these. However, converting this to a Dataset is a little awkward, requiring either ```Dataset.from_pandas(pd.DataFrame(formatted_training_data))``` Which can error out on some more exotic values as 2-d arrays for reas...
CLOSED
2022-08-24T10:01:24
2022-09-08T16:02:52
2022-09-08T16:02:52
https://github.com/huggingface/datasets/issues/4885
sanderland
3
[ "enhancement" ]
4,883
With dataloader RSS memory consumed by HF datasets monotonically increases
## Describe the bug When the HF datasets is used in conjunction with PyTorch Dataloader, the RSS memory of the process keeps on increasing when it should stay constant. ## Steps to reproduce the bug Run and observe the output of this snippet which logs RSS memory. ```python import psutil import os from transf...
OPEN
2022-08-24T08:42:54
2024-01-23T12:42:40
null
https://github.com/huggingface/datasets/issues/4883
apsdehal
44
[ "bug" ]
4,881
Language names and language codes: connecting to a big database (rather than slow enrichment of custom list)
**The problem:** Language diversity is an important dimension of the diversity of datasets. To find one's way around datasets, being able to search by language name and by standardized codes appears crucial. Currently the list of language codes is [here](https://github.com/huggingface/datasets/blob/main/src/datase...
OPEN
2022-08-23T20:14:24
2024-04-22T15:57:28
null
https://github.com/huggingface/datasets/issues/4881
alexis-michaud
49
[ "enhancement" ]
4,878
[not really a bug] `identical_ok` is deprecated in huggingface-hub's `upload_file`
In the huggingface-hub dependency, the `identical_ok` argument has no effect in `upload_file` (and it will be removed soon) See https://github.com/huggingface/huggingface_hub/blob/43499582b19df1ed081a5b2bd7a364e9cacdc91d/src/huggingface_hub/hf_api.py#L2164-L2169 It's used here: https://github.com/huggingfac...
CLOSED
2022-08-23T17:09:55
2022-09-13T14:00:06
2022-09-13T14:00:05
https://github.com/huggingface/datasets/issues/4878
severo
1
[ "help wanted", "question" ]
4,876
Move DatasetInfo from `datasets_infos.json` to the YAML tags in `README.md`
Currently there are two places to find metadata for datasets: - datasets_infos.json, which contains **per dataset config** - description - citation - license - splits and sizes - checksums of the data files - feature types - and more - YAML tags, which contain - license - language - trai...
CLOSED
2022-08-23T16:16:41
2022-10-03T09:11:13
2022-10-03T09:11:13
https://github.com/huggingface/datasets/issues/4876
lhoestq
15
[]
4,875
`_resolve_features` ignores the token
## Describe the bug When calling [`_resolve_features()`](https://github.com/huggingface/datasets/blob/54b532a8a2f5353fdb0207578162153f7b2da2ec/src/datasets/iterable_dataset.py#L1255) on a gated dataset, ie. a dataset which requires a token to be loaded, the token seems to be ignored even if it has been provided to `...
OPEN
2022-08-23T14:57:36
2022-10-17T13:45:47
null
https://github.com/huggingface/datasets/issues/4875
severo
11
[]
4,873
Multiple dataloader memory error
For the use of multiple datasets and tasks, we use around more than 200+ dataloaders, then pass it into `dataloader1, dataloader2, ..., dataloader200=accelerate.prepare(dataloader1, dataloader2, ..., dataloader200)` It causes the memory error when generating batches. Any solutions to it? ```bash File "/home/xxx/...
OPEN
2022-08-23T08:59:50
2023-01-26T02:01:11
null
https://github.com/huggingface/datasets/issues/4873
cyk1337
3
[ "bug" ]
4,865
Dataset Viewer issue for MoritzLaurer/multilingual_nli
### Link _No response_ ### Description I've just uploaded a new dataset to the hub and the viewer does not work for some reason, see here: https://huggingface.co/datasets/MoritzLaurer/multilingual_nli It displays the error: ``` Status code: 400 Exception: Status400Error Message: The dataset...
CLOSED
2022-08-19T14:55:20
2022-08-22T14:47:14
2022-08-22T06:13:20
https://github.com/huggingface/datasets/issues/4865
MoritzLaurer
4
[ "dataset-viewer" ]
4,864
Allow pathlib PoxisPath in Dataset.read_json
**Is your feature request related to a problem? Please describe.** ``` from pathlib import Path from datasets import Dataset ds = Dataset.read_json(Path('data.json')) ``` causes an error ``` AttributeError: 'PosixPath' object has no attribute 'decode' ``` **Describe the solution you'd like** It should be...
OPEN
2022-08-19T12:59:17
2025-04-11T17:22:48
null
https://github.com/huggingface/datasets/issues/4864
changjonathanc
7
[ "enhancement" ]
4,863
TFDS wiki_dialog dataset to Huggingface dataset
## Adding a Dataset - **Name:** *Wiki_dialog* - **Description: https://github.com/google-research/dialog-inpainting#:~:text=JSON%20object%2C%20for-,example,-%3A - **Paper: https://arxiv.org/abs/2205.09073 - **Data: https://github.com/google-research/dialog-inpainting - **Motivation:** *Research and Development on ...
CLOSED
2022-08-18T23:06:30
2022-08-22T09:41:45
2022-08-22T05:18:53
https://github.com/huggingface/datasets/issues/4863
djaym7
4
[ "dataset request" ]
4,862
Got "AttributeError: 'xPath' object has no attribute 'read'" when loading an excel dataset with my own code
## Describe the bug A clear and concise description of what the bug is. ## Steps to reproduce the bug ```python # Sample code to reproduce the bug # The dataset function is as follows: from pathlib import Path from typing import Dict, List, Tuple import datasets import pandas as pd _CITATION = """\ """...
CLOSED
2022-08-18T18:36:14
2022-08-31T09:25:08
2022-08-31T09:25:08
https://github.com/huggingface/datasets/issues/4862
yana-xuyan
5
[ "bug" ]
4,861
Using disk for memory with the method `from_dict`
**Is your feature request related to a problem? Please describe.** I start with an empty dataset. In a loop, at each iteration, I create a new dataset with the method `from_dict` (based on some data I load) and I concatenate this new dataset with the one at the previous iteration. After some iterations, I have an OOM ...
OPEN
2022-08-18T15:18:18
2023-01-26T18:36:28
null
https://github.com/huggingface/datasets/issues/4861
HugoLaurencon
1
[ "enhancement" ]
4,859
can't install using conda on Windows 10
## Describe the bug I wanted to install using conda or Anaconda navigator. That didn't work, so I had to install using pip. ## Steps to reproduce the bug conda install -c huggingface -c conda-forge datasets ## Expected results Should have indicated successful installation. ## Actual results Solving environ...
OPEN
2022-08-17T19:57:37
2022-08-17T19:57:37
null
https://github.com/huggingface/datasets/issues/4859
xoffey
0
[ "bug" ]
4,858
map() function removes columns when input_columns is not None
## Describe the bug The map function, removes features from the dataset that are not present in the _input_columns_ list of columns, despite the columns being removed not mentioned in the _remove_columns_ argument. ## Steps to reproduce the bug ```python from datasets import Dataset ds = Dataset.from_dict({"a" : [...
CLOSED
2022-08-16T20:42:30
2022-09-22T13:55:24
2022-09-22T13:55:24
https://github.com/huggingface/datasets/issues/4858
pramodith
3
[ "bug" ]
4,857
No preprocessed wikipedia is working on huggingface/datasets
## Describe the bug 20220301 wikipedia dump has been deprecated, so now there is no working wikipedia dump on huggingface https://huggingface.co/datasets/wikipedia https://dumps.wikimedia.org/enwiki/
CLOSED
2022-08-16T13:55:33
2022-08-17T13:35:08
2022-08-17T13:35:08
https://github.com/huggingface/datasets/issues/4857
aninrusimha
2
[ "bug" ]
4,856
file missing when load_dataset with openwebtext on windows
## Describe the bug 0015896-b1054262f7da52a0518521e29c8e352c.txt is missing when I run run_mlm.py with openwebtext. I check the cache_path and can not find 0015896-b1054262f7da52a0518521e29c8e352c.txt. but I can find this file in the 17ecf461bfccd469a1fbc264ccb03731f8606eea7b3e2e8b86e13d18040bf5b3/urlsf_subset00-16_da...
CLOSED
2022-08-16T04:04:22
2023-01-04T03:39:12
2023-01-04T03:39:12
https://github.com/huggingface/datasets/issues/4856
xi-loong
1
[ "bug" ]
4,855
Dataset Viewer issue for super_glue
### Link https://huggingface.co/datasets/super_glue ### Description can't view super_glue dataset on the web page ### Owner _No response_
CLOSED
2022-08-16T01:34:56
2022-08-22T10:08:01
2022-08-22T10:07:45
https://github.com/huggingface/datasets/issues/4855
wzsxxa
1
[ "dataset-viewer" ]
4,852
Bug in multilingual_with_para config of exams dataset and checksums error
## Describe the bug There is a bug for "multilingual_with_para" config in exams dataset: ```python ds = load_dataset("./datasets/exams", split="train") ``` raises: ``` KeyError: 'choices' ``` Moreover, there is a NonMatchingChecksumError: ``` NonMatchingChecksumError: Checksums didn't match for dataset so...
CLOSED
2022-08-15T20:14:52
2022-09-16T09:50:55
2022-08-16T06:29:07
https://github.com/huggingface/datasets/issues/4852
albertvillanova
2
[ "bug" ]
4,840
Dataset Viewer issue for darragh/demo_data_raw3
### Link https://huggingface.co/datasets/darragh/demo_data_raw3 ### Description ``` Exception: ValueError Message: Arrow type extension<arrow.py_extension_type<pyarrow.lib.UnknownExtensionType>> does not have a datasets dtype equivalent. ``` reported by @NielsRogge ### Owner No
OPEN
2022-08-12T15:22:58
2022-09-08T07:55:44
null
https://github.com/huggingface/datasets/issues/4840
severo
5
[]
4,839
ImageFolder dataset builder does not read the validation data set if it is named as "val"
**Is your feature request related to a problem? Please describe.** Currently, the `'imagefolder'` data set builder in [`load_dataset()`](https://github.com/huggingface/datasets/blob/2.4.0/src/datasets/load.py#L1541] ) only [supports](https://github.com/huggingface/datasets/blob/6c609a322da994de149b2c938f19439bca9940...
CLOSED
2022-08-12T13:26:00
2022-08-30T10:14:55
2022-08-30T10:14:55
https://github.com/huggingface/datasets/issues/4839
akt42
1
[ "enhancement" ]
4,836
Is it possible to pass multiple links to a split in load script?
**Is your feature request related to a problem? Please describe.** I wanted to use a python loading script in hugging face datasets that use different sources of text (it's somehow a compilation of multiple datasets + my own dataset) based on how `load_dataset` [works](https://huggingface.co/docs/datasets/loading) I a...
OPEN
2022-08-12T11:06:11
2022-08-12T11:06:11
null
https://github.com/huggingface/datasets/issues/4836
sadrasabouri
0
[ "enhancement" ]
4,829
Misalignment between card tag validation and docs
## Describe the bug As pointed out in other issue: https://github.com/huggingface/datasets/pull/4827#discussion_r943536284 the validation of the dataset card tags is not aligned with its documentation: e.g. - implementation: `license: List[str]` - docs: `license: Union[str, List[str]]` They should be aligned. ...
OPEN
2022-08-11T14:44:45
2023-07-21T15:38:02
null
https://github.com/huggingface/datasets/issues/4829
albertvillanova
2
[ "bug" ]
4,820
Terminating: fork() called from a process already using GNU OpenMP, this is unsafe.
Hi, when i try to run prepare_dataset function in [fine tuning ASR tutorial 4](https://colab.research.google.com/github/patrickvonplaten/notebooks/blob/master/Fine_tuning_Wav2Vec2_for_English_ASR.ipynb) , i got this error. I got this error Terminating: fork() called from a process already using GNU OpenMP, this is un...
CLOSED
2022-08-10T19:42:33
2022-08-10T19:53:10
2022-08-10T19:53:10
https://github.com/huggingface/datasets/issues/4820
talhaanwarch
1
[ "bug" ]
4,817
Outdated Link for mkqa Dataset
## Describe the bug The URL used to download the mkqa dataset is outdated. It seems the URL to download the dataset is currently https://github.com/apple/ml-mkqa/blob/main/dataset/mkqa.jsonl.gz instead of https://github.com/apple/ml-mkqa/raw/master/dataset/mkqa.jsonl.gz (master branch has been renamed to main). ## ...
CLOSED
2022-08-10T12:45:45
2022-08-11T09:37:52
2022-08-11T09:37:52
https://github.com/huggingface/datasets/issues/4817
liaeh
1
[ "bug" ]
4,815
Outdated loading script for OPUS ParaCrawl dataset
## Describe the bug Our loading script for OPUS ParaCrawl loads its 7.1 version. Current existing version is 9.
CLOSED
2022-08-10T05:12:34
2022-08-12T14:17:57
2022-08-12T14:17:57
https://github.com/huggingface/datasets/issues/4815
albertvillanova
0
[ "dataset bug" ]
4,814
Support CSV as metadata file format in AudioFolder/ImageFolder
Requested here: https://discuss.huggingface.co/t/how-to-structure-an-image-dataset-repo-using-the-image-folder-approach/21004. CSV is also used in AutoTrain for specifying metadata in image datasets.
CLOSED
2022-08-09T14:36:49
2022-08-31T11:59:08
2022-08-31T11:59:08
https://github.com/huggingface/datasets/issues/4814
mariosasko
0
[ "enhancement" ]
4,811
Bug in function validate_type for Python >= 3.9
## Describe the bug The function `validate_type` assumes that the type `typing.Optional[str]` is automatically transformed to `typing.Union[str, NoneType]`. ```python In [4]: typing.Optional[str] Out[4]: typing.Union[str, NoneType] ``` However, this is not the case for Python 3.9: ```python In [3]: typing.Opt...
CLOSED
2022-08-09T10:25:21
2022-08-12T13:27:05
2022-08-12T13:27:05
https://github.com/huggingface/datasets/issues/4811
albertvillanova
0
[ "bug" ]
4,808
Add more information to the dataset card of mlqa dataset
CLOSED
2022-08-09T07:35:42
2022-08-09T13:33:23
2022-08-09T13:33:23
https://github.com/huggingface/datasets/issues/4808
el2e10
2
[]
4,805
Wrong example in opus_gnome dataset card
## Describe the bug I found that [the example on opus_gone dataset ](https://github.com/huggingface/datasets/tree/main/datasets/opus_gnome#dataset-summary) doesn't work. ## Steps to reproduce the bug ```python load_dataset("gnome", lang1="it", lang2="pl") ``` `"gnome"` should be `"opus_gnome"` ## Expected r...
CLOSED
2022-08-09T03:21:27
2022-08-09T11:52:05
2022-08-09T11:52:05
https://github.com/huggingface/datasets/issues/4805
gojiteji
0
[ "bug" ]
4,804
streaming dataset with concatenating splits raises an error
## Describe the bug streaming dataset with concatenating splits raises an error ## Steps to reproduce the bug ```python from datasets import load_dataset # no error repo = "nateraw/ade20k-tiny" dataset = load_dataset(repo, split="train+validation") ``` ```python from datasets import load_dataset # er...
OPEN
2022-08-09T02:41:56
2023-11-25T14:52:09
null
https://github.com/huggingface/datasets/issues/4804
Bing-su
4
[ "bug" ]
4,803
Support `pipeline` argument in inspect.py functions
**Is your feature request related to a problem? Please describe.** The `wikipedia` dataset requires a `pipeline` argument to build the list of splits: https://huggingface.co/datasets/wikipedia/blob/main/wikipedia.py#L937 But this is currently not supported in `get_dataset_config_info`: https://github.com/hu...
OPEN
2022-08-08T16:01:24
2023-09-25T12:21:35
null
https://github.com/huggingface/datasets/issues/4803
severo
1
[ "enhancement" ]
4,802
`with_format` behavior is inconsistent on different datasets
## Describe the bug I found a case where `with_format` does not transform the dataset to the requested format. ## Steps to reproduce the bug Run: ```python from transformers import AutoTokenizer, AutoFeatureExtractor from datasets import load_dataset raw = load_dataset("glue", "sst2", split="train") raw =...
OPEN
2022-08-08T10:41:34
2022-08-09T16:49:09
null
https://github.com/huggingface/datasets/issues/4802
fxmarty
1
[ "bug" ]
4,799
video dataset loader/parser
you know how you can [use `load_dataset` with any arbitrary csv file](https://huggingface.co/docs/datasets/loading#csv)? and you can also [use it to load a local image dataset](https://huggingface.co/docs/datasets/image_load#local-files)? could you please add functionality to load a video dataset? it would be really...
CLOSED
2022-08-07T01:54:12
2023-10-01T00:08:31
2022-08-09T16:42:51
https://github.com/huggingface/datasets/issues/4799
verbiiyo
3
[ "enhancement" ]
4,796
ArrowInvalid: Could not convert <PIL.Image.Image image mode=RGB when adding image to Dataset
## Describe the bug When adding a Pillow image to an existing Dataset on the hub, `add_item` fails due to the Pillow image not being automatically converted into the Image feature. ## Steps to reproduce the bug ```python from datasets import load_dataset from PIL import Image dataset = load_dataset("hf-inte...
OPEN
2022-08-05T12:41:19
2024-11-29T16:35:17
null
https://github.com/huggingface/datasets/issues/4796
NielsRogge
19
[ "bug" ]
4,795
Missing MBPP splits
(@albertvillanova) The [MBPP dataset on the Hub](https://huggingface.co/datasets/mbpp) has only a test split for both its "full" and its "sanitized" subset, while the [paper](https://arxiv.org/abs/2108.07732) states in subsection 2.1 regarding the full split: > In the experiments described later in the paper, we hold...
CLOSED
2022-08-05T06:51:01
2022-09-13T12:27:24
2022-09-13T12:27:24
https://github.com/huggingface/datasets/issues/4795
stadlerb
4
[ "bug" ]
4,792
Add DocVQA
## Adding a Dataset - **Name:** DocVQA - **Description:** Document Visual Question Answering (DocVQA) seeks to inspire a β€œpurpose-driven” point of view in Document Analysis and Recognition research, where the document content is extracted and used to respond to high-level tasks defined by the human consumers of this ...
OPEN
2022-08-04T13:07:26
2022-08-08T05:31:20
null
https://github.com/huggingface/datasets/issues/4792
NielsRogge
1
[ "dataset request" ]
4,791
Dataset Viewer issue for Team-PIXEL/rendered-wikipedia-english
### Link https://huggingface.co/datasets/Team-PIXEL/rendered-wikipedia-english/viewer/rendered-wikipedia-en/train ### Description The dataset can be loaded fine but the viewer shows this error: ``` Server Error Status code: 400 Exception: Status400Error Message: The dataset does not exist. ``` ...
CLOSED
2022-08-04T12:49:16
2022-08-04T13:43:16
2022-08-04T13:43:16
https://github.com/huggingface/datasets/issues/4791
xplip
1
[ "dataset-viewer" ]
4,790
Issue with fine classes in trec dataset
## Describe the bug According to their paper, the TREC dataset contains 2 kinds of classes: - 6 coarse classes: TREC-6 - 50 fine classes: TREC-50 However, our implementation only has 47 (instead of 50) fine classes. The reason for this is that we only considered the last segment of the label, which is repeated fo...
CLOSED
2022-08-04T12:28:51
2022-08-22T16:14:16
2022-08-22T16:14:16
https://github.com/huggingface/datasets/issues/4790
albertvillanova
0
[ "bug" ]
4,787
NonMatchingChecksumError in mbpp dataset
## Describe the bug As reported on the Hub [Fix Checksum Mismatch](https://huggingface.co/datasets/mbpp/discussions/1), there is a `NonMatchingChecksumError` when loading mbpp dataset ## Steps to reproduce the bug ```python ds = load_dataset("mbpp", "full") ``` ## Expected results Loading of the dataset with...
CLOSED
2022-08-04T08:15:51
2022-08-04T17:21:01
2022-08-04T17:21:01
https://github.com/huggingface/datasets/issues/4787
albertvillanova
0
[ "bug" ]
4,786
.save_to_disk('path', fs=s3) TypeError
The following code: ```python import datasets train_dataset, test_dataset = load_dataset("imdb", split=["train", "test"]) s3 = datasets.filesystems.S3FileSystem(key=aws_access_key_id, secret=aws_secret_access_key) train_dataset.save_to_disk("s3://datasets/", fs=s3) ``` produces following traceback: ```she...
CLOSED
2022-08-03T14:49:29
2022-08-03T15:23:00
2022-08-03T15:23:00
https://github.com/huggingface/datasets/issues/4786
h-k-dev
0
[ "bug" ]
4,784
Add Multiface dataset
## Adding a Dataset - **Name:** Multiface dataset - **Description:** f high quality recordings of the faces of 13 identities, each captured in a multi-view capture stage performing various facial expressions. An average of 12,200 (v1 scripts) to 23,000 (v2 scripts) frames per subject with capture rate at 30 fps - **...
OPEN
2022-08-02T21:00:22
2022-08-08T14:42:36
null
https://github.com/huggingface/datasets/issues/4784
osanseviero
3
[ "dataset request", "vision" ]
4,782
pyarrow.lib.ArrowCapacityError: array cannot contain more than 2147483646 bytes, have 2147483648
## Describe the bug Following the example in CodeParrot, I receive an array size limitation error when deduplicating larger datasets. ## Steps to reproduce the bug ```python dataset_name = "the_pile" ds = load_dataset(dataset_name, split="train") ds = ds.map(preprocess, num_proc=num_workers) uniques = set(ds.u...
CLOSED
2022-08-02T18:36:05
2022-08-22T09:46:28
2022-08-20T02:11:53
https://github.com/huggingface/datasets/issues/4782
conceptofmind
5
[ "bug" ]
4,779
Loading natural_questions requires apache_beam even with existing preprocessed data
## Describe the bug When loading "natural_questions", the package "apache_beam" is required: ``` ImportError: To be able to use natural_questions, you need to install the following dependency: apache_beam. Please install it using 'pip install apache_beam' for instance' ``` This requirement is unnecessary, once ...
CLOSED
2022-08-02T15:06:57
2022-08-02T16:03:18
2022-08-02T16:03:18
https://github.com/huggingface/datasets/issues/4779
albertvillanova
0
[ "bug" ]
4,776
RuntimeError when using torchaudio 0.12.0 to load MP3 audio file
Current version of `torchaudio` (0.12.0) raises a RuntimeError when trying to use `sox_io` backend but non-Python dependency `sox` is not installed: https://github.com/pytorch/audio/blob/2e1388401c434011e9f044b40bc8374f2ddfc414/torchaudio/backend/sox_io_backend.py#L21-L29 ```python def _fail_load( filepath: str...
CLOSED
2022-08-01T14:11:23
2023-03-02T15:58:16
2023-03-02T15:58:15
https://github.com/huggingface/datasets/issues/4776
albertvillanova
3
[]
4,775
Streaming not supported in Theivaprakasham/wildreceipt
### Link _No response_ ### Description _No response_ ### Owner _No response_
CLOSED
2022-08-01T09:46:17
2022-08-01T10:30:29
2022-08-01T10:30:29
https://github.com/huggingface/datasets/issues/4775
NitishkKarra
1
[ "streaming" ]
4,774
Training hangs at the end of epoch, with set_transform/with_transform+multiple workers
## Describe the bug I use load_dataset() (I tried with [wiki](https://huggingface.co/datasets/wikipedia) and my own json data) and use set_transform/with_transform for preprocessing. But it hangs at the end of the 1st epoch if dataloader_num_workers>=1. No problem with single worker. ## Steps to reproduce the bu...
OPEN
2022-07-31T06:32:28
2022-07-31T06:36:43
null
https://github.com/huggingface/datasets/issues/4774
memray
0
[ "bug" ]
4,772
AssertionError when using label_cols in to_tf_dataset
## Describe the bug An incorrect `AssertionError` is raised when using `label_cols` in `to_tf_dataset` and the label's key name is `label`. The assertion is in this line: https://github.com/huggingface/datasets/blob/2.4.0/src/datasets/arrow_dataset.py#L475 ## Steps to reproduce the bug ```python from datasets...
CLOSED
2022-07-29T21:32:12
2022-09-12T11:24:46
2022-09-12T11:24:46
https://github.com/huggingface/datasets/issues/4772
lehrig
5
[ "bug" ]
4,769
Fail to process SQuADv1.1 datasets with max_seq_length=128, doc_stride=96.
## Describe the bug datasets fail to process SQuADv1.1 with max_seq_length=128, doc_stride=96 when calling datasets["train"].train_dataset.map(). ## Steps to reproduce the bug I used huggingface[ TF2 question-answering examples](https://github.com/huggingface/transformers/tree/main/examples/tensorflow/question-a...
OPEN
2022-07-29T11:18:24
2022-07-29T11:18:24
null
https://github.com/huggingface/datasets/issues/4769
zhuango
0
[ "bug" ]
4,761
parallel searching in multi-gpu setting using faiss
While I notice that `add_faiss_index` has supported assigning multiple GPUs, I am still confused about how it works. Does the `search-batch` function automatically parallelizes the input queries to different gpus?https://github.com/huggingface/datasets/blob/d76599bdd4d186b2e7c4f468b05766016055a0a5/src/datasets/sea...
OPEN
2022-07-28T14:57:03
2023-07-21T02:07:10
null
https://github.com/huggingface/datasets/issues/4761
Jiaxin-Wen
26
[]
4,760
Issue with offline mode
## Describe the bug I can't retrieve a cached dataset with offline mode enabled ## Steps to reproduce the bug To reproduce my issue, first, you'll need to run a script that will cache the dataset ```python import os os.environ["HF_DATASETS_OFFLINE"] = "0" import datasets datasets.logging.set_verbosity_i...
CLOSED
2022-07-28T12:45:14
2025-05-04T16:44:59
2024-01-23T10:58:22
https://github.com/huggingface/datasets/issues/4760
SaulLu
17
[ "bug" ]
4,759
Dataset Viewer issue for Toygar/turkish-offensive-language-detection
### Link https://huggingface.co/datasets/Toygar/turkish-offensive-language-detection ### Description Status code: 400 Exception: Status400Error Message: The dataset does not exist. Hi, I provided train.csv, test.csv and valid.csv files. However, viewer says dataset does not exist. Should I n...
CLOSED
2022-07-28T11:21:43
2022-07-28T13:17:56
2022-07-28T13:17:48
https://github.com/huggingface/datasets/issues/4759
tanyelai
1
[ "dataset-viewer" ]
4,757
Document better when relative paths are transformed to URLs
As discussed with @ydshieh, when passing a relative path as `data_dir` to `load_dataset` of a dataset hosted on the Hub, the relative path is transformed to the corresponding URL of the Hub dataset. Currently, we mention this in our docs here: [Create a dataset loading script > Download data files and organize split...
CLOSED
2022-07-28T08:46:27
2022-08-25T18:34:24
2022-08-25T18:34:24
https://github.com/huggingface/datasets/issues/4757
albertvillanova
0
[ "documentation" ]
4,755
Datasets.map causes incorrect overflow_to_sample_mapping when used with tokenizers and small batch size
## Describe the bug When using `tokenizer`, we can retrieve the field `overflow_to_sample_mapping`, since long samples will be overflown into multiple token sequences. However, when tokenizing is done via `Dataset.map`, with `n_proc > 1`, the `overflow_to_sample_mapping` field is wrong. This seems to be because ea...
OPEN
2022-07-27T14:54:11
2023-12-13T19:34:43
null
https://github.com/huggingface/datasets/issues/4755
srobertjames
3
[ "bug" ]
4,752
DatasetInfo issue when testing multiple configs: mixed task_templates
## Describe the bug When running the `datasets-cli test` it would seem that some config properties in a DatasetInfo get mangled, leading to issues, e.g., about the ClassLabel. ## Steps to reproduce the bug In summary, what I want to do is create three configs: - unfiltered: no classlabel, no tasks. Gets data fr...
OPEN
2022-07-27T12:04:54
2022-08-08T18:20:50
null
https://github.com/huggingface/datasets/issues/4752
BramVanroy
3
[ "bug" ]
4,750
Easily create loading script for benchmark comprising multiple huggingface datasets
Hi, I would like to create a loading script for a benchmark comprising multiple huggingface datasets. The function _split_generators needs to return the files for the respective dataset. However, the files are not always in the same location for each dataset. I want to just make a wrapper dataset that provides a si...
CLOSED
2022-07-27T10:13:38
2022-07-27T13:58:07
2022-07-27T13:58:07
https://github.com/huggingface/datasets/issues/4750
JoelNiklaus
2
[]
4,746
Dataset Viewer issue for yanekyuk/wikikey
### Link _No response_ ### Description _No response_ ### Owner _No response_
CLOSED
2022-07-26T16:25:16
2022-09-08T08:15:22
2022-09-08T08:15:22
https://github.com/huggingface/datasets/issues/4746
ai-ashok
2
[ "dataset-viewer" ]
4,745
Allow `list_datasets` to include private datasets
I am working with a large collection of private datasets, it would be convenient for me to be able to list them. I would envision extending the convention of using `use_auth_token` keyword argument to `list_datasets` function, then calling: ``` list_datasets(use_auth_token="my_token") ``` would return the li...
CLOSED
2022-07-26T10:16:08
2023-07-25T15:01:49
2023-07-25T15:01:49
https://github.com/huggingface/datasets/issues/4745
ola13
4
[ "enhancement" ]
4,744
Remove instructions to generate dummy data from our docs
In our docs, we indicate to generate the dummy data: https://huggingface.co/docs/datasets/dataset_script#testing-data-and-checksum-metadata However: - dummy data makes sense only for datasets in our GitHub repo: so that we can test their loading with our CI - for datasets on the Hub: - they do not pass any CI t...
CLOSED
2022-07-26T07:32:58
2022-08-02T23:50:30
2022-08-02T23:50:30
https://github.com/huggingface/datasets/issues/4744
albertvillanova
2
[ "documentation" ]
4,742
Dummy data nowhere to be found
## Describe the bug To finalize my dataset, I wanted to create dummy data as per the guide and I ran ```shell datasets-cli dummy_data datasets/hebban-reviews --auto_generate ``` where hebban-reviews is [this repo](https://huggingface.co/datasets/BramVanroy/hebban-reviews). And even though the scripts runs an...
CLOSED
2022-07-25T19:18:42
2022-11-04T14:04:24
2022-11-04T14:04:10
https://github.com/huggingface/datasets/issues/4742
BramVanroy
3
[ "bug" ]
4,737
Download error on scene_parse_150
``` from datasets import load_dataset dataset = load_dataset("scene_parse_150", "scene_parsing") FileNotFoundError: Couldn't find file at http://data.csail.mit.edu/places/ADEchallenge/ADEChallengeData2016.zip ```
CLOSED
2022-07-22T13:28:28
2022-09-01T15:37:11
2022-09-01T15:37:11
https://github.com/huggingface/datasets/issues/4737
juliensimon
2
[ "bug" ]
4,736
Dataset Viewer issue for deepklarity/huggingface-spaces-dataset
### Link https://huggingface.co/datasets/deepklarity/huggingface-spaces-dataset/viewer/deepklarity--huggingface-spaces-dataset/train ### Description Hi Team, I'm getting the following error on a uploaded dataset. I'm getting the same status for a couple of hours now. The dataset size is `<1MB` and the format is cs...
CLOSED
2022-07-22T12:14:18
2022-07-22T13:46:38
2022-07-22T13:46:38
https://github.com/huggingface/datasets/issues/4736
dk-crazydiv
1
[ "dataset-viewer" ]
4,734
Package rouge-score cannot be imported
## Describe the bug After the today release of `rouge_score-0.0.7` it seems no longer importable. Our CI fails: https://github.com/huggingface/datasets/runs/7463218591?check_suite_focus=true ``` FAILED tests/test_dataset_common.py::LocalDatasetTest::test_builder_class_bigbench FAILED tests/test_dataset_common.py::L...
CLOSED
2022-07-22T07:15:05
2022-07-22T07:45:19
2022-07-22T07:45:18
https://github.com/huggingface/datasets/issues/4734
albertvillanova
1
[ "bug" ]
4,733
rouge metric
## Describe the bug A clear and concise description of what the bug is. Loading Rouge metric gives error after latest rouge-score==0.0.7 release. Downgrading rougemetric==0.0.4 works fine. ## Steps to reproduce the bug ```python # Sample code to reproduce the bug ``` ## Expected results A clear and concis...
CLOSED
2022-07-22T07:06:51
2022-07-22T09:08:02
2022-07-22T09:05:35
https://github.com/huggingface/datasets/issues/4733
asking28
1
[ "bug" ]
4,732
Document better that loading a dataset passing its name does not use the local script
As reported by @TrentBrick here https://github.com/huggingface/datasets/issues/4725#issuecomment-1191858596, it could be more clear that loading a dataset by passing its name does not use the (modified) local script of it. What he did: - he installed `datasets` from source - he modified locally `datasets/the_pile/...
CLOSED
2022-07-22T06:07:31
2022-08-23T16:32:23
2022-08-23T16:32:23
https://github.com/huggingface/datasets/issues/4732
albertvillanova
3
[ "documentation" ]
4,730
Loading imagenet-1k validation split takes much more RAM than expected
## Describe the bug Loading into memory the validation split of imagenet-1k takes much more RAM than expected. Assuming ImageNet-1k is 150 GB, split is 50000 validation images and 1,281,167 train images, I would expect only about 6 GB loaded in RAM. ## Steps to reproduce the bug ```python from datasets import...
CLOSED
2022-07-21T15:14:06
2022-07-21T16:41:04
2022-07-21T16:41:04
https://github.com/huggingface/datasets/issues/4730
fxmarty
1
[ "bug" ]
4,728
load_dataset gives "403" error when using Financial Phrasebank
I tried both codes below to download the financial phrasebank dataset (https://huggingface.co/datasets/financial_phrasebank) with the sentences_allagree subset. However, the code gives a 403 error when executed from multiple machines locally or on the cloud. ``` from datasets import load_dataset, DownloadMode load...
CLOSED
2022-07-21T08:43:32
2022-08-04T08:32:35
2022-08-04T08:32:35
https://github.com/huggingface/datasets/issues/4728
rohitvincent
3
[]
4,727
Dataset Viewer issue for TheNoob3131/mosquito-data
### Link https://huggingface.co/datasets/TheNoob3131/mosquito-data/viewer/TheNoob3131--mosquito-data/test ### Description Dataset preview not showing with large files. Says 'split cache is empty' even though there are train and test splits. ### Owner _No response_
CLOSED
2022-07-21T05:24:48
2022-07-21T07:51:56
2022-07-21T07:45:01
https://github.com/huggingface/datasets/issues/4727
thenerd31
1
[ "dataset-viewer" ]
4,725
the_pile datasets URL broken.
https://github.com/huggingface/datasets/pull/3627 changed the Eleuther AI Pile dataset URL from https://the-eye.eu/ to https://mystic.the-eye.eu/ but the latter is now broken and the former works again. Note that when I git clone the repo and use `pip install -e .` and then edit the URL back the codebase doesn't se...
CLOSED
2022-07-20T20:57:30
2022-07-22T06:09:46
2022-07-21T07:38:19
https://github.com/huggingface/datasets/issues/4725
TrentBrick
5
[ "bug" ]
4,721
PyArrow Dataset error when calling `load_dataset`
## Describe the bug I am fine tuning a wav2vec2 model following the script here using my own dataset: https://github.com/huggingface/transformers/blob/main/examples/pytorch/speech-recognition/run_speech_recognition_ctc.py Loading my Audio dataset from the hub which was originally generated from disk results in th...
OPEN
2022-07-20T01:16:03
2022-07-22T14:11:47
null
https://github.com/huggingface/datasets/issues/4721
piraka9011
3
[ "bug" ]
4,720
Dataset Viewer issue for shamikbose89/lancaster_newsbooks
### Link https://huggingface.co/datasets/shamikbose89/lancaster_newsbooks ### Description Status code: 400 Exception: ValueError Message: Cannot seek streaming HTTP file I am able to use the dataset loading script locally and it also runs when I'm using the one from the hub, but the viewer sti...
CLOSED
2022-07-19T20:00:07
2022-09-08T16:47:21
2022-09-08T16:47:21
https://github.com/huggingface/datasets/issues/4720
shamikbose
4
[]
4,719
Issue loading TheNoob3131/mosquito-data dataset
![image](https://user-images.githubusercontent.com/53668030/179815591-d75fa7d3-3122-485f-a852-b06a68909066.png) So my dataset is public in the Huggingface Hub, but when I try to load it using the load_dataset command, it shows that it is downloading the files, but throws a ValueError. When I went to my directory to ...
CLOSED
2022-07-19T17:47:37
2022-07-20T06:46:57
2022-07-20T06:46:02
https://github.com/huggingface/datasets/issues/4719
thenerd31
2
[]
4,717
Dataset Viewer issue for LawalAfeez/englishreview-ds-mini
### Link _No response_ ### Description Unable to view the split data ### Owner _No response_
CLOSED
2022-07-19T13:19:39
2022-07-20T08:32:57
2022-07-20T08:32:57
https://github.com/huggingface/datasets/issues/4717
lawalAfeez820
1
[ "dataset-viewer" ]
4,711
Document how to create a dataset loading script for audio/vision
Currently, in our docs for Audio/Vision/Text, we explain how to: - Load data - Process data However we only explain how to *Create a dataset loading script* for text data. I think it would be useful that we add the same for Audio/Vision as these have some specificities different from Text. See, for example: ...
CLOSED
2022-07-19T08:03:40
2023-07-25T16:07:52
2023-07-25T16:07:52
https://github.com/huggingface/datasets/issues/4711
albertvillanova
1
[ "documentation" ]
4,709
WMT21 & WMT22
## Adding a Dataset - **Name:** WMT21 & WMT22 - **Description:** We are going to have three tracks: two small tasks and a large task. The small tracks evaluate translation between fairly related languages and English (all pairs). The large track uses 101 languages. - **Paper:** / - **Data:** https://statmt.org/wmt...
OPEN
2022-07-18T21:05:33
2023-06-20T09:02:11
null
https://github.com/huggingface/datasets/issues/4709
Muennighoff
7
[ "good first issue", "dataset request" ]
4,707
Dataset Viewer issue for TheNoob3131/mosquito-data
### Link _No response_ ### Description Getting this error when trying to view dataset preview: Message: 401, message='Unauthorized', url=URL('https://huggingface.co/datasets/TheNoob3131/mosquito-data/resolve/8aceebd6c4a359d216d10ef020868bd9e8c986dd/0_Africa_train.csv') ### Owner _No response_
CLOSED
2022-07-18T17:07:19
2022-07-18T19:44:46
2022-07-18T17:15:50
https://github.com/huggingface/datasets/issues/4707
thenerd31
6
[ "dataset-viewer" ]
4,702
Domain specific dataset discovery on the Hugging Face hub
**Is your feature request related to a problem? Please describe.** ## The problem The datasets hub currently has `8,239` datasets. These datasets span a wide range of different modalities and tasks (currently with a bias towards textual data). There are various ways of identifying datasets that may be releva...
OPEN
2022-07-18T11:14:03
2024-02-12T09:53:43
null
https://github.com/huggingface/datasets/issues/4702
davanstrien
11
[ "enhancement" ]
4,697
Trouble with streaming frgfm/imagenette vision dataset with TAR archive
### Link https://huggingface.co/datasets/frgfm/imagenette ### Description Hello there :wave: Thanks for the amazing work you've done with HF Datasets! I've just started playing with it, and managed to upload my first dataset. But for the second one, I'm having trouble with the preview since there is some archive...
CLOSED
2022-07-18T02:51:09
2022-08-01T15:10:57
2022-08-01T15:10:57
https://github.com/huggingface/datasets/issues/4697
frgfm
5
[ "streaming" ]
4,696
Cannot load LinCE dataset
## Describe the bug Cannot load LinCE dataset due to a connection error ## Steps to reproduce the bug ```python from datasets import load_dataset dataset = load_dataset("lince", "ner_spaeng") ``` A notebook with this code and corresponding error can be found at https://colab.research.google.com/drive/1...
CLOSED
2022-07-17T19:01:54
2022-07-18T09:20:40
2022-07-18T07:24:22
https://github.com/huggingface/datasets/issues/4696
finiteautomata
2
[ "bug" ]
4,694
Distributed data parallel training for streaming datasets
### Feature request Any documentations for the the `load_dataset(streaming=True)` for (multi-node multi-GPU) DDP training? ### Motivation Given a bunch of data files, it is expected to split them onto different GPUs. Is there a guide or documentation? ### Your contribution Does it requires manually spli...
OPEN
2022-07-17T01:29:43
2023-04-26T18:21:09
null
https://github.com/huggingface/datasets/issues/4694
cyk1337
6
[ "enhancement" ]
4,692
Unable to cast a column with `Image()` by using the `cast_column()` feature
## Describe the bug A clear and concise description of what the bug is. When I create a dataset, then add a column to the created dataset through the `dataset.add_column` feature and then try to cast a column of the dataset (this column contains image paths) with `Image()` by using the `cast_column()` feature, I ge...
CLOSED
2022-07-15T22:56:03
2022-07-19T13:36:24
2022-07-19T13:36:24
https://github.com/huggingface/datasets/issues/4692
skrishnan99
1
[ "bug" ]
4,691
Dataset Viewer issue for rajistics/indian_food_images
### Link https://huggingface.co/datasets/rajistics/indian_food_images/viewer/rajistics--indian_food_images/train ### Description I have a train/test split in my dataset <img width="410" alt="Screen Shot 2022-07-15 at 11 44 42 AM" src="https://user-images.githubusercontent.com/6808012/179293215-7b419ec3-3527-46f2-8...
CLOSED
2022-07-15T19:03:15
2022-07-18T15:02:03
2022-07-18T15:02:03
https://github.com/huggingface/datasets/issues/4691
rajshah4
1
[ "dataset-viewer" ]
4,684
How to assign new values to Dataset?
![image](https://user-images.githubusercontent.com/37113676/179149159-bbbda0c8-a661-403c-87ed-dc2b4219cd68.png) Hi, if I want to change some values of the dataset, or add new columns to it, how can I do it? For example, I want to change all the labels of the SST2 dataset to `0`: ```python from datasets import l...
CLOSED
2022-07-15T04:17:57
2023-03-20T15:50:41
2022-10-10T11:53:38
https://github.com/huggingface/datasets/issues/4684
beyondguo
2
[ "enhancement" ]
4,682
weird issue/bug with columns (dataset iterable/stream mode)
I have a dataset online (CloverSearch/cc-news-mutlilingual) that has a bunch of columns, two of which are "score_title_maintext" and "score_title_description". the original files are jsonl formatted. I was trying to iterate through via streaming mode and grab all "score_title_description" values, but I kept getting key...
OPEN
2022-07-14T13:26:47
2022-07-14T13:26:47
null
https://github.com/huggingface/datasets/issues/4682
eunseojo
0
[]
4,681
IndexError when loading ImageFolder
## Describe the bug Loading an image dataset with `imagefolder` throws `IndexError: list index out of range` when the given folder contains a non-image file (like a csv). ## Steps to reproduce the bug Put a csv file in a folder with images and load it: ```python import datasets datasets.load_dataset("imagefold...
CLOSED
2022-07-14T10:57:55
2022-07-25T12:37:54
2022-07-25T12:37:54
https://github.com/huggingface/datasets/issues/4681
johko
2
[ "bug" ]
4,680
Dataset Viewer issue for codeparrot/xlcost-text-to-code
### Link https://huggingface.co/datasets/codeparrot/xlcost-text-to-code ### Description Error ``` Server Error Status code: 400 Exception: TypeError Message: 'NoneType' object is not iterable ``` Before I did a minor change in the dataset script (removing some comments), the viewer was working but...
CLOSED
2022-07-14T09:45:50
2022-07-18T16:37:00
2022-07-18T16:04:36
https://github.com/huggingface/datasets/issues/4680
loubnabnl
5
[]