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
864
Unable to download cnn_dailymail dataset
### Script to reproduce the error ``` from datasets import load_dataset train_dataset = load_dataset("cnn_dailymail", "3.0.0", split= 'train[:10%') valid_dataset = load_dataset("cnn_dailymail","3.0.0", split="validation[:5%]") ``` ### Error ``` -------------------------------------------------------------...
CLOSED
2020-11-18T04:38:02
2020-11-20T05:22:11
2020-11-20T05:22:10
https://github.com/huggingface/datasets/issues/864
rohitashwa1907
6
[ "dataset bug" ]
861
Possible Bug: Small training/dataset file creates gigantic output
Hey guys, I was trying to create a new bert model from scratch via _huggingface transformers + tokenizers + dataets_ (actually using this example script by your team: https://github.com/huggingface/transformers/blob/master/examples/language-modeling/run_mlm.py). It was supposed to be a first test with a small 5 GB r...
CLOSED
2020-11-17T13:48:59
2021-03-30T14:04:04
2021-03-22T12:04:55
https://github.com/huggingface/datasets/issues/861
NebelAI
7
[ "enhancement", "question" ]
860
wmt16 cs-en does not donwload
Hi I am trying with wmt16, cs-en pair, thanks for the help, perhaps similar to the ro-en issue. thanks split="train", n_obs=data_args.n_train) for task in data_args.task} File "finetune_t5_trainer.py", line 109, in <dictcomp> split="train", n_obs=data_args.n_train) for task in data_args.task} File "/hom...
CLOSED
2020-11-17T13:45:35
2022-10-05T12:27:00
2022-10-05T12:26:59
https://github.com/huggingface/datasets/issues/860
rabeehk
1
[ "dataset bug" ]
854
wmt16 does not download
Hi, I appreciate your help with the following error, thanks >>> from datasets import load_dataset >>> dataset = load_dataset("wmt16", "ro-en", split="train") Downloading and preparing dataset wmt16/ro-en (download: Unknown size, generated: Unknown size, post-processed: Unknown size, total: Unknown size) to /root/...
CLOSED
2020-11-16T09:31:51
2022-10-05T12:27:42
2022-10-05T12:27:42
https://github.com/huggingface/datasets/issues/854
rabeehk
12
[ "dataset bug" ]
853
concatenate_datasets support axis=0 or 1 ?
I want to achieve the following result ![image](https://user-images.githubusercontent.com/12437751/99207426-f0c8db80-27f8-11eb-820a-4d9f7287b742.png)
CLOSED
2020-11-16T02:46:23
2021-04-19T16:07:18
2021-04-19T16:07:18
https://github.com/huggingface/datasets/issues/853
renqingcolin
10
[ "enhancement", "help wanted", "question" ]
852
wmt cannot be downloaded
Hi, I appreciate your help with the following error, thanks >>> from datasets import load_dataset >>> dataset = load_dataset("wmt16", "ro-en", split="train") Downloading and preparing dataset wmt16/ro-en (download: Unknown size, generated: Unknown size, post-processed: Unknown size, total: Unknown size) to /root/...
CLOSED
2020-11-16T01:04:41
2020-11-16T09:31:58
2020-11-16T09:31:58
https://github.com/huggingface/datasets/issues/852
rabeehk
0
[ "dataset request" ]
849
Load amazon dataset
Hi, I was going through amazon_us_reviews dataset and found that example API usage given on website is different from the API usage while loading dataset. Eg. what API usage is on the [website](https://huggingface.co/datasets/amazon_us_reviews) ``` from datasets import load_dataset dataset = load_dataset("amaz...
CLOSED
2020-11-13T08:34:24
2020-11-17T07:22:59
2020-11-17T07:22:59
https://github.com/huggingface/datasets/issues/849
bhavitvyamalik
1
[]
848
Error when concatenate_datasets
Hello, when I concatenate two dataset loading from disk, I encountered a problem: ``` test_dataset = load_from_disk('data/test_dataset') trn_dataset = load_from_disk('data/train_dataset') train_dataset = concatenate_datasets([trn_dataset, test_dataset]) ``` And it reported ValueError blow: ``` --------------...
CLOSED
2020-11-13T07:56:02
2020-11-13T17:40:59
2020-11-13T15:55:10
https://github.com/huggingface/datasets/issues/848
shexuan
4
[]
847
multiprocessing in dataset map "can only test a child process"
Using a dataset with a single 'text' field and a fast tokenizer in a jupyter notebook. ``` def tokenizer_fn(example): return tokenizer.batch_encode_plus(example['text']) ds_tokenized = text_dataset.map(tokenizer_fn, batched=True, num_proc=6, remove_columns=['text']) ``` ``` -------------------------...
CLOSED
2020-11-13T06:01:04
2022-10-05T12:22:51
2022-10-05T12:22:51
https://github.com/huggingface/datasets/issues/847
timothyjlaurent
8
[]
846
Add HoVer multi-hop fact verification dataset
## Adding a Dataset - **Name:** HoVer - **Description:** https://twitter.com/YichenJiang9/status/1326954363806429186 contains 20K claim verification examples - **Paper:** https://arxiv.org/abs/2011.03088 - **Data:** https://hover-nlp.github.io/ - **Motivation:** There are still few multi-hop information extraction...
CLOSED
2020-11-12T19:55:46
2020-12-10T21:47:33
2020-12-10T21:47:33
https://github.com/huggingface/datasets/issues/846
yjernite
3
[ "dataset request" ]
843
use_custom_baseline still produces errors for bertscore
`metric = load_metric('bertscore')` `a1 = "random sentences"` `b1 = "random sentences"` `metric.compute(predictions = [a1], references = [b1], lang = 'en')` `Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/home/stephen_chan/.local/lib/python3.6/site-packages/datasets/metric.py"...
CLOSED
2020-11-12T11:44:32
2024-05-28T16:30:17
2021-02-09T14:21:48
https://github.com/huggingface/datasets/issues/843
penatbater
5
[ "metric bug" ]
842
How to enable `.map()` pre-processing pipelines to support multi-node parallelism?
Hi, Currently, multiprocessing can be enabled for the `.map()` stages on a single node. However, in the case of multi-node training, (since more than one node would be available) I'm wondering if it's possible to extend the parallel processing among nodes, instead of only 1 node running the `.map()` while the other ...
OPEN
2020-11-12T02:04:38
2025-03-26T09:10:22
null
https://github.com/huggingface/datasets/issues/842
shangw-nvidia
5
[]
841
Can not reuse datasets already downloaded
Hello, I need to connect to a frontal node (with http proxy, no gpu) before connecting to a gpu node (but no http proxy, so can not use wget so on). I successfully downloaded and reuse the wikipedia datasets in a frontal node. When I connect to the gpu node, I supposed to use the downloaded datasets from cache, but...
CLOSED
2020-11-11T12:42:15
2020-11-11T18:17:16
2020-11-11T18:17:16
https://github.com/huggingface/datasets/issues/841
jc-hou
2
[]
839
XSum dataset missing spaces between sentences
I noticed that the XSum dataset has no space between sentences. This could lead to worse results for anyone training or testing on it. Here's an example (0th entry in the test set): `The London trio are up for best UK act and best album, as well as getting two nominations in the best song category."We got told like ...
OPEN
2020-11-11T00:34:43
2020-11-11T00:34:43
null
https://github.com/huggingface/datasets/issues/839
loganlebanoff
0
[]
836
load_dataset with 'csv' is not working. while the same file is loading with 'text' mode or with pandas
Hi All I am trying to load a custom dataset and I am trying to load a single file to make sure the file is loading correctly: dataset = load_dataset('csv', data_files=files) When I run it I get: Downloading and preparing dataset csv/default-35575a1051604c88 (download: Unknown size, generated: Unknown size, post-...
CLOSED
2020-11-10T19:35:40
2021-11-24T16:59:19
2020-11-19T17:35:38
https://github.com/huggingface/datasets/issues/836
randubin
8
[ "dataset bug" ]
835
Wikipedia postprocessing
Hi, thanks for this library! Running this code: ```py import datasets wikipedia = datasets.load_dataset("wikipedia", "20200501.de") print(wikipedia['train']['text'][0]) ``` I get: ``` mini|Ricardo Flores Magón mini|Mexikanische Revolutionäre, Magón in der Mitte anführend, gegen die Diktatur von Porfir...
CLOSED
2020-11-10T17:26:38
2020-11-10T18:23:20
2020-11-10T17:49:21
https://github.com/huggingface/datasets/issues/835
bminixhofer
3
[]
834
[GEM] add WikiLingua cross-lingual abstractive summarization dataset
## Adding a Dataset - **Name:** WikiLingua - **Description:** The dataset includes ~770k article and summary pairs in 18 languages from WikiHow. The gold-standard article-summary alignments across languages were extracted by aligning the images that are used to describe each how-to step in an article. - **Paper:** h...
CLOSED
2020-11-10T17:00:43
2021-04-15T12:04:09
2021-04-15T12:01:38
https://github.com/huggingface/datasets/issues/834
yjernite
2
[ "dataset request" ]
833
[GEM] add ASSET text simplification dataset
## Adding a Dataset - **Name:** ASSET - **Description:** ASSET is a crowdsourced multi-reference corpus for assessing sentence simplification in English where each simplification was produced by executing several rewriting transformations. - **Paper:** https://www.aclweb.org/anthology/2020.acl-main.424.pdf - **Dat...
CLOSED
2020-11-10T16:56:30
2020-12-03T13:38:15
2020-12-03T13:38:15
https://github.com/huggingface/datasets/issues/833
yjernite
0
[ "dataset request" ]
832
[GEM] add WikiAuto text simplification dataset
## Adding a Dataset - **Name:** WikiAuto - **Description:** Sentences in English Wikipedia and their corresponding sentences in Simple English Wikipedia that are written with simpler grammar and word choices. A lot of lexical and syntactic paraphrasing. - **Paper:** https://www.aclweb.org/anthology/2020.acl-main.70...
CLOSED
2020-11-10T16:53:23
2020-12-03T13:38:08
2020-12-03T13:38:08
https://github.com/huggingface/datasets/issues/832
yjernite
0
[ "dataset request" ]
831
[GEM] Add WebNLG dataset
## Adding a Dataset - **Name:** WebNLG - **Description:** WebNLG consists of Data/Text pairs where the data is a set of triples extracted from DBpedia and the text is a verbalisation of these triples (16,095 data inputs and 42,873 data-text pairs). The data is available in English and Russian - **Paper:** https://ww...
CLOSED
2020-11-10T16:46:48
2020-12-03T13:38:01
2020-12-03T13:38:01
https://github.com/huggingface/datasets/issues/831
yjernite
0
[ "dataset request" ]
830
[GEM] add ToTTo Table-to-text dataset
## Adding a Dataset - **Name:** ToTTo - **Description:** ToTTo is an open-domain English table-to-text dataset with over 120,000 training examples that proposes a controlled generation task: given a Wikipedia table and a set of highlighted table cells, produce a one-sentence description. - **Paper:** https://arxiv.o...
CLOSED
2020-11-10T16:38:34
2020-12-10T13:06:02
2020-12-10T13:06:01
https://github.com/huggingface/datasets/issues/830
yjernite
1
[ "dataset request" ]
829
[GEM] add Schema-Guided Dialogue
## Adding a Dataset - **Name:** The Schema-Guided Dialogue Dataset - **Description:** The Schema-Guided Dialogue (SGD) dataset consists of over 20k annotated multi-domain, task-oriented conversations between a human and a virtual assistant. These conversations involve interactions with services and APIs spanning 20 d...
CLOSED
2020-11-10T16:33:44
2020-12-03T13:37:50
2020-12-03T13:37:50
https://github.com/huggingface/datasets/issues/829
yjernite
0
[ "dataset request" ]
827
[GEM] MultiWOZ dialogue dataset
## Adding a Dataset - **Name:** MultiWOZ (Multi-Domain Wizard-of-Oz) - **Description:** 10k annotated human-human dialogues. Each dialogue consists of a goal, multiple user and system utterances as well as a belief state. Only system utterances are annotated with dialogue acts – there are no annotations from the user...
CLOSED
2020-11-10T14:57:50
2022-10-05T12:31:13
2022-10-05T12:31:13
https://github.com/huggingface/datasets/issues/827
yjernite
2
[ "dataset request" ]
826
[GEM] Add E2E dataset
## Adding a Dataset - **Name:** E2E NLG dataset (for End-to-end natural language generation) - **Description:**a dataset for training end-to-end, datadriven natural language generation systems in the restaurant domain, the datasets consists of 5,751 dialogue-act Meaning Representations (structured data) and 8.1 refer...
CLOSED
2020-11-10T14:50:40
2020-12-03T13:37:57
2020-12-03T13:37:57
https://github.com/huggingface/datasets/issues/826
yjernite
0
[ "dataset request" ]
824
Discussion using datasets in offline mode
`datasets.load_dataset("csv", ...)` breaks if you have no connection (There is already this issue https://github.com/huggingface/datasets/issues/761 about it). It seems to be the same for metrics too. I create this ticket to discuss a bit and gather what you have in mind or other propositions. Here are some point...
CLOSED
2020-11-10T13:10:51
2023-10-26T09:26:26
2022-02-15T10:32:36
https://github.com/huggingface/datasets/issues/824
mandubian
11
[ "enhancement", "generic discussion" ]
823
how processing in batch works in datasets
Hi, I need to process my datasets before it is passed to dataloader in batch, here is my codes ``` class AbstractTask(ABC): task_name: str = NotImplemented preprocessor: Callable = NotImplemented split_to_data_split: Mapping[str, str] = NotImplemented tokenizer: Callable = NotImplemented ...
CLOSED
2020-11-10T11:11:17
2020-11-10T13:11:10
2020-11-10T13:11:09
https://github.com/huggingface/datasets/issues/823
rabeehkarimimahabadi
3
[ "dataset request" ]
822
datasets freezes
Hi, I want to load these two datasets and convert them to Dataset format in torch and the code freezes for me, could you have a look please? thanks dataset1 = load_dataset("squad", split="train[:10]") dataset1 = dataset1.set_format(type='torch', columns=['context', 'answers', 'question']) dataset2 = load_datase...
CLOSED
2020-11-10T05:10:19
2023-07-20T16:08:14
2023-07-20T16:08:13
https://github.com/huggingface/datasets/issues/822
rabeehkarimimahabadi
2
[ "dataset bug" ]
821
`kor_nli` dataset doesn't being loaded properly
There are two issues from `kor_nli` dataset 1. csv.DictReader failed to split features by tab - Should not exist `None` value in label feature, but there it is. ```python kor_nli_train['train'].unique('gold_label') # ['neutral', 'entailment', 'contradiction', None] ``` -...
CLOSED
2020-11-10T02:04:12
2020-11-16T13:59:12
2020-11-16T13:59:12
https://github.com/huggingface/datasets/issues/821
sackoh
0
[]
817
Add MRQA dataset
## Adding a Dataset - **Name:** MRQA - **Description:** Collection of different (subsets of) QA datasets all converted to the same format to evaluate out-of-domain generalization (the datasets come from different domains, distributions, etc.). Some datasets are used for training and others are used for evaluation. Th...
CLOSED
2020-11-09T15:52:19
2020-12-04T15:44:42
2020-12-04T15:44:41
https://github.com/huggingface/datasets/issues/817
VictorSanh
1
[ "dataset request" ]
816
[Caching] Dill globalvars() output order is not deterministic and can cause cache issues.
Dill uses `dill.detect.globalvars` to get the globals used by a function in a recursive dump. `globalvars` returns a dictionary of all the globals that a dumped function needs. However the order of the keys in this dict is not deterministic and can cause caching issues. To fix that one could register an implementati...
CLOSED
2020-11-09T15:01:20
2020-11-11T15:20:50
2020-11-11T15:20:50
https://github.com/huggingface/datasets/issues/816
lhoestq
1
[]
815
Is dataset iterative or not?
Hi I want to use your library for large-scale training, I am not sure if this is implemented as iterative datasets or not? could you provide me with example how I can use datasets as iterative datasets? thanks
CLOSED
2020-11-09T09:11:48
2020-11-10T10:50:03
2020-11-10T10:50:03
https://github.com/huggingface/datasets/issues/815
rabeehkarimimahabadi
8
[ "dataset request" ]
814
Joining multiple datasets
Hi I have multiple iterative datasets from your library with different size and I want to join them in a way that each datasets is sampled equally, so smaller datasets more, larger one less, could you tell me how to implement this in pytorch? thanks
CLOSED
2020-11-08T16:19:30
2020-11-08T19:38:48
2020-11-08T19:38:48
https://github.com/huggingface/datasets/issues/814
rabeehkarimimahabadi
1
[ "dataset request" ]
813
How to implement DistributedSampler with datasets
Hi, I am using your datasets to define my dataloaders, and I am training finetune_trainer.py in huggingface repo on them. I need a distributedSampler to be able to train the models on TPUs being able to distribute the load across the TPU cores. Could you tell me how I can implement the distribued sampler when using d...
CLOSED
2020-11-08T15:27:11
2022-10-05T12:54:23
2022-10-05T12:54:23
https://github.com/huggingface/datasets/issues/813
rabeehkarimimahabadi
4
[ "dataset request" ]
812
Too much logging
I'm doing this in the beginning of my script: from datasets.utils import logging as datasets_logging datasets_logging.set_verbosity_warning() but I'm still getting these logs: [2020-11-07 15:45:41,908][filelock][INFO] - Lock 139958278886176 acquired on /home/username/.cache/huggingface/datasets/cfe20ffaa80ef1...
CLOSED
2020-11-07T23:56:30
2021-01-26T14:31:34
2020-11-16T17:06:42
https://github.com/huggingface/datasets/issues/812
dspoka
7
[]
811
nlp viewer error
Hello, when I select amazon_us_reviews in nlp viewer, it shows error. https://huggingface.co/nlp/viewer/?dataset=amazon_us_reviews ![image](https://user-images.githubusercontent.com/30210529/98447334-4aa81200-2124-11eb-9dca-82c3ab34ccc2.png)
CLOSED
2020-11-07T17:08:58
2022-02-15T10:51:44
2022-02-14T15:24:20
https://github.com/huggingface/datasets/issues/811
jc-hou
3
[ "nlp-viewer" ]
809
Add Google Taskmaster dataset
## Adding a Dataset - **Name:** Taskmaster - **Description:** A large dataset of task-oriented dialogue with annotated goals (55K dialogues covering entertainment and travel reservations) - **Paper:** https://arxiv.org/abs/1909.05358 - **Data:** https://github.com/google-research-datasets/Taskmaster - **Motivation...
CLOSED
2020-11-06T15:10:41
2021-04-20T13:09:26
2021-04-20T13:09:26
https://github.com/huggingface/datasets/issues/809
yjernite
2
[ "dataset request" ]
807
load_dataset for LOCAL CSV files report CONNECTION ERROR
## load_dataset for LOCAL CSV files report CONNECTION ERROR - **Description:** A local demo csv file: ``` import pandas as pd import numpy as np from datasets import load_dataset import torch import transformers df = pd.DataFrame(np.arange(1200).reshape(300,4)) df.to_csv('test.csv', header=False, index=Fal...
CLOSED
2020-11-06T06:33:04
2021-01-11T01:30:27
2020-11-14T05:30:34
https://github.com/huggingface/datasets/issues/807
shexuan
11
[]
806
Quail dataset urls are out of date
<h3>Code</h3> ``` from datasets import load_dataset quail = load_dataset('quail') ``` <h3>Error</h3> ``` FileNotFoundError: Couldn't find file at https://raw.githubusercontent.com/text-machine-lab/quail/master/quail_v1.2/xml/ordered/quail_1.2_train.xml ``` As per [quail v1.3 commit](https://github.co...
CLOSED
2020-11-05T19:40:19
2020-11-10T14:02:51
2020-11-10T14:02:51
https://github.com/huggingface/datasets/issues/806
ngdodd
3
[]
805
On loading a metric from datasets, I get the following error
`from datasets import load_metric` `metric = load_metric('bleurt')` Traceback: 210 class _ArrayXDExtensionType(pa.PyExtensionType): 211 212 ndims: int = None AttributeError: module 'pyarrow' has no attribute 'PyExtensionType' Any help will be appreciated. Thank you.
CLOSED
2020-11-05T15:14:38
2022-02-14T15:32:59
2022-02-14T15:32:59
https://github.com/huggingface/datasets/issues/805
laibamehnaz
1
[]
804
Empty output/answer in TriviaQA test set (both in 'kilt_tasks' and 'trivia_qa')
# The issue It's all in the title, it appears to be fine on the train and validation sets. Is there some kind of mapping to do like for the questions (see https://github.com/huggingface/datasets/blob/master/datasets/kilt_tasks/README.md) ? # How to reproduce ```py from datasets import load_dataset kilt_tas...
CLOSED
2020-11-05T11:38:01
2020-11-09T14:14:59
2020-11-09T14:14:58
https://github.com/huggingface/datasets/issues/804
PaulLerner
3
[]
801
How to join two datasets?
Hi, I'm wondering if it's possible to join two (preprocessed) datasets with the same number of rows but different labels? I'm currently trying to create paired sentences for BERT from `wikipedia/'20200501.en`, and I couldn't figure out a way to create a paired sentence using `.map()` where the second sentence is...
CLOSED
2020-11-04T03:53:11
2020-12-23T14:02:58
2020-12-23T14:02:58
https://github.com/huggingface/datasets/issues/801
shangw-nvidia
3
[]
798
Cannot load TREC dataset: ConnectionError
## Problem I cannot load "trec" dataset, it results with ConnectionError as shown below. I've tried on both Google Colab and locally. * `requests.head('http://cogcomp.org/Data/QA/QC/train_5500.label')` returns <Response [302]>. * `requests.head('http://cogcomp.org/Data/QA/QC/train_5500.label', allow_redirects=True...
CLOSED
2020-11-03T17:45:22
2022-02-14T15:34:22
2022-02-14T15:34:22
https://github.com/huggingface/datasets/issues/798
kaletap
9
[ "dataset bug" ]
797
Token classification labels are strings and we don't have the list of labels
Not sure if this is an issue we want to fix or not, putting it here so it's not forgotten. Right now, in token classification datasets, the labels for NER, POS and the likes are typed as `Sequence` of `strings`, which is wrong in my opinion. These should be `Sequence` of `ClassLabel` or some types that gives easy acces...
CLOSED
2020-11-03T15:33:30
2022-02-14T15:41:54
2022-02-14T15:41:53
https://github.com/huggingface/datasets/issues/797
sgugger
4
[ "enhancement", "Dataset discussion" ]
795
Descriptions of raw and processed versions of wikitext are inverted
Nothing of importance, but it looks like the descriptions of wikitext-n-v1 and wikitext-n-raw-v1 are inverted for both n=2 and n=103. I just verified by loading them and the `<unk>` tokens are present in the non-raw versions, which confirms that it's a mere inversion of the descriptions and not of the datasets themselv...
CLOSED
2020-11-03T10:24:51
2022-02-14T15:46:21
2022-02-14T15:46:21
https://github.com/huggingface/datasets/issues/795
fraboniface
2
[ "dataset bug" ]
794
self.options cannot be converted to a Python object for pickling
Hi, Currently I am trying to load csv file with customized read_options. And the latest master seems broken if we pass the ReadOptions object. Here is a code snippet ```python from datasets import load_dataset from pyarrow.csv import ReadOptions load_dataset("csv", data_files=["out.csv"], read_options=ReadOpt...
CLOSED
2020-11-03T09:27:34
2020-11-19T17:35:38
2020-11-19T17:35:38
https://github.com/huggingface/datasets/issues/794
hzqjyyx
1
[ "bug" ]
792
KILT dataset: empty string in triviaqa input field
# What happened Both train and test splits of the triviaqa dataset (part of the KILT benchmark) seem to have empty string in their input field (unlike the natural questions dataset, part of the same benchmark) # Versions KILT version is `1.0.0` `datasets` version is `1.1.2` [more here](https://gist.github.com/Pa...
CLOSED
2020-11-02T17:33:54
2020-11-05T10:34:59
2020-11-05T10:34:59
https://github.com/huggingface/datasets/issues/792
PaulLerner
1
[]
790
Error running pip install -e ".[dev]" on MacOS 10.13.6: faiss/python does not exist
I was following along with https://huggingface.co/docs/datasets/share_dataset.html#adding-tests-and-metadata-to-the-dataset when I ran into this error. ```sh git clone https://github.com/huggingface/datasets cd datasets virtualenv venv -p python3 --system-site-packages source venv/bin/activate pip install -e "....
CLOSED
2020-11-02T12:36:35
2020-11-10T14:05:02
2020-11-10T14:05:02
https://github.com/huggingface/datasets/issues/790
shawwn
2
[]
788
failed to reuse cache
I packed the `load_dataset ` in a function of class, and cached data in a directory. But when I import the class and use the function, the data still have to be downloaded again. The information (Downloading and preparing dataset cnn_dailymail/3.0.0 (download: 558.32 MiB, generated: 1.28 GiB, post-processed: Unknown si...
CLOSED
2020-11-02T02:42:36
2020-11-02T12:26:15
2020-11-02T12:26:15
https://github.com/huggingface/datasets/issues/788
WangHexie
0
[]
786
feat(dataset): multiprocessing _generate_examples
forking this out of #741, this issue is only regarding multiprocessing I'd love if there was a dataset configuration parameter `workers`, where when it is `1` it behaves as it does right now, and when its `>1` maybe `_generate_examples` can also get the `pool` and return an iterable using the pool. In my use case...
CLOSED
2020-10-31T16:52:16
2023-01-16T10:59:13
2023-01-16T10:59:13
https://github.com/huggingface/datasets/issues/786
AmitMY
2
[]
784
Issue with downloading Wikipedia data for low resource language
Hi, I tried to download Sundanese and Javanese wikipedia data with the following snippet ``` jv_wiki = datasets.load_dataset('wikipedia', '20200501.jv', beam_runner='DirectRunner') su_wiki = datasets.load_dataset('wikipedia', '20200501.su', beam_runner='DirectRunner') ``` And I get the following error for these tw...
CLOSED
2020-10-31T11:40:00
2022-02-09T17:50:16
2020-11-25T15:42:13
https://github.com/huggingface/datasets/issues/784
SamuelCahyawijaya
5
[]
778
Unexpected behavior when loading cached csv file?
I read a csv file from disk and forgot so specify the right delimiter. When i read the csv file again specifying the right delimiter it had no effect since it was using the cached dataset. I am not sure if this is unwanted behavior since i can always specify `download_mode="force_redownload"`. But i think it would be n...
CLOSED
2020-10-29T16:06:10
2020-10-29T21:21:27
2020-10-29T21:21:27
https://github.com/huggingface/datasets/issues/778
dcfidalgo
2
[]
773
Adding CC-100: Monolingual Datasets from Web Crawl Data
## Adding a Dataset - **Name:** CC-100: Monolingual Datasets from Web Crawl Data - **Description:** https://twitter.com/alex_conneau/status/1321507120848625665 - **Paper:** https://arxiv.org/abs/1911.02116 - **Data:** http://data.statmt.org/cc-100/ - **Motivation:** A large scale multi-lingual language modeling da...
CLOSED
2020-10-28T18:20:41
2022-01-26T13:22:54
2020-12-14T10:20:07
https://github.com/huggingface/datasets/issues/773
yjernite
4
[ "dataset request" ]
771
Using `Dataset.map` with `n_proc>1` print multiple progress bars
When using `Dataset.map` with `n_proc > 1`, only one of the processes should print a progress bar (to make the output readable). Right now, `n_proc` progress bars are printed.
CLOSED
2020-10-28T14:13:27
2023-02-13T20:16:39
2023-02-13T20:16:39
https://github.com/huggingface/datasets/issues/771
sgugger
3
[]
769
How to choose proper download_mode in function load_dataset?
Hi, I am a beginner to datasets and I try to use datasets to load my csv file. my csv file looks like this ``` text,label "Effective but too-tepid biopic",3 "If you sometimes like to go to the movies to have fun , Wasabi is a good place to start .",4 "Emerges as something rare , an issue movie that 's so hones...
CLOSED
2020-10-28T09:16:19
2022-02-22T12:22:52
2022-02-22T12:22:52
https://github.com/huggingface/datasets/issues/769
jzq2000
5
[]
768
Add a `lazy_map` method to `Dataset` and `DatasetDict`
The library is great, but it would be even more awesome with a `lazy_map` method implemented on `Dataset` and `DatasetDict`. This would apply a function on a give item but when the item is requested. Two use cases: 1. load image on the fly 2. apply a random function and get different outputs at each epoch (like dat...
OPEN
2020-10-27T22:33:03
2020-10-28T08:58:13
null
https://github.com/huggingface/datasets/issues/768
sgugger
1
[ "enhancement" ]
767
Add option for named splits when using ds.train_test_split
### Feature Request 🚀 Can we add a way to name your splits when using the `.train_test_split` function? In almost every use case I've come across, I have a `train` and a `test` split in my `DatasetDict`, and I want to create a `validation` split. Therefore, its kinda useless to get a `test` split back from `tra...
OPEN
2020-10-27T19:59:44
2020-11-10T14:05:21
null
https://github.com/huggingface/datasets/issues/767
nateraw
1
[ "enhancement" ]
766
[GEM] add DART data-to-text generation dataset
## Adding a Dataset - **Name:** DART - **Description:** DART consists of 82,191 examples across different domains with each input being a semantic RDF triple set derived from data records in tables and the tree ontology of the schema, annotated with sentence descriptions that cover all facts in the triple set. - **P...
CLOSED
2020-10-27T17:34:04
2020-12-03T13:37:18
2020-12-03T13:37:18
https://github.com/huggingface/datasets/issues/766
yjernite
2
[ "dataset request" ]
765
[GEM] Add DART data-to-text generation dataset
## Adding a Dataset - **Name:** DART - **Description:** DART consists of 82,191 examples across different domains with each input being a semantic RDF triple set derived from data records in tables and the tree ontology of the schema, annotated with sentence descriptions that cover all facts in the triple set. - **P...
CLOSED
2020-10-27T17:32:23
2020-10-27T17:34:21
2020-10-27T17:34:21
https://github.com/huggingface/datasets/issues/765
yjernite
0
[ "dataset request" ]
762
[GEM] Add Czech Restaurant data-to-text generation dataset
- Paper: https://www.aclweb.org/anthology/W19-8670.pdf - Data: https://github.com/UFAL-DSG/cs_restaurant_dataset - The dataset will likely be part of the GEM benchmark
CLOSED
2020-10-27T16:00:47
2020-12-03T13:37:44
2020-12-03T13:37:44
https://github.com/huggingface/datasets/issues/762
yjernite
0
[ "dataset request" ]
761
Downloaded datasets are not usable offline
I've been trying to use the IMDB dataset offline, but after downloading it and turning off the internet it still raises an error from the ```requests``` library trying to reach for the online dataset. Is this the intended behavior ? (Sorry, I wrote the the first version of this issue while still on nlp 0.3.0).
CLOSED
2020-10-26T20:54:46
2022-02-15T10:32:28
2022-02-15T10:32:28
https://github.com/huggingface/datasets/issues/761
ghazi-f
2
[]
760
Add meta-data to the HANS dataset
The current version of the [HANS dataset](https://github.com/huggingface/datasets/blob/master/datasets/hans/hans.py) is missing the additional information provided for each example, including the sentence parses, heuristic and subcase.
CLOSED
2020-10-26T14:56:53
2020-12-03T13:38:34
2020-12-03T13:38:34
https://github.com/huggingface/datasets/issues/760
yjernite
0
[ "good first issue", "dataset bug" ]
759
(Load dataset failure) ConnectionError: Couldn’t reach https://raw.githubusercontent.com/huggingface/datasets/1.1.2/datasets/cnn_dailymail/cnn_dailymail.py
Hey, I want to load the cnn-dailymail dataset for fine-tune. I write the code like this from datasets import load_dataset test_dataset = load_dataset(“cnn_dailymail”, “3.0.0”, split=“train”) And I got the following errors. Traceback (most recent call last): File “test.py”, line 7, in test_dataset = load_da...
CLOSED
2020-10-25T15:34:57
2023-09-13T23:56:51
2021-08-04T18:10:09
https://github.com/huggingface/datasets/issues/759
AI678
19
[]
758
Process 0 very slow when using num_procs with map to tokenizer
<img width="721" alt="image" src="https://user-images.githubusercontent.com/17930170/97066109-776d0d00-15ed-11eb-8bba-bb4d2e0fcc33.png"> The code I am using is ``` dataset = load_dataset("text", data_files=[file_path], split='train') dataset = dataset.map(lambda ex: tokenizer(ex["text"], add_speci...
CLOSED
2020-10-24T02:40:20
2020-10-28T03:59:46
2020-10-28T03:59:45
https://github.com/huggingface/datasets/issues/758
ksjae
6
[]
757
CUDA out of memory
In your dataset ,cuda run out of memory as long as the trainer begins: however, without changing any other element/parameter,just switch dataset to `LineByLineTextDataset`,everything becames OK.
CLOSED
2020-10-23T13:57:00
2020-12-23T14:06:29
2020-12-23T14:06:29
https://github.com/huggingface/datasets/issues/757
li1117heex
8
[]
752
Clicking on a metric in the search page points to datasets page giving "Missing dataset" warning
Hi! Sorry if this isn't the right place to talk about the website, I just didn't exactly where to write this. Searching a metric in https://huggingface.co/metrics gives the right results but clicking on a metric (E.g ROUGE) points to https://huggingface.co/datasets/rouge. Clicking on a metric without searching point...
CLOSED
2020-10-21T22:56:23
2020-10-22T16:19:42
2020-10-22T16:19:42
https://github.com/huggingface/datasets/issues/752
ogabrielluiz
2
[]
751
Error loading ms_marco v2.1 using load_dataset()
Code: `dataset = load_dataset('ms_marco', 'v2.1')` Error: ``` `--------------------------------------------------------------------------- JSONDecodeError Traceback (most recent call last) <ipython-input-16-34378c057212> in <module>() 9 10 # Downloading and loading a data...
CLOSED
2020-10-21T19:54:43
2020-11-05T01:31:57
2020-11-05T01:31:57
https://github.com/huggingface/datasets/issues/751
JainSahit
3
[]
750
load_dataset doesn't include `features` in its hash
It looks like the function `load_dataset` does not include what's passed in the `features` argument when creating a hash for a given dataset. As a result, if a user includes new features from an already downloaded dataset, those are ignored. Example: some models on the hub have a different ordering for the labels t...
CLOSED
2020-10-21T15:16:41
2020-10-29T09:36:01
2020-10-29T09:36:01
https://github.com/huggingface/datasets/issues/750
sgugger
0
[]
749
[XGLUE] Adding new dataset
XGLUE is a multilingual GLUE like dataset propesed in this [paper](https://arxiv.org/pdf/2004.01401.pdf). I'm planning on adding the dataset to the library myself in a couple of weeks. Also tagging @JetRunner @qiweizhen in case I need some guidance
CLOSED
2020-10-21T10:51:36
2022-09-30T11:35:30
2021-01-06T10:02:55
https://github.com/huggingface/datasets/issues/749
patrickvonplaten
15
[ "dataset request" ]
744
Dataset Explorer Doesn't Work for squad_es and squad_it
https://huggingface.co/nlp/viewer/?dataset=squad_es https://huggingface.co/nlp/viewer/?dataset=squad_it Both pages show "OSError: [Errno 28] No space left on device".
CLOSED
2020-10-19T19:34:12
2020-10-26T16:36:17
2020-10-26T16:36:17
https://github.com/huggingface/datasets/issues/744
gaotongxiao
1
[ "nlp-viewer" ]
743
load_dataset for CSV files not working
Similar to #622, I've noticed there is a problem when trying to load a CSV file with datasets. ` from datasets import load_dataset ` ` dataset = load_dataset("csv", data_files=["./sample_data.csv"], delimiter="\t", column_names=["title", "text"], script_version="master") ` Displayed error: ` ... ArrowInva...
OPEN
2020-10-19T14:53:51
2025-04-24T06:35:25
null
https://github.com/huggingface/datasets/issues/743
iliemihai
23
[]
741
Creating dataset consumes too much memory
Moving this issue from https://github.com/huggingface/datasets/pull/722 here, because it seems like a general issue. Given the following dataset example, where each example saves a sequence of 260x210x3 images (max length 400): ```python def _generate_examples(self, base_path, split): """ Yields examp...
CLOSED
2020-10-18T06:07:06
2022-02-15T17:03:10
2022-02-15T17:03:10
https://github.com/huggingface/datasets/issues/741
AmitMY
20
[]
737
Trec Dataset Connection Error
**Datasets Version:** 1.1.2 **Python Version:** 3.6/3.7 **Code:** ```python from datasets import load_dataset load_dataset("trec") ``` **Expected behavior:** Download Trec dataset and load Dataset object **Current Behavior:** Get a connection error saying it couldn't reach http://cogcomp.org/Data/...
CLOSED
2020-10-15T15:57:53
2020-10-19T08:54:36
2020-10-19T08:54:36
https://github.com/huggingface/datasets/issues/737
aychang95
1
[]
735
Throw error when an unexpected key is used in data_files
I have found that only "train", "validation" and "test" are valid keys in the `data_files` argument. When you use any other ones, those attached files are silently ignored - leading to unexpected behaviour for the users. So the following, unintuitively, returns only one key (namely `train`). ```python datasets =...
CLOSED
2020-10-15T10:55:27
2020-10-30T13:23:52
2020-10-30T13:23:52
https://github.com/huggingface/datasets/issues/735
BramVanroy
1
[]
730
Possible caching bug
The following code with `test1.txt` containing just "🤗🤗🤗": ``` dataset = datasets.load_dataset('text', data_files=['test1.txt'], split="train", encoding="latin_1") print(dataset[0]) dataset = datasets.load_dataset('text', data_files=['test1.txt'], split="train", encoding="utf-8") print(dataset[0]) ``` produc...
CLOSED
2020-10-14T02:02:34
2022-11-22T01:45:54
2020-10-29T09:36:01
https://github.com/huggingface/datasets/issues/730
ArneBinder
7
[ "bug" ]
729
Better error message when one forgets to call `add_batch` before `compute`
When using metrics, if for some reason a user forgets to call `add_batch` to a metric before `compute` (with no arguments), the error message is a bit cryptic and could probably be made clearer. ## Reproducer ```python import datasets import torch from datasets import Metric class GatherMetric(Metric): ...
CLOSED
2020-10-12T17:59:22
2020-10-29T15:18:24
2020-10-29T15:18:24
https://github.com/huggingface/datasets/issues/729
sgugger
0
[]
728
Passing `cache_dir` to a metric does not work
When passing `cache_dir` to a custom metric, the folder is concatenated to itself at some point and this results in a FileNotFoundError: ## Reproducer ```python import datasets import torch from datasets import Metric class GatherMetric(Metric): def _info(self): return datasets.MetricInfo( ...
CLOSED
2020-10-12T17:55:14
2020-10-29T09:34:42
2020-10-29T09:34:42
https://github.com/huggingface/datasets/issues/728
sgugger
0
[]
727
Parallel downloads progress bar flickers
When there are parallel downloads using the download manager, the tqdm progress bar flickers since all the progress bars are on the same line. To fix that we could simply specify `position=i` for i=0 to n the number of files to download when instantiating the tqdm progress bar. Another way would be to have one "...
OPEN
2020-10-12T13:36:05
2020-10-12T13:36:05
null
https://github.com/huggingface/datasets/issues/727
lhoestq
0
[]
726
"Checksums didn't match for dataset source files" error while loading openwebtext dataset
Hi, I have encountered this problem during loading the openwebtext dataset: ``` >>> dataset = load_dataset('openwebtext') Downloading and preparing dataset openwebtext/plain_text (download: 12.00 GiB, generated: 37.04 GiB, post-processed: Unknown size, total: 49.03 GiB) to /home/admin/.cache/huggingface/datasets/op...
CLOSED
2020-10-12T11:45:10
2022-02-17T17:53:54
2022-02-15T10:38:57
https://github.com/huggingface/datasets/issues/726
SparkJiao
8
[]
724
need to redirect /nlp to /datasets and remove outdated info
It looks like the website still has all the `nlp` data, e.g.: https://huggingface.co/nlp/viewer/?dataset=wikihow&config=all should probably redirect to: https://huggingface.co/datasets/wikihow also for some reason the new information is slightly borked. If you look at the old one it was nicely formatted and had t...
CLOSED
2020-10-11T23:12:12
2020-10-14T17:00:12
2020-10-14T17:00:12
https://github.com/huggingface/datasets/issues/724
stas00
4
[]
723
Adding pseudo-labels to datasets
I recently [uploaded pseudo-labels](https://github.com/huggingface/transformers/blob/master/examples/seq2seq/precomputed_pseudo_labels.md) for CNN/DM, XSUM and WMT16-en-ro to s3, and thom mentioned I should add them to this repo. Since pseudo-labels are just a large model's generations on an existing dataset, what is ...
CLOSED
2020-10-11T21:05:45
2021-08-03T05:11:51
2021-08-03T05:11:51
https://github.com/huggingface/datasets/issues/723
sshleifer
8
[]
721
feat(dl_manager): add support for ftp downloads
I am working on a new dataset (#302) and encounter a problem downloading it. ```python # This is the official download link from https://www-i6.informatik.rwth-aachen.de/~koller/RWTH-PHOENIX-2014-T/ _URL = "ftp://wasserstoff.informatik.rwth-aachen.de/pub/rwth-phoenix/2016/phoenix-2014-T.v3.tar.gz" dl_manager.do...
CLOSED
2020-10-10T15:50:20
2022-02-15T10:44:44
2022-02-15T10:44:43
https://github.com/huggingface/datasets/issues/721
AmitMY
11
[]
720
OSError: Cannot find data file when not using the dummy dataset in RAG
## Environment info transformers version: 3.3.1 Platform: Linux-4.19 Python version: 3.7.7 PyTorch version (GPU?): 1.6.0 Tensorflow version (GPU?): No Using GPU in script?: Yes Using distributed or parallel set-up in script?: No ## To reproduce Steps to reproduce the behaviour...
CLOSED
2020-10-07T14:27:13
2020-12-23T14:04:31
2020-12-23T14:04:31
https://github.com/huggingface/datasets/issues/720
josemlopez
3
[]
712
Error in the notebooks/Overview.ipynb notebook
Hi, I got the following error in **cell number 3** while exploring the **Overview.ipynb** notebook in google colab. I used the [link ](https://colab.research.google.com/github/huggingface/datasets/blob/master/notebooks/Overview.ipynb) provided in the main README file to open it in colab. ```python # You can acc...
CLOSED
2020-10-04T05:58:31
2020-10-05T16:25:40
2020-10-05T16:25:40
https://github.com/huggingface/datasets/issues/712
subhrm
2
[]
709
How to use similarity settings other then "BM25" in Elasticsearch index ?
**QUESTION : How should we use other similarity algorithms supported by Elasticsearch other than "BM25" ?** **ES Reference** https://www.elastic.co/guide/en/elasticsearch/reference/current/index-modules-similarity.html **HF doc reference:** https://huggingface.co/docs/datasets/faiss_and_ea.html **context :** =...
CLOSED
2020-10-03T11:18:49
2022-10-04T17:19:37
2022-10-04T17:19:37
https://github.com/huggingface/datasets/issues/709
nsankar
1
[]
708
Datasets performance slow? - 6.4x slower than in memory dataset
I've been very excited about this amazing datasets project. However, I've noticed that the performance can be substantially slower than using an in-memory dataset. Now, this is expected I guess, due to memory mapping data using arrow files, and you don't get anything for free. But I was surprised at how much slower....
CLOSED
2020-10-03T06:44:07
2021-02-12T14:13:28
2021-02-12T14:13:28
https://github.com/huggingface/datasets/issues/708
eugeneware
10
[]
707
Requirements should specify pyarrow<1
I was looking at the docs on [Perplexity](https://huggingface.co/transformers/perplexity.html) via GPT2. When you load datasets and try to load Wikitext, you get the error, ``` module 'pyarrow' has no attribute 'PyExtensionType' ``` I traced it back to datasets having installed PyArrow 1.0.1 but there's not pinni...
CLOSED
2020-10-02T23:39:39
2020-12-04T08:22:39
2020-10-04T20:50:28
https://github.com/huggingface/datasets/issues/707
mathcass
7
[]
705
TypeError: '<' not supported between instances of 'NamedSplit' and 'NamedSplit'
## Environment info <!-- You can run the command `transformers-cli env` and copy-and-paste its output below. Don't forget to fill out the missing fields in that output! --> - `transformers` version: 3.3.1 (installed from master) - `datasets` version: 1.0.2 (installed as a dependency from transformers) ...
CLOSED
2020-10-02T15:27:55
2020-10-05T08:14:59
2020-10-05T08:14:59
https://github.com/huggingface/datasets/issues/705
pvcastro
2
[]
699
XNLI dataset is not loading
`dataset = datasets.load_dataset(path='xnli')` showing below error ``` /opt/conda/lib/python3.7/site-packages/nlp/utils/info_utils.py in verify_checksums(expected_checksums, recorded_checksums, verification_name) 36 if len(bad_urls) > 0: 37 error_msg = "Checksums didn't match" + for_verifi...
CLOSED
2020-10-02T06:53:16
2020-10-03T17:45:52
2020-10-03T17:43:37
https://github.com/huggingface/datasets/issues/699
imadarsh1001
3
[]
691
Add UI filter to filter datasets based on task
This is great work, so huge shoutout to contributors and huggingface. The [/nlp/viewer](https://huggingface.co/nlp/viewer/) is great and the [/datasets](https://huggingface.co/datasets) page is great. I was wondering if in both or either places we can have a filter that selects if a dataset is good for the following...
CLOSED
2020-10-01T00:56:18
2022-02-15T10:46:50
2022-02-15T10:46:50
https://github.com/huggingface/datasets/issues/691
praateekmahajan
1
[ "enhancement" ]
690
XNLI dataset: NonMatchingChecksumError
Hi, I tried to download "xnli" dataset in colab using `xnli = load_dataset(path='xnli')` but got 'NonMatchingChecksumError' error `NonMatchingChecksumError Traceback (most recent call last) <ipython-input-27-a87bedc82eeb> in <module>() ----> 1 xnli = load_dataset(path='xnli') 3 frames /usr...
CLOSED
2020-09-30T17:50:03
2020-10-01T17:15:08
2020-10-01T14:01:14
https://github.com/huggingface/datasets/issues/690
xiey1
5
[]
687
`ArrowInvalid` occurs while running `Dataset.map()` function
It seems to fail to process the final batch. This [colab](https://colab.research.google.com/drive/1_byLZRHwGP13PHMkJWo62Wp50S_Z2HMD?usp=sharing) can reproduce the error. Code: ```python # train_ds = Dataset(features: { # 'title': Value(dtype='string', id=None), # 'score': Value(dtype='float64', id=Non...
CLOSED
2020-09-30T06:16:50
2020-09-30T09:53:03
2020-09-30T09:53:03
https://github.com/huggingface/datasets/issues/687
peinan
2
[]
686
Dataset browser url is still https://huggingface.co/nlp/viewer/
Might be worth updating to https://huggingface.co/datasets/viewer/
CLOSED
2020-09-29T19:21:52
2021-01-08T18:29:26
2021-01-08T18:29:26
https://github.com/huggingface/datasets/issues/686
jarednielsen
2
[]
678
The download instructions for c4 datasets are not contained in the error message
The manual download instructions are not clear ```The dataset c4 with config en requires manual data. Please follow the manual download instructions: <bound method C4.manual_download_instructions of <datasets_modules.datasets.c4.830b0c218bd41fed439812c8dd19dbd4767d2a3faa385eb695cf8666c982b1b3.c4.C4 object at 0x7ff...
CLOSED
2020-09-28T08:30:54
2020-09-28T10:26:09
2020-09-28T10:26:09
https://github.com/huggingface/datasets/issues/678
Narsil
2
[]
676
train_test_split returns empty dataset item
I try to split my dataset by `train_test_split`, but after that the item in `train` and `test` `Dataset` is empty. The codes: ``` yelp_data = datasets.load_from_disk('/home/ssd4/huanglianzhe/test_yelp') print(yelp_data[0]) yelp_data = yelp_data.train_test_split(test_size=0.1) print(yelp_data) pri...
CLOSED
2020-09-28T07:19:33
2020-10-07T13:46:33
2020-10-07T13:38:06
https://github.com/huggingface/datasets/issues/676
mojave-pku
4
[]
675
Add custom dataset to NLP?
Is it possible to add a custom dataset such as a .csv to the NLP library? Thanks.
CLOSED
2020-09-27T21:22:50
2020-10-20T09:08:49
2020-10-20T09:08:49
https://github.com/huggingface/datasets/issues/675
timpal0l
2
[]
674
load_dataset() won't download in Windows
I don't know if this is just me or Windows. Maybe other Windows users can chime in if they don't have this problem. I've been trying to get some of the tutorials working on Windows, but when I use the load_dataset() function, it just stalls and the script keeps running indefinitely without downloading anything. I've wa...
CLOSED
2020-09-27T03:56:25
2020-10-05T08:28:18
2020-10-05T08:28:18
https://github.com/huggingface/datasets/issues/674
ThisDavehead
3
[]
673
blog_authorship_corpus crashed
This is just to report that When I pick blog_authorship_corpus in https://huggingface.co/nlp/viewer/?dataset=blog_authorship_corpus I get this: ![image](https://user-images.githubusercontent.com/7553188/94349542-4364f300-0013-11eb-897d-b25660a449f0.png)
CLOSED
2020-09-26T20:15:28
2022-02-15T10:47:58
2022-02-15T10:47:58
https://github.com/huggingface/datasets/issues/673
Moshiii
1
[ "nlp-viewer" ]
672
Questions about XSUM
Hi there ✋ I'm looking into your `xsum` dataset and I have several questions on that. So here is how I loaded the data: ``` >>> data = datasets.load_dataset('xsum', version='1.0.1') >>> data['train'] Dataset(features: {'document': Value(dtype='string', id=None), 'summary': Value(dtype='string', id=None)}, nu...
CLOSED
2020-09-26T17:16:24
2022-10-04T17:30:17
2022-10-04T17:30:17
https://github.com/huggingface/datasets/issues/672
danyaljj
14
[]
671
[BUG] No such file or directory
This happens when both 1. Huggingface datasets cache dir does not exist 2. Try to load a local dataset script builder.py throws an error when trying to create a filelock in a directory (cache/datasets) that does not exist https://github.com/huggingface/datasets/blob/master/src/datasets/builder.py#L177 Tested o...
CLOSED
2020-09-25T16:38:54
2020-09-28T14:42:42
2020-09-28T14:42:42
https://github.com/huggingface/datasets/issues/671
jbragg
0
[]
669
How to skip a example when running dataset.map
in processing func, I process examples and detect some invalid examples, which I did not want it to be added into train dataset. However I did not find how to skip this recognized invalid example when doing dataset.map.
CLOSED
2020-09-25T11:17:53
2022-06-17T21:45:03
2020-10-05T16:28:13
https://github.com/huggingface/datasets/issues/669
xixiaoyao
3
[]