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
382
1080
CLOSED
2020-07-11T22:29:07
2020-07-11T22:49:38
2020-07-11T22:49:38
https://github.com/huggingface/datasets/issues/382
saq194
0
[]
381
NLp
CLOSED
2020-07-11T20:50:14
2020-07-11T20:50:39
2020-07-11T20:50:39
https://github.com/huggingface/datasets/issues/381
Spartanthor
0
[]
378
[dataset] Structure of MLQA seems unecessary nested
The features of the MLQA dataset comprise several nested dictionaries with a single element inside (for `questions` and `ids`): https://github.com/huggingface/nlp/blob/master/datasets/mlqa/mlqa.py#L90-L97 Should we keep this @mariamabarham @patrickvonplaten? Was this added for compatibility with tfds? ```python ...
CLOSED
2020-07-11T15:16:08
2020-07-15T16:17:20
2020-07-15T16:17:20
https://github.com/huggingface/datasets/issues/378
thomwolf
2
[]
377
Iyy!!!
CLOSED
2020-07-11T14:11:07
2020-07-11T14:30:51
2020-07-11T14:30:51
https://github.com/huggingface/datasets/issues/377
ajinomoh
0
[]
376
to_pandas conversion doesn't always work
For some complex nested types, the conversion from Arrow to python dict through pandas doesn't seem to be possible. Here is an example using the official SQUAD v2 JSON file. This example was found while investigating #373. ```python >>> squad = load_dataset('json', data_files={nlp.Split.TRAIN: ["./train-v2.0....
CLOSED
2020-07-10T21:33:31
2022-10-04T18:05:39
2022-10-04T18:05:39
https://github.com/huggingface/datasets/issues/376
thomwolf
2
[]
375
TypeError when computing bertscore
Hi, I installed nlp 0.3.0 via pip, and my python version is 3.7. When I tried to compute bertscore with the code: ``` import nlp bertscore = nlp.load_metric('bertscore') # load hyps and refs ... print (bertscore.compute(hyps, refs, lang='en')) ``` I got the following error. ``` Traceback (most rece...
CLOSED
2020-07-10T20:37:44
2022-06-01T15:15:59
2022-06-01T15:15:59
https://github.com/huggingface/datasets/issues/375
willywsm1013
2
[]
373
Segmentation fault when loading local JSON dataset as of #372
The last issue was closed (#369) once the #372 update was merged. However, I'm still not able to load a SQuAD formatted JSON file. Instead of the previously recorded pyarrow error, I now get a segmentation fault. ``` dataset = nlp.load_dataset('json', data_files={nlp.Split.TRAIN: ["./datasets/train-v2.0.json"]}, f...
CLOSED
2020-07-10T15:04:25
2022-10-04T18:05:47
2022-10-04T18:05:47
https://github.com/huggingface/datasets/issues/373
vegarab
11
[]
369
can't load local dataset: pyarrow.lib.ArrowInvalid: straddling object straddles two block boundaries
Trying to load a local SQuAD-formatted dataset (from a JSON file, about 60MB): ``` dataset = nlp.load_dataset(path='json', data_files={nlp.Split.TRAIN: ["./path/to/file.json"]}) ``` causes ``` Traceback (most recent call last): File "dataloader.py", line 9, in <module> ["./path/to/file.json"]}) File "/...
CLOSED
2020-07-09T16:16:53
2020-12-15T23:07:22
2020-07-10T14:52:06
https://github.com/huggingface/datasets/issues/369
vegarab
2
[ "dataset bug" ]
368
load_metric can't acquire lock anymore
I can't load metric (glue) anymore after an error in a previous run. I even removed the whole cache folder `/home/XXX/.cache/huggingface/`, and the issue persisted. What are the steps to fix this? Traceback (most recent call last): File "/home/XXX/miniconda3/envs/ML-DL-py-3.7/lib/python3.7/site-packages/n...
CLOSED
2020-07-09T14:04:09
2020-07-10T13:45:20
2020-07-10T13:45:20
https://github.com/huggingface/datasets/issues/368
ydshieh
1
[]
365
How to augment data ?
Is there any clean way to augment data ? For now my work-around is to use batched map, like this : ```python def aug(samples): # Simply copy the existing data to have x2 amount of data for k, v in samples.items(): samples[k].extend(v) return samples dataset = dataset.map(aug, batched=T...
CLOSED
2020-07-09T07:52:37
2020-07-10T09:12:07
2020-07-10T08:22:15
https://github.com/huggingface/datasets/issues/365
astariul
6
[]
362
[dateset subset missing] xtreme paws-x
I tried nlp.load_dataset('xtreme', 'PAWS-X.es') but get the value error It turns out that the subset for Spanish is missing https://github.com/google-research-datasets/paws/tree/master/pawsx
CLOSED
2020-07-09T05:04:54
2020-07-09T12:38:42
2020-07-09T12:38:42
https://github.com/huggingface/datasets/issues/362
cosmeowpawlitan
1
[]
361
🐛 [Metrics] ROUGE is non-deterministic
If I run the ROUGE metric 2 times, with same predictions / references, the scores are slightly different. Refer to [this Colab notebook](https://colab.research.google.com/drive/1wRssNXgb9ldcp4ulwj-hMJn0ywhDOiDy?usp=sharing) for reproducing the problem. Example of F-score for ROUGE-1, ROUGE-2, ROUGE-L in 2 differe...
CLOSED
2020-07-09T04:39:37
2022-09-09T15:20:55
2020-07-20T23:48:37
https://github.com/huggingface/datasets/issues/361
astariul
8
[]
360
[Feature request] Add dataset.ragged_map() function for many-to-many transformations
`dataset.map()` enables one-to-one transformations. Input one example and output one example. This is helpful for tokenizing and cleaning individual lines. `dataset.filter()` enables one-to-(one-or-none) transformations. Input one example and output either zero/one example. This is helpful for removing portions from t...
CLOSED
2020-07-09T01:04:43
2020-07-09T19:31:51
2020-07-09T19:31:51
https://github.com/huggingface/datasets/issues/360
jarednielsen
2
[]
359
ArrowBasedBuilder _prepare_split parse_schema breaks on nested structures
I tried using the Json dataloader to load some JSON lines files. but get an exception in the parse_schema function. ``` --------------------------------------------------------------------------- ValueError Traceback (most recent call last) <ipython-input-23-9aecfbee53bd> in <mo...
CLOSED
2020-07-08T23:24:05
2020-07-10T14:52:06
2020-07-10T14:52:06
https://github.com/huggingface/datasets/issues/359
timothyjlaurent
4
[]
355
can't load SNLI dataset
`nlp` seems to load `snli` from some URL based on nlp.stanford.edu. This subdomain is frequently down -- including right now, when I'd like to load `snli` in a Colab notebook, but can't. Is there a plan to move these datasets to huggingface servers for a more stable solution? Btw, here's the stack trace: ``` ...
CLOSED
2020-07-08T16:54:14
2020-07-18T05:15:57
2020-07-15T07:59:01
https://github.com/huggingface/datasets/issues/355
jxmorris12
3
[]
353
[Dataset requests] New datasets for Text Classification
We are missing a few datasets for Text Classification which is an important field. Namely, it would be really nice to add: - [x] TREC-6 dataset (see here for instance: https://pytorchnlp.readthedocs.io/en/latest/source/torchnlp.datasets.html#torchnlp.datasets.trec_dataset) **[done]** - #386 - [x] Yelp-5 - #...
OPEN
2020-07-08T12:17:58
2025-04-05T09:28:15
null
https://github.com/huggingface/datasets/issues/353
thomwolf
12
[ "help wanted", "dataset request" ]
347
'cp950' codec error from load_dataset('xtreme', 'tydiqa')
![image](https://user-images.githubusercontent.com/50871412/86744744-67481680-c06c-11ea-8612-b77eba92a392.png) I guess the error is related to python source encoding issue that my PC is trying to decode the source code with wrong encoding-decoding tools, perhaps : https://www.python.org/dev/peps/pep-0263/ I gues...
CLOSED
2020-07-07T08:14:23
2020-09-07T14:51:45
2020-09-07T14:51:45
https://github.com/huggingface/datasets/issues/347
cosmeowpawlitan
10
[ "dataset bug" ]
345
Supporting documents in ELI5
I was attempting to use the ELI5 dataset, when I realized that huggingface does not provide the supporting documents (the source documents from the common crawl). Without the supporting documents, this makes the dataset about as useful for my project as a block of cheese, or some other more apt metaphor. According to ...
CLOSED
2020-07-06T19:14:13
2020-10-27T15:38:45
2020-10-27T15:38:45
https://github.com/huggingface/datasets/issues/345
saverymax
2
[]
342
Features should be updated when `map()` changes schema
`dataset.map()` can change the schema and column names. We should update the features in this case (with what is possible to infer).
CLOSED
2020-07-06T08:03:23
2020-07-23T10:15:16
2020-07-23T10:15:16
https://github.com/huggingface/datasets/issues/342
thomwolf
1
[]
337
[Feature request] Export Arrow dataset to TFRecords
The TFRecord generation process is error-prone and requires complex separate Python scripts to download and preprocess the data. I propose to combine the user-friendly features of `nlp` with the speed and efficiency of TFRecords. Sample API: ```python # use these existing methods ds = load_dataset("wikitext", "wik...
CLOSED
2020-07-02T15:47:12
2020-07-22T09:16:12
2020-07-22T09:16:12
https://github.com/huggingface/datasets/issues/337
jarednielsen
0
[]
336
[Dataset requests] New datasets for Open Question Answering
We are still a few datasets missing for Open-Question Answering which is currently a field in strong development. Namely, it would be really nice to add: - WebQuestions (Berant et al., 2013) [done] - CuratedTrec (Baudis et al. 2015) [not open-source] - MS-MARCO (NGuyen et al. 2016) [done] - SearchQA (Dunn et al....
CLOSED
2020-07-02T13:03:03
2020-07-16T09:04:22
2020-07-16T09:04:22
https://github.com/huggingface/datasets/issues/336
thomwolf
0
[ "help wanted", "dataset request" ]
331
Loading CNN/Daily Mail dataset produces `nlp.utils.info_utils.NonMatchingSplitsSizesError`
``` >>> import nlp >>> nlp.load_dataset('cnn_dailymail', '3.0.0') Downloading and preparing dataset cnn_dailymail/3.0.0 (download: 558.32 MiB, generated: 1.26 GiB, total: 1.81 GiB) to /u/jm8wx/.cache/huggingface/datasets/cnn_dailymail/3.0.0/3.0.0... Traceback (most recent call last): File "<stdin>", line 1, in...
CLOSED
2020-06-30T22:21:33
2020-07-09T13:03:40
2020-07-09T13:03:40
https://github.com/huggingface/datasets/issues/331
jxmorris12
5
[ "dataset bug" ]
329
[Bug] FileLock dependency incompatible with filesystem
I'm downloading a dataset successfully with `load_dataset("wikitext", "wikitext-2-raw-v1")` But when I attempt to cache it on an external volume, it hangs indefinitely: `load_dataset("wikitext", "wikitext-2-raw-v1", cache_dir="/fsx") # /fsx is an external volume mount` The filesystem when hanging looks like thi...
CLOSED
2020-06-30T19:45:31
2024-12-26T15:13:39
2020-06-30T21:33:06
https://github.com/huggingface/datasets/issues/329
jarednielsen
11
[]
328
Fork dataset
We have a multi-task learning model training I'm trying to convert to using the Arrow-based nlp dataset. We're currently training a custom TensorFlow model but the nlp paradigm should be a bridge for us to be able to use the wealth of pre-trained models in Transformers. Our preprocessing flow parses raw text and...
CLOSED
2020-06-30T16:42:53
2020-07-06T21:43:59
2020-07-06T21:43:59
https://github.com/huggingface/datasets/issues/328
timothyjlaurent
5
[]
326
Large dataset in Squad2-format
At the moment we are building an large question answering dataset and think about sharing it with the huggingface community. Caused the computing power we splitted it into multiple tiles, but they are all in the same format. Right now the most important facts about are this: - Contexts: 1.047.671 - questions: 1.677...
CLOSED
2020-06-30T12:18:59
2020-07-09T09:01:50
2020-07-09T09:01:50
https://github.com/huggingface/datasets/issues/326
flozi00
8
[]
324
Error when calculating glue score
I was trying glue score along with other metrics here. But glue gives me this error; ``` import nlp glue_metric = nlp.load_metric('glue',name="cola") glue_score = glue_metric.compute(predictions, references) ``` ``` --------------------------------------------------------------------------- --------------...
CLOSED
2020-06-29T16:53:48
2020-07-09T09:13:34
2020-07-09T09:13:34
https://github.com/huggingface/datasets/issues/324
D-i-l-r-u-k-s-h-i
4
[]
321
ERROR:root:mwparserfromhell
Hi, I am trying to download some wikipedia data but I got this error for spanish "es" (but there are maybe some others languages which have the same error I haven't tried all of them ). `ERROR:root:mwparserfromhell ParseError: This is a bug and should be reported. Info: C tokenizer exited with non-empty token sta...
CLOSED
2020-06-29T11:10:43
2022-02-14T15:21:46
2022-02-14T15:21:46
https://github.com/huggingface/datasets/issues/321
Shiro-LK
10
[ "dataset bug" ]
320
Blog Authorship Corpus, Non Matching Splits Sizes Error, nlp viewer
Selecting `blog_authorship_corpus` in the nlp viewer throws the following error: ``` NonMatchingSplitsSizesError: [{'expected': SplitInfo(name='train', num_bytes=610252351, num_examples=532812, dataset_name='blog_authorship_corpus'), 'recorded': SplitInfo(name='train', num_bytes=614706451, num_examples=535568, dat...
CLOSED
2020-06-29T07:36:35
2020-06-29T14:44:42
2020-06-29T14:44:42
https://github.com/huggingface/datasets/issues/320
mariamabarham
2
[ "nlp-viewer" ]
319
Nested sequences with dicts
Am pretty much finished [adding a dataset](https://github.com/ghomasHudson/nlp/blob/DocRED/datasets/docred/docred.py) for [DocRED](https://github.com/thunlp/DocRED), but am getting an error when trying to add a nested `nlp.features.sequence(nlp.features.sequence({key:value,...}))`. The original data is in this form...
CLOSED
2020-06-27T23:45:17
2020-07-03T10:22:00
2020-07-03T10:22:00
https://github.com/huggingface/datasets/issues/319
ghomasHudson
1
[]
317
Adding a dataset with multiple subtasks
I intent to add the datasets of the MT Quality Estimation shared tasks to `nlp`. However, they have different subtasks -- such as word-level, sentence-level and document-level quality estimation, each of which having different language pairs, and some of the data reused in different subtasks. For example, in [QE 201...
CLOSED
2020-06-26T23:14:19
2020-10-27T15:36:52
2020-10-27T15:36:52
https://github.com/huggingface/datasets/issues/317
erickrf
1
[]
315
[Question] Best way to batch a large dataset?
I'm training on large datasets such as Wikipedia and BookCorpus. Following the instructions in [the tutorial notebook](https://colab.research.google.com/github/huggingface/nlp/blob/master/notebooks/Overview.ipynb), I see the following recommended for TensorFlow: ```python train_tf_dataset = train_tf_dataset.filter(...
OPEN
2020-06-25T22:30:20
2020-10-27T15:38:17
null
https://github.com/huggingface/datasets/issues/315
jarednielsen
11
[ "generic discussion" ]
312
[Feature request] Add `shard()` method to dataset
Currently, to shard a dataset into 10 pieces on different ranks, you can run ```python rank = 3 # for example size = 10 dataset = nlp.load_dataset('wikitext', 'wikitext-2-raw-v1', split=f"train[{rank*10}%:{(rank+1)*10}%]") ``` However, this breaks down if you have a number of ranks that doesn't divide cleanly...
CLOSED
2020-06-24T22:48:33
2020-07-06T12:35:36
2020-07-06T12:35:36
https://github.com/huggingface/datasets/issues/312
jarednielsen
2
[]
307
Specify encoding for MRPC
Same as #242, but with MRPC: on Windows, I get a `UnicodeDecodeError` when I try to download the dataset: ```python dataset = nlp.load_dataset('glue', 'mrpc') ``` ```python Downloading and preparing dataset glue/mrpc (download: Unknown size, generated: Unknown size, total: Unknown size) to C:\Users\Python\.cache...
CLOSED
2020-06-23T22:24:49
2020-06-25T12:16:09
2020-06-25T12:16:09
https://github.com/huggingface/datasets/issues/307
patpizio
0
[]
305
Importing downloaded package repository fails
The `get_imports` function in `src/nlp/load.py` has a feature to download a package as a zip archive of the github repository and import functions from the unpacked directory. This is used for example in the `metrics/coval.py` file, and would be useful to add BLEURT (@ankparikh). Currently however, the code seems to...
CLOSED
2020-06-23T21:09:05
2020-07-30T16:44:23
2020-07-30T16:44:23
https://github.com/huggingface/datasets/issues/305
yjernite
0
[ "metric bug" ]
304
Problem while printing doc string when instantiating multiple metrics.
When I load more than one metric and try to print doc string of a particular metric,. It shows the doc strings of all imported metric one after the other which looks quite confusing and clumsy. Attached [Colab](https://colab.research.google.com/drive/13H0ZgyQ2se0mqJ2yyew0bNEgJuHaJ8H3?usp=sharing) Notebook for problem ...
CLOSED
2020-06-23T19:32:05
2020-07-22T09:50:58
2020-07-22T09:50:58
https://github.com/huggingface/datasets/issues/304
codehunk628
0
[ "metric bug" ]
302
Question - Sign Language Datasets
An emerging field in NLP is SLP - sign language processing. I was wondering about adding datasets here, specifically because it's shaping up to be large and easily usable. The metrics for sign language to text translation are the same. So, what do you think about (me, or others) adding datasets here? An exa...
CLOSED
2020-06-23T14:53:40
2020-11-25T11:25:33
2020-11-25T11:25:33
https://github.com/huggingface/datasets/issues/302
AmitMY
3
[ "enhancement", "generic discussion" ]
301
Setting cache_dir gives error on wikipedia download
First of all thank you for a super handy library! I'd like to download large files to a specific drive so I set `cache_dir=my_path`. This works fine with e.g. imdb and squad. But on wikipedia I get an error: ``` nlp.load_dataset('wikipedia', '20200501.de', split = 'train', cache_dir=my_path) ``` ``` OSError ...
CLOSED
2020-06-23T11:31:44
2020-06-24T07:05:07
2020-06-24T07:05:07
https://github.com/huggingface/datasets/issues/301
hallvagi
2
[]
297
Error in Demo for Specific Datasets
Selecting `natural_questions` or `newsroom` dataset in the online demo results in an error similar to the following. ![image](https://user-images.githubusercontent.com/60150701/85347842-ac861900-b4ae-11ea-98c4-a53a00934783.png)
CLOSED
2020-06-23T00:38:42
2020-07-17T17:43:06
2020-07-17T17:43:06
https://github.com/huggingface/datasets/issues/297
s-jse
3
[ "nlp-viewer" ]
296
snli -1 labels
I'm trying to train a model on the SNLI dataset. Why does it have so many -1 labels? ``` import nlp from collections import Counter data = nlp.load_dataset('snli')['train'] print(Counter(data['label'])) Counter({0: 183416, 2: 183187, 1: 182764, -1: 785}) ```
CLOSED
2020-06-22T23:33:30
2020-06-23T14:41:59
2020-06-23T14:41:58
https://github.com/huggingface/datasets/issues/296
jxmorris12
4
[]
295
Improve input warning for evaluation metrics
Hi, I am the author of `bert_score`. Recently, we received [ an issue ](https://github.com/Tiiiger/bert_score/issues/62) reporting a problem in using `bert_score` from the `nlp` package (also see #238 in this repo). After looking into this, I realized that the problem arises from the format `nlp.Metric` takes inpu...
CLOSED
2020-06-22T17:28:57
2020-06-23T14:47:37
2020-06-23T14:47:37
https://github.com/huggingface/datasets/issues/295
Tiiiger
0
[]
294
Cannot load arxiv dataset on MacOS?
I am having trouble loading the `"arxiv"` config from the `"scientific_papers"` dataset on MacOS. When I try loading the dataset with: ```python arxiv = nlp.load_dataset("scientific_papers", "arxiv") ``` I get the following stack trace: ```bash JSONDecodeError Traceback (most recen...
CLOSED
2020-06-22T15:46:55
2020-06-30T15:25:10
2020-06-30T15:25:10
https://github.com/huggingface/datasets/issues/294
JohnGiorgi
4
[ "dataset bug" ]
290
ConnectionError - Eli5 dataset download
Hi, I have a problem with downloading Eli5 dataset. When typing `nlp.load_dataset('eli5')`, I get ConnectionError: Couldn't reach https://storage.googleapis.com/huggingface-nlp/cache/datasets/eli5/LFQA_reddit/1.0.0/explain_like_im_five-train_eli5.arrow I would appreciate if you could help me with this issue.
CLOSED
2020-06-19T13:40:33
2020-06-20T13:22:24
2020-06-20T13:22:24
https://github.com/huggingface/datasets/issues/290
JovanNj
2
[]
288
Error at the first example in README: AttributeError: module 'dill' has no attribute '_dill'
/Users/parasol_tree/anaconda3/lib/python3.6/site-packages/tensorflow/python/framework/dtypes.py:469: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / '(1,)type'. _np_qint8 = np.dtype([("qint8", np.int8, 1)]) /Users/...
CLOSED
2020-06-19T11:01:22
2020-06-21T09:05:11
2020-06-21T09:05:11
https://github.com/huggingface/datasets/issues/288
wutong8023
5
[]
283
Consistent formatting of citations
The citations are all of a different format, some have "```" and have text inside, others are proper bibtex. Can we make it so that they all are proper citations, i.e. parse by the bibtex spec: https://bibtexparser.readthedocs.io/en/master/
CLOSED
2020-06-18T14:48:45
2020-06-22T17:30:46
2020-06-22T17:30:46
https://github.com/huggingface/datasets/issues/283
srush
0
[]
281
Private/sensitive data
Hi all, Thanks for this fantastic library, it makes it very easy to do prototyping for NLP projects interchangeably between TF/Pytorch. Unfortunately, there is data that cannot easily be shared publicly as it may contain sensitive information. Is there support/a plan to support such data with NLP, e.g. by readin...
CLOSED
2020-06-18T09:47:27
2020-06-20T13:15:12
2020-06-20T13:15:12
https://github.com/huggingface/datasets/issues/281
MFreidank
3
[]
280
Error with SquadV2 Metrics
I can't seem to import squad v2 metrics. **squad_metric = nlp.load_metric('squad_v2')** **This throws me an error.:** ``` ImportError Traceback (most recent call last) <ipython-input-8-170b6a170555> in <module> ----> 1 squad_metric = nlp.load_metric('squad_v2') ~/env/lib6...
CLOSED
2020-06-17T19:10:54
2020-06-19T08:33:41
2020-06-19T08:33:41
https://github.com/huggingface/datasets/issues/280
avinregmi
0
[]
279
Dataset Preprocessing Cache with .map() function not working as expected
I've been having issues with reproducibility when loading and processing datasets with the `.map` function. I was only able to resolve them by clearing all of the cache files on my system. Is there a way to disable using the cache when processing a dataset? As I make minor processing changes on the same dataset, I ...
CLOSED
2020-06-17T17:17:21
2021-07-06T21:43:28
2021-04-18T23:43:49
https://github.com/huggingface/datasets/issues/279
sarahwie
5
[]
278
MemoryError when loading German Wikipedia
Hi, first off let me say thank you for all the awesome work you're doing at Hugging Face across all your projects (NLP, Transformers, Tokenizers) - they're all amazing contributions to us working with NLP models :) I'm trying to download the German Wikipedia dataset as follows: ``` wiki = nlp.load_dataset("wikip...
CLOSED
2020-06-17T15:06:21
2020-06-19T12:53:02
2020-06-19T12:53:02
https://github.com/huggingface/datasets/issues/278
gregburman
7
[]
277
Empty samples in glue/qqp
``` qqp = nlp.load_dataset('glue', 'qqp') print(qqp['train'][310121]) print(qqp['train'][362225]) ``` ``` {'question1': 'How can I create an Android app?', 'question2': '', 'label': 0, 'idx': 310137} {'question1': 'How can I develop android app?', 'question2': '', 'label': 0, 'idx': 362246} ``` Notice that que...
CLOSED
2020-06-17T05:54:52
2020-06-21T00:21:45
2020-06-21T00:21:45
https://github.com/huggingface/datasets/issues/277
richarddwang
2
[]
275
NonMatchingChecksumError when loading pubmed dataset
I get this error when i run `nlp.load_dataset('scientific_papers', 'pubmed', split = 'train[:50%]')`. The error is: ``` --------------------------------------------------------------------------- NonMatchingChecksumError Traceback (most recent call last) <ipython-input-2-7742dea167d0> in <module...
CLOSED
2020-06-16T07:31:51
2020-06-19T07:37:07
2020-06-19T07:37:07
https://github.com/huggingface/datasets/issues/275
DavideStenner
1
[ "dataset bug" ]
274
PG-19
Hi, and thanks for all your open-sourced work, as always! I was wondering if you would be open to adding PG-19 to your collection of datasets. https://github.com/deepmind/pg19 It is often used for benchmarking long-range language modeling.
CLOSED
2020-06-15T21:02:26
2020-07-06T15:35:02
2020-07-06T15:35:02
https://github.com/huggingface/datasets/issues/274
lucidrains
4
[ "dataset request" ]
270
c4 dataset is not viewable in nlpviewer demo
I get the following error when I try to view the c4 dataset in [nlpviewer](https://huggingface.co/nlp/viewer/) ```python ModuleNotFoundError: No module named 'langdetect' Traceback: File "/home/sasha/.local/lib/python3.7/site-packages/streamlit/ScriptRunner.py", line 322, in _run_script exec(code, module.__d...
CLOSED
2020-06-13T08:26:16
2020-10-27T15:35:29
2020-10-27T15:35:13
https://github.com/huggingface/datasets/issues/270
rajarsheem
1
[ "nlp-viewer" ]
269
Error in metric.compute: missing `original_instructions` argument
I'm running into an error using metrics for computation in the latest master as well as version 0.2.1. Here is a minimal example: ```python import nlp rte_metric = nlp.load_metric('glue', name="rte") rte_metric.compute( [0, 0, 1, 1], [0, 1, 0, 1], ) ``` ``` 181 # Read the predictio...
CLOSED
2020-06-13T06:26:54
2020-06-18T07:41:44
2020-06-18T07:41:44
https://github.com/huggingface/datasets/issues/269
zphang
0
[ "metric bug" ]
267
How can I load/find WMT en-romanian?
I believe it is from `wmt16` When I run ```python wmt = nlp.load_dataset('wmt16') ``` I get: ```python AssertionError: The dataset wmt16 with config cs-en requires manual data. Please follow the manual download instructions: Some of the wmt configs here, require a manual download. Please look into wm...
CLOSED
2020-06-12T01:09:37
2020-06-19T08:24:19
2020-06-19T08:24:19
https://github.com/huggingface/datasets/issues/267
sshleifer
1
[]
263
[Feature request] Support for external modality for language datasets
# Background In recent years many researchers have advocated that learning meanings from text-based only datasets is just like asking a human to "learn to speak by listening to the radio" [[E. Bender and A. Koller,2020](https://openreview.net/forum?id=GKTvAcb12b), [Y. Bisk et. al, 2020](https://arxiv.org/abs/2004.10...
CLOSED
2020-06-11T13:42:18
2022-02-10T13:26:35
2022-02-10T13:26:35
https://github.com/huggingface/datasets/issues/263
aleSuglia
5
[ "enhancement", "generic discussion" ]
261
Downloading dataset error with pyarrow.lib.RecordBatch
I am trying to download `sentiment140` and I have the following error ``` /usr/local/lib/python3.6/dist-packages/nlp/load.py in load_dataset(path, name, version, data_dir, data_files, split, cache_dir, download_config, download_mode, ignore_verifications, save_infos, **config_kwargs) 518 download_mode=...
CLOSED
2020-06-10T16:04:19
2020-06-11T14:35:12
2020-06-11T14:35:12
https://github.com/huggingface/datasets/issues/261
cuent
2
[]
259
documentation missing how to split a dataset
I am trying to understand how to split a dataset ( as arrow_dataset). I know I can do something like this to access a split which is already in the original dataset : `ds_test = nlp.load_dataset('imdb, split='test') ` But how can I split ds_test into a test and a validation set (without reading the data into m...
CLOSED
2020-06-10T13:18:13
2023-03-14T13:56:07
2020-06-18T22:20:24
https://github.com/huggingface/datasets/issues/259
fotisj
7
[]
258
Why is dataset after tokenization far more larger than the orginal one ?
I tokenize wiki dataset by `map` and cache the results. ``` def tokenize_tfm(example): example['input_ids'] = hf_fast_tokenizer.convert_tokens_to_ids(hf_fast_tokenizer.tokenize(example['text'])) return example wiki = nlp.load_dataset('wikipedia', '20200501.en', cache_dir=cache_dir)['train'] wiki.map(token...
CLOSED
2020-06-10T01:27:07
2020-06-10T12:46:34
2020-06-10T12:46:34
https://github.com/huggingface/datasets/issues/258
richarddwang
4
[]
257
Tokenizer pickling issue fix not landed in `nlp` yet?
Unless I recreate an arrow_dataset from my loaded nlp dataset myself (which I think does not use the cache by default), I get the following error when applying the map function: ``` dataset = nlp.load_dataset('cos_e') tokenizer = GPT2TokenizerFast.from_pretrained('gpt2', cache_dir=cache_dir) for split in datase...
CLOSED
2020-06-09T17:12:34
2020-06-10T21:45:32
2020-06-09T17:26:53
https://github.com/huggingface/datasets/issues/257
sarahwie
2
[]
256
[Feature request] Add a feature to dataset
Is there a straightforward way to add a field to the arrow_dataset, prior to performing map?
CLOSED
2020-06-09T16:38:12
2020-06-09T16:51:42
2020-06-09T16:51:42
https://github.com/huggingface/datasets/issues/256
sarahwie
5
[]
254
[Feature request] Be able to remove a specific sample of the dataset
As mentioned in #117, it's currently not possible to remove a sample of the dataset. But it is a important use case : After applying some preprocessing, some samples might be empty for example. We should be able to remove these samples from the dataset, or at least mark them as `removed` so when iterating the datase...
CLOSED
2020-06-09T02:22:13
2020-06-09T08:41:38
2020-06-09T08:41:38
https://github.com/huggingface/datasets/issues/254
astariul
1
[]
252
NonMatchingSplitsSizesError error when reading the IMDB dataset
Hi! I am trying to load the `imdb` dataset with this line: `dataset = nlp.load_dataset('imdb', data_dir='/A/PATH', cache_dir='/A/PATH')` but I am getting the following error: ``` Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/mounts/Users/cisintern/antmarakis/anaconda3/...
CLOSED
2020-06-08T12:26:24
2021-08-27T15:20:58
2020-06-08T14:01:26
https://github.com/huggingface/datasets/issues/252
antmarakis
4
[]
249
[Dataset created] some critical small issues when I was creating a dataset
Hi, I successfully created a dataset and has made a pr #248. But I have encountered several problems when I was creating it, and those should be easy to fix. 1. Not found dataset_info.json should be fixed by #241 , eager to wait it be merged. 2. Forced to install `apach_beam` If we should install it, then it m...
CLOSED
2020-06-07T12:58:54
2020-06-12T08:28:51
2020-06-12T08:28:51
https://github.com/huggingface/datasets/issues/249
richarddwang
2
[]
246
What is the best way to cache a dataset?
For example if I want to use streamlit with a nlp dataset: ``` @st.cache def load_data(): return nlp.load_dataset('squad') ``` This code raises the error "uncachable object" Right now I just fixed with a constant for my specific case: ``` @st.cache(hash_funcs={pyarrow.lib.Buffer: lambda b: 0}) ```...
CLOSED
2020-06-06T11:02:07
2020-07-09T09:15:07
2020-07-09T09:15:07
https://github.com/huggingface/datasets/issues/246
Mistobaan
2
[]
245
SST-2 test labels are all -1
I'm trying to test a model on the SST-2 task, but all the labels I see in the test set are -1. ``` >>> import nlp >>> glue = nlp.load_dataset('glue', 'sst2') >>> glue {'train': Dataset(schema: {'sentence': 'string', 'label': 'int64', 'idx': 'int32'}, num_rows: 67349), 'validation': Dataset(schema: {'sentence': 'st...
CLOSED
2020-06-05T21:41:42
2021-12-08T00:47:32
2020-06-06T16:56:41
https://github.com/huggingface/datasets/issues/245
jxmorris12
10
[]
242
UnicodeDecodeError when downloading GLUE-MNLI
When I run ```python dataset = nlp.load_dataset('glue', 'mnli') ``` I get an encoding error (could it be because I'm using Windows?) : ```python # Lots of error log lines later... ~\Miniconda3\envs\nlp\lib\site-packages\tqdm\std.py in __iter__(self) 1128 try: -> 1129 for obj in iterable:...
CLOSED
2020-06-05T16:30:01
2020-06-09T16:06:47
2020-06-08T08:45:03
https://github.com/huggingface/datasets/issues/242
patpizio
2
[]
240
Deterministic dataset loading
When calling: ```python import nlp dataset = nlp.load_dataset("trivia_qa", split="validation[:1%]") ``` the resulting dataset is not deterministic over different google colabs. After talking to @thomwolf, I suspect the reason to be the use of `glob.glob` in line: https://github.com/huggingface/nlp/blob/2e0...
CLOSED
2020-06-05T09:03:26
2020-06-08T09:18:14
2020-06-08T09:18:14
https://github.com/huggingface/datasets/issues/240
patrickvonplaten
4
[]
239
[Creating new dataset] Not found dataset_info.json
Hi, I am trying to create Toronto Book Corpus. #131 I ran `~/nlp % python nlp-cli test datasets/bookcorpus --save_infos --all_configs` but this doesn't create `dataset_info.json` and try to use it ``` INFO:nlp.load:Checking datasets/bookcorpus/bookcorpus.py for additional imports. INFO:filelock:Lock 1397953257...
CLOSED
2020-06-05T06:15:04
2020-06-07T13:01:04
2020-06-07T13:01:04
https://github.com/huggingface/datasets/issues/239
richarddwang
5
[]
238
[Metric] Bertscore : Warning : Empty candidate sentence; Setting recall to be 0.
When running BERT-Score, I'm meeting this warning : > Warning: Empty candidate sentence; Setting recall to be 0. Code : ``` import nlp metric = nlp.load_metric("bertscore") scores = metric.compute(["swag", "swags"], ["swags", "totally something different"], lang="en", device=0) ``` --- **What am I do...
CLOSED
2020-06-05T02:14:47
2020-06-29T17:10:19
2020-06-29T17:10:19
https://github.com/huggingface/datasets/issues/238
astariul
1
[ "metric bug" ]
237
Can't download MultiNLI
When I try to download MultiNLI with ```python dataset = load_dataset('multi_nli') ``` I get this long error: ```python --------------------------------------------------------------------------- OSError Traceback (most recent call last) <ipython-input-13-3b11f6be4cb9> in <m...
CLOSED
2020-06-04T23:05:21
2020-06-06T10:51:34
2020-06-06T10:51:34
https://github.com/huggingface/datasets/issues/237
patpizio
3
[]
234
Huggingface NLP, Uploading custom dataset
Hello, Does anyone know how we can call our custom dataset using the nlp.load command? Let's say that I have a dataset based on the same format as that of squad-v1.1, how am I supposed to load it using huggingface nlp. Thank you!
CLOSED
2020-06-04T05:59:06
2020-07-06T09:33:26
2020-07-06T09:33:26
https://github.com/huggingface/datasets/issues/234
Nouman97
4
[]
233
Fail to download c4 english corpus
i run following code to download c4 English corpus. ``` dataset = nlp.load_dataset('c4', 'en', beam_runner='DirectRunner' , data_dir='/mypath') ``` and i met failure as follows ``` Downloading and preparing dataset c4/en (download: Unknown size, generated: Unknown size, total: Unknown size) to /home/adam/....
CLOSED
2020-06-04T01:06:38
2021-01-08T07:17:32
2020-06-08T09:16:59
https://github.com/huggingface/datasets/issues/233
donggyukimc
5
[]
228
Not able to access the XNLI dataset
When I try to access the XNLI dataset, I get the following error. The option of plain_text get selected automatically and then I get the following error. ``` FileNotFoundError: [Errno 2] No such file or directory: '/home/sasha/.cache/huggingface/datasets/xnli/plain_text/1.0.0/dataset_info.json' Traceback: File "/...
CLOSED
2020-06-03T12:25:14
2020-07-17T17:44:22
2020-07-17T17:44:22
https://github.com/huggingface/datasets/issues/228
aswin-giridhar
4
[ "nlp-viewer" ]
227
Should we still have to force to install apache_beam to download wikipedia ?
Hi, first thanks to @lhoestq 's revolutionary work, I successfully downloaded processed wikipedia according to the doc. 😍😍😍 But at the first try, it tell me to install `apache_beam` and `mwparserfromhell`, which I thought wouldn't be used according to #204 , it was kind of confusing me at that time. Maybe we s...
CLOSED
2020-06-03T09:33:20
2020-06-03T15:25:41
2020-06-03T15:25:41
https://github.com/huggingface/datasets/issues/227
richarddwang
3
[]
225
[ROUGE] Different scores with `files2rouge`
It seems that the ROUGE score of `nlp` is lower than the one of `files2rouge`. Here is a self-contained notebook to reproduce both scores : https://colab.research.google.com/drive/14EyAXValB6UzKY9x4rs_T3pyL7alpw_F?usp=sharing --- `nlp` : (Only mid F-scores) >rouge1 0.33508031962733364 rouge2 0.145743337761...
CLOSED
2020-06-01T00:50:36
2020-06-03T15:27:18
2020-06-03T15:27:18
https://github.com/huggingface/datasets/issues/225
astariul
3
[ "Metric discussion" ]
224
[Feature Request/Help] BLEURT model -> PyTorch
Hi, I am interested in porting google research's new BLEURT learned metric to PyTorch (because I wish to do something experimental with language generation and backpropping through BLEURT). I noticed that you guys don't have it yet so I am partly just asking if you plan to add it (@thomwolf said you want to do so on Tw...
CLOSED
2020-05-30T18:30:40
2023-08-26T17:38:48
2021-01-04T09:53:32
https://github.com/huggingface/datasets/issues/224
adamwlev
6
[ "enhancement" ]
223
[Feature request] Add FLUE dataset
Hi, I think it would be interesting to add the FLUE dataset for francophones or anyone wishing to work on French. In other requests, I read that you are already working on some datasets, and I was wondering if FLUE was planned. If it is not the case, I can provide each of the cleaned FLUE datasets (in the form...
CLOSED
2020-05-30T08:52:15
2020-12-03T13:39:33
2020-12-03T13:39:33
https://github.com/huggingface/datasets/issues/223
lbourdois
3
[ "dataset request" ]
222
Colab Notebook breaks when downloading the squad dataset
When I run the notebook in Colab https://colab.research.google.com/github/huggingface/nlp/blob/master/notebooks/Overview.ipynb breaks when running this cell: ![image](https://user-images.githubusercontent.com/338917/83311709-ffd1b800-a1dd-11ea-8394-3a87df0d7f8b.png)
CLOSED
2020-05-29T22:55:59
2020-06-04T00:21:05
2020-06-04T00:21:05
https://github.com/huggingface/datasets/issues/222
carlos-aguayo
6
[]
217
Multi-task dataset mixing
It seems like many of the best performing models on the GLUE benchmark make some use of multitask learning (simultaneous training on multiple tasks). The [T5 paper](https://arxiv.org/pdf/1910.10683.pdf) highlights multiple ways of mixing the tasks together during finetuning: - **Examples-proportional mixing** - sam...
OPEN
2020-05-29T09:22:26
2025-09-24T08:59:38
null
https://github.com/huggingface/datasets/issues/217
ghomasHudson
28
[ "enhancement", "generic discussion" ]
216
❓ How to get ROUGE-2 with the ROUGE metric ?
I'm trying to use ROUGE metric, but I don't know how to get the ROUGE-2 metric. --- I compute scores with : ```python import nlp rouge = nlp.load_metric('rouge') with open("pred.txt") as p, open("ref.txt") as g: for lp, lg in zip(p, g): rouge.add([lp], [lg]) score = rouge.compute() ``` ...
CLOSED
2020-05-28T23:47:32
2020-06-01T00:04:35
2020-06-01T00:04:35
https://github.com/huggingface/datasets/issues/216
astariul
3
[]
215
NonMatchingSplitsSizesError when loading blog_authorship_corpus
Getting this error when i run `nlp.load_dataset('blog_authorship_corpus')`. ``` raise NonMatchingSplitsSizesError(str(bad_splits)) nlp.utils.info_utils.NonMatchingSplitsSizesError: [{'expected': SplitInfo(name='train', num_bytes=610252351, num_examples=532812, dataset_name='blog_authorship_corpus'), 'recorded...
CLOSED
2020-05-28T22:55:19
2025-01-04T00:03:12
2022-02-10T13:05:45
https://github.com/huggingface/datasets/issues/215
cedricconol
12
[ "dataset bug" ]
211
[Arrow writer, Trivia_qa] Could not convert TagMe with type str: converting to null type
Running the following code ``` import nlp ds = nlp.load_dataset("trivia_qa", "rc", split="validation[:1%]") # this might take 2.3 min to download but it's cached afterwards... ds.map(lambda x: x, load_from_cache_file=False) ``` triggers a `ArrowInvalid: Could not convert TagMe with type str: converting to n...
CLOSED
2020-05-28T14:38:14
2020-07-23T10:15:16
2020-07-23T10:15:16
https://github.com/huggingface/datasets/issues/211
patrickvonplaten
7
[ "enhancement" ]
207
Remove test set from NLP viewer
While the new [NLP viewer](https://huggingface.co/nlp/viewer/) is a great tool, I think it would be best to outright remove the option of looking at the test sets. At the very least, a warning should be displayed to users before showing the test set. Newcomers to the field might not be aware of best practices, and smal...
CLOSED
2020-05-27T18:32:07
2022-02-10T13:17:45
2022-02-10T13:17:45
https://github.com/huggingface/datasets/issues/207
chrisdonahue
3
[ "nlp-viewer" ]
206
[Question] Combine 2 datasets which have the same columns
Hi, I am using ``nlp`` to load personal datasets. I created summarization datasets in multi-languages based on wikinews. I have one dataset for english and one for german (french is getting to be ready as well). I want to keep these datasets independent because they need different pre-processing (add different task-...
CLOSED
2020-05-27T16:25:52
2020-06-10T09:11:14
2020-06-10T09:11:14
https://github.com/huggingface/datasets/issues/206
airKlizz
2
[]
202
Mistaken `_KWARGS_DESCRIPTION` for XNLI metric
Hi! The [`_KWARGS_DESCRIPTION`](https://github.com/huggingface/nlp/blob/7d0fa58641f3f462fb2861dcdd6ce7f0da3f6a56/metrics/xnli/xnli.py#L45) for the XNLI metric uses `Args` and `Returns` text from [BLEU](https://github.com/huggingface/nlp/blob/7d0fa58641f3f462fb2861dcdd6ce7f0da3f6a56/metrics/bleu/bleu.py#L58) metric: ...
CLOSED
2020-05-27T08:34:42
2020-05-28T13:22:36
2020-05-28T13:22:36
https://github.com/huggingface/datasets/issues/202
phiyodr
1
[]
198
Index outside of table length
The offset input box warns of numbers larger than a limit (like 2000) but then the errors start at a smaller value than that limit (like 1955). > ValueError: Index (2000) outside of table length (2000). > Traceback: > File "/home/sasha/.local/lib/python3.7/site-packages/streamlit/ScriptRunner.py", line 322, in _ru...
CLOSED
2020-05-26T21:09:40
2020-05-26T22:43:49
2020-05-26T22:43:49
https://github.com/huggingface/datasets/issues/198
casajarm
2
[]
197
Scientific Papers only downloading Pubmed
Hi! I have been playing around with this module, and I am a bit confused about the `scientific_papers` dataset. I thought that it would download two separate datasets, arxiv and pubmed. But when I run the following: ``` dataset = nlp.load_dataset('scientific_papers', data_dir='.', cache_dir='.') Downloading: 10...
CLOSED
2020-05-26T15:18:47
2020-05-28T08:19:28
2020-05-28T08:19:28
https://github.com/huggingface/datasets/issues/197
antmarakis
3
[]
193
[Tensorflow] Use something else than `from_tensor_slices()`
In the example notebook, the TF Dataset is built using `from_tensor_slices()` : ```python columns = ['input_ids', 'token_type_ids', 'attention_mask', 'start_positions', 'end_positions'] train_tf_dataset.set_format(type='tensorflow', columns=columns) features = {x: train_tf_dataset[x] for x in columns[:3]} label...
CLOSED
2020-05-26T07:19:14
2020-10-27T15:28:11
2020-10-27T15:28:11
https://github.com/huggingface/datasets/issues/193
astariul
7
[]
192
[Question] Create Apache Arrow dataset from raw text file
Hi guys, I have gathered and preprocessed about 2GB of COVID papers from CORD dataset @ Kggle. I have seen you have a text dataset as "Crime and punishment" in Apache arrow format. Do you have any script to do it from a raw txt file (preprocessed as for BERT like) or any guide? Is the worth of send it to you and add i...
CLOSED
2020-05-25T16:42:47
2021-12-18T01:45:34
2020-10-27T15:20:22
https://github.com/huggingface/datasets/issues/192
mrm8488
4
[]
189
[Question] BERT-style multiple choice formatting
Hello, I am wondering what the equivalent formatting of a dataset should be to allow for multiple-choice answering prediction, BERT-style. Previously, this was done by passing a list of `InputFeatures` to the dataloader instead of a list of `InputFeature`, where `InputFeatures` contained lists of length equal to the nu...
CLOSED
2020-05-25T05:11:05
2020-05-25T18:38:28
2020-05-25T18:38:28
https://github.com/huggingface/datasets/issues/189
sarahwie
2
[]
188
When will the remaining math_dataset modules be added as dataset objects
Currently only the algebra_linear_1d is supported. Is there a timeline for making the other modules supported. If no timeline is established, how can I help?
CLOSED
2020-05-24T15:46:52
2020-05-24T18:53:48
2020-05-24T18:53:48
https://github.com/huggingface/datasets/issues/188
tylerroost
3
[]
187
[Question] How to load wikipedia ? Beam runner ?
When `nlp.load_dataset('wikipedia')`, I got * `WARNING:nlp.builder:Trying to generate a dataset using Apache Beam, yet no Beam Runner or PipelineOptions() has been provided. Please pass a nlp.DownloadConfig(beam_runner=...) object to the builder.download_and_prepare(download_config=...) method. Default values will be ...
CLOSED
2020-05-23T10:18:52
2020-05-25T00:12:02
2020-05-25T00:12:02
https://github.com/huggingface/datasets/issues/187
richarddwang
2
[]
186
Weird-ish: Not creating unique caches for different phases
Sample code: ```python import nlp dataset = nlp.load_dataset('boolq') def func1(x): return x def func2(x): return None train_output = dataset["train"].map(func1) valid_output = dataset["validation"].map(func1) print() print(len(train_output), len(valid_output)) # Output: 9427 9427 ``` Th...
CLOSED
2020-05-23T06:40:58
2020-05-23T20:22:18
2020-05-23T20:22:17
https://github.com/huggingface/datasets/issues/186
zphang
2
[]
183
[Bug] labels of glue/ax are all -1
``` ax = nlp.load_dataset('glue', 'ax') for i in range(30): print(ax['test'][i]['label'], end=', ') ``` ``` -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, ```
CLOSED
2020-05-22T08:43:36
2020-05-22T22:14:05
2020-05-22T22:14:05
https://github.com/huggingface/datasets/issues/183
richarddwang
2
[]
181
Cannot upload my own dataset
I look into `nlp-cli` and `user.py` to learn how to upload my own data. It is supposed to work like this - Register to get username, password at huggingface.co - `nlp-cli login` and type username, passworld - I have a single file to upload at `./ttc/ttc_freq_extra.csv` - `nlp-cli upload ttc/ttc_freq_extra.csv` ...
CLOSED
2020-05-21T16:45:52
2020-06-18T22:14:42
2020-06-18T22:14:42
https://github.com/huggingface/datasets/issues/181
korakot
6
[]
179
[Feature request] separate split name and split instructions
Currently, the name of an nlp.NamedSplit is parsed in arrow_reader.py and used as the instruction. This makes it impossible to have several training sets, which can occur when: - A dataset corresponds to a collection of sub-datasets - A dataset was built in stages, adding new examples at each stage Would it be ...
CLOSED
2020-05-21T14:10:51
2020-05-22T13:31:08
2020-05-22T13:31:07
https://github.com/huggingface/datasets/issues/179
yjernite
2
[]
175
[Manual data dir] Error message: nlp.load_dataset('xsum') -> TypeError
v 0.1.0 from pip ```python import nlp xsum = nlp.load_dataset('xsum') ``` Issue is `dl_manager.manual_dir`is `None` ```python --------------------------------------------------------------------------- TypeError Traceback (most recent call last) <ipython-input-42-8a32f06...
CLOSED
2020-05-20T17:00:32
2020-05-20T18:18:50
2020-05-20T18:18:50
https://github.com/huggingface/datasets/issues/175
sshleifer
0
[]
174
nlp.load_dataset('xsum') -> TypeError
CLOSED
2020-05-20T16:59:09
2020-05-20T17:43:46
2020-05-20T17:43:46
https://github.com/huggingface/datasets/issues/174
sshleifer
0
[]
172
Clone not working on Windows environment
Cloning in a windows environment is not working because of use of special character '?' in folder name .. Please consider changing the folder name .... Reference to folder - nlp/datasets/cnn_dailymail/dummy/3.0.0/3.0.0/dummy_data-zip-extracted/dummy_data/uc?export=download&id=0BwmD_VLjROrfM1BxdkxVaTY2bWs/dailymail/s...
CLOSED
2020-05-20T00:45:14
2020-05-23T12:49:13
2020-05-23T11:27:52
https://github.com/huggingface/datasets/issues/172
codehunk628
2
[]
168
Loading 'wikitext' dataset fails
Loading the 'wikitext' dataset fails with Attribute error: Code to reproduce (From example notebook): import nlp wikitext_dataset = nlp.load_dataset('wikitext') Error: --------------------------------------------------------------------------- AttributeError Traceback (most rece...
CLOSED
2020-05-19T13:04:29
2020-05-26T21:46:52
2020-05-26T21:46:52
https://github.com/huggingface/datasets/issues/168
itay1itzhak
6
[]