number
int64
2
7.91k
title
stringlengths
1
290
body
stringlengths
0
228k
state
stringclasses
2 values
created_at
timestamp[s]date
2020-04-14 18:18:51
2025-12-16 10:45:02
updated_at
timestamp[s]date
2020-04-29 09:23:05
2025-12-16 19:34:46
closed_at
timestamp[s]date
2020-04-29 09:23:05
2025-12-16 14:20:48
url
stringlengths
48
51
author
stringlengths
3
26
comments_count
int64
0
70
labels
listlengths
0
4
2,179
Load small datasets in-memory instead of using memory map
Currently all datasets are loaded using memory mapping by default in `load_dataset`. However this might not be necessary for small datasets. If a dataset is small enough, then it can be loaded in-memory and: - its memory footprint would be small so it's ok - in-memory computations/queries would be faster - the cach...
CLOSED
2021-04-07T09:58:16
2021-04-20T10:04:04
2021-04-20T10:04:03
https://github.com/huggingface/datasets/issues/2179
lhoestq
0
[ "enhancement", "generic discussion" ]
2,176
Converting a Value to a ClassLabel
Hi! In the docs for `cast`, it's noted that `For non-trivial conversion, e.g. string <-> ClassLabel you should use map() to update the Dataset.` Would it be possible to have an example that demonstrates such a string <-> ClassLabel conversion using `map`? Thanks!
CLOSED
2021-04-06T22:54:16
2022-06-01T16:31:49
2022-06-01T16:31:49
https://github.com/huggingface/datasets/issues/2176
nelson-liu
2
[ "enhancement" ]
2,175
dataset.search_batch() function outputs all -1 indices sometime.
I am working with RAG and playing around with different faiss indexes. At the moment I use **index = faiss.index_factory(768, "IVF65536_HNSW32,Flat")**. During the retrieval phase exactly in [this line of retrieval_rag.py](https://github.com/huggingface/transformers/blob/master/src/transformers/models/rag/retrieval_...
CLOSED
2021-04-06T21:50:49
2021-04-16T12:21:16
2021-04-16T12:21:15
https://github.com/huggingface/datasets/issues/2175
shamanez
6
[]
2,170
Wikipedia historic dumps are deleted but hf/datasets hardcodes dump date
Wikimedia does not keep all historical dumps. For example, as of today https://dumps.wikimedia.org/kowiki/ only provides ``` 20201220/ 02-Feb-2021 01:36 - 20210101/ 21-Feb-2021 01:26 - 20210120/ ...
OPEN
2021-04-06T03:13:18
2021-06-16T01:10:50
null
https://github.com/huggingface/datasets/issues/2170
leezu
1
[]
2,167
Split type not preserved when reloading the dataset
A minimal reproducible example: ```python >>> from datasets import load_dataset, Dataset >>> dset = load_dataset("sst", split="train") >>> dset.save_to_disk("sst") >>> type(dset.split) <class 'datasets.splits.NamedSplit'> >>> dset = Dataset.load_from_disk("sst") >>> type(dset.split) # NamedSplit expected <cla...
CLOSED
2021-04-04T19:29:54
2021-04-19T09:08:55
2021-04-19T09:08:55
https://github.com/huggingface/datasets/issues/2167
mariosasko
0
[]
2,166
Regarding Test Sets for the GEM datasets
@yjernite Hi, are the test sets for the GEM datasets scheduled to be [added soon](https://gem-benchmark.com/shared_task)? e.g. ``` from datasets import load_dataset DATASET_NAME="common_gen" data = load_dataset("gem", DATASET_NAME) ``` The test set doesn't have the target or references. ``` data['test...
CLOSED
2021-04-04T02:02:45
2021-04-06T08:13:12
2021-04-06T08:13:12
https://github.com/huggingface/datasets/issues/2166
vyraun
2
[ "Dataset discussion" ]
2,165
How to convert datasets.arrow_dataset.Dataset to torch.utils.data.Dataset
Hi, I'm trying to pretraine deep-speed model using HF arxiv dataset like: ``` train_ds = nlp.load_dataset('scientific_papers', 'arxiv') train_ds.set_format( type="torch", columns=["input_ids", "attention_mask", "global_attention_mask", "labels"], ) engine, _, _, _ = deepspeed.initialize( ...
CLOSED
2021-04-04T01:01:48
2021-08-24T15:55:35
2021-04-07T15:06:04
https://github.com/huggingface/datasets/issues/2165
y-rokutan
7
[]
2,162
visualization for cc100 is broken
Hi visualization through dataset viewer for cc100 is broken https://huggingface.co/datasets/viewer/ thanks a lot
CLOSED
2021-04-02T10:11:13
2022-10-05T13:20:24
2022-10-05T13:20:24
https://github.com/huggingface/datasets/issues/2162
dorost1234
3
[ "nlp-viewer" ]
2,161
any possibility to download part of large datasets only?
Hi Some of the datasets I need like cc100 are very large, and then I wonder if I can download first X samples of the shuffled/unshuffled data without going through first downloading the whole data then sampling? thanks
CLOSED
2021-04-02T10:06:46
2022-10-05T13:26:51
2022-10-05T13:26:51
https://github.com/huggingface/datasets/issues/2161
dorost1234
6
[]
2,160
data_args.preprocessing_num_workers almost freezes
Hi @lhoestq I am running this code from huggingface transformers https://github.com/huggingface/transformers/blob/master/examples/language-modeling/run_mlm.py to speed up tokenization, since I am running on multiple datasets, I am using data_args.preprocessing_num_workers = 4 with opus100 corpus but this moves ...
CLOSED
2021-04-02T07:56:13
2021-04-02T10:14:32
2021-04-02T10:14:31
https://github.com/huggingface/datasets/issues/2160
dorost1234
2
[]
2,159
adding ccnet dataset
## Adding a Dataset - **Name:** ccnet - **Description:** Common Crawl - **Paper:** https://arxiv.org/abs/1911.00359 - **Data:** https://github.com/facebookresearch/cc_net - **Motivation:** this is one of the most comprehensive clean monolingual datasets across a variety of languages. Quite importan...
CLOSED
2021-04-01T23:28:36
2021-04-02T10:05:19
2021-04-02T10:05:19
https://github.com/huggingface/datasets/issues/2159
dorost1234
1
[ "dataset request" ]
2,158
viewer "fake_news_english" error
When I visit the [Huggingface - viewer](https://huggingface.co/datasets/viewer/) web site, under the dataset "fake_news_english" I've got this error: > ImportError: To be able to use this dataset, you need to install the following dependencies['openpyxl'] using 'pip install # noqa: requires this pandas optional depe...
CLOSED
2021-04-01T14:13:20
2022-10-05T13:22:02
2022-10-05T13:22:02
https://github.com/huggingface/datasets/issues/2158
emanuelevivoli
2
[ "nlp-viewer" ]
2,153
load_dataset ignoring features
First of all, I'm sorry if it is a repeated issue or the changes are already in master, I searched and I didn't find anything. I'm using datasets 1.5.0 ![image](https://user-images.githubusercontent.com/37592763/113114369-8f376580-920b-11eb-900d-94365b59f04b.png) As you can see, when I load the dataset, the C...
CLOSED
2021-03-31T08:30:09
2022-10-05T13:29:12
2022-10-05T13:29:12
https://github.com/huggingface/datasets/issues/2153
GuillemGSubies
3
[ "bug" ]
2,149
Telugu subset missing for xtreme tatoeba dataset
from nlp import load_dataset train_dataset = load_dataset('xtreme', 'tatoeba.tel')['validation'] ValueError: BuilderConfig tatoeba.tel not found. but language tel is actually included in xtreme: https://github.com/google-research/xtreme/blob/master/utils_preprocess.py def tatoeba_preprocess(args): lang3_dict ...
CLOSED
2021-03-30T15:26:34
2022-10-05T13:28:30
2022-10-05T13:28:30
https://github.com/huggingface/datasets/issues/2149
cosmeowpawlitan
2
[]
2,148
Add configurable options to `seqeval` metric
Right now `load_metric("seqeval")` only works in the default mode of evaluation (equivalent to conll evaluation). However, seqeval library [supports](https://github.com/chakki-works/seqeval#support-features) different evaluation schemes (IOB1, IOB2, etc.), which can be plugged in just by supporting additional kwargs...
CLOSED
2021-03-30T15:04:06
2021-04-15T13:49:46
2021-04-15T13:49:46
https://github.com/huggingface/datasets/issues/2148
marrodion
1
[]
2,146
Dataset file size on disk is very large with 3D Array
Hi, I have created my own dataset using the provided dataset loading script. It is an image dataset where images are stored as 3D Array with dtype=uint8. The actual size on disk is surprisingly large. It takes 520 MB. Here is some info from `dataset_info.json`. `{ "description": "", "citation": ""...
OPEN
2021-03-30T14:46:09
2021-04-16T13:07:02
null
https://github.com/huggingface/datasets/issues/2146
jblemoine
6
[]
2,144
Loading wikipedia 20200501.en throws pyarrow related error
**Problem description** I am getting the following error when trying to load wikipedia/20200501.en dataset. **Error log** Downloading and preparing dataset wikipedia/20200501.en (download: 16.99 GiB, generated: 17.07 GiB, post-processed: Unknown size, total: 34.06 GiB) to /usr/local/workspace/NAS_NLP/cache/wikiped...
OPEN
2021-03-30T10:38:31
2021-04-01T09:21:17
null
https://github.com/huggingface/datasets/issues/2144
TomPyonsuke
6
[]
2,139
TypeError when using save_to_disk in a dataset loaded with ReadInstruction split
Hi, Loading a dataset with `load_dataset` using a split defined via `ReadInstruction` and then saving it to disk results in the following error: `TypeError: Object of type ReadInstruction is not JSON serializable`. Here is the minimal reproducible example: ```python from datasets import load_dataset from dat...
CLOSED
2021-03-29T18:23:54
2021-03-30T09:12:53
2021-03-30T09:12:53
https://github.com/huggingface/datasets/issues/2139
PedroMLF
2
[]
2,135
en language data from MLQA dataset is missing
Hi I need mlqa-translate-train.en dataset, but it is missing from the MLQA dataset. could you have a look please? @lhoestq thank you for your help to fix this issue.
CLOSED
2021-03-29T10:47:50
2021-03-30T10:20:23
2021-03-30T10:20:23
https://github.com/huggingface/datasets/issues/2135
rabeehk
3
[]
2,134
Saving large in-memory datasets with save_to_disk crashes because of pickling
Using Datasets 1.5.0 on Python 3.7. Recently I've been working on medium to large size datasets (pretokenized raw text sizes from few gigabytes to low tens of gigabytes), and have found out that several preprocessing steps are massively faster when done in memory, and I have the ability to requisition a lot of RAM, so...
CLOSED
2021-03-29T10:43:15
2021-05-03T17:59:21
2021-05-03T17:59:21
https://github.com/huggingface/datasets/issues/2134
prokopCerny
6
[ "bug" ]
2,133
bug in mlqa dataset
Hi Looking into MLQA dataset for langauge "ar": ``` "question": [ "\u0645\u062a\u0649 \u0628\u062f\u0627\u062a \u0627\u0644\u0645\u062c\u0644\u0629 \u0627\u0644\u0645\u062f\u0631\u0633\u064a\u0629 \u0641\u064a \u0646\u0648\u062a\u0631\u062f\u0627\u0645 \u0628\u0627\u0644\u0646\u0634\u0631?", "\u0643\u0...
CLOSED
2021-03-29T09:03:09
2021-03-30T17:40:57
2021-03-30T17:40:57
https://github.com/huggingface/datasets/issues/2133
dorost1234
3
[]
2,132
TydiQA dataset is mixed and is not split per language
Hi @lhoestq Currently TydiQA is mixed and user can only access the whole training set of all languages: https://www.tensorflow.org/datasets/catalog/tydi_qa for using this dataset, one need to train/evaluate in each separate language, and having them mixed, makes it hard to use this dataset. This is much convenien...
OPEN
2021-03-29T08:56:21
2021-04-04T09:57:15
null
https://github.com/huggingface/datasets/issues/2132
dorost1234
3
[]
2,131
When training with Multi-Node Multi-GPU the worker 2 has TypeError: 'NoneType' object
version: 1.5.0 met a very strange error, I am training large scale language model, and need train on 2 machines(workers). And sometimes I will get this error `TypeError: 'NoneType' object is not iterable` This is traceback ``` 71 |   | Traceback (most recent call last): -- | -- | -- 72 |   | File "run_gpt.py"...
CLOSED
2021-03-29T08:45:58
2021-04-10T11:08:55
2021-04-10T11:08:55
https://github.com/huggingface/datasets/issues/2131
andy-yangz
3
[ "bug" ]
2,130
wikiann dataset is missing columns
Hi Wikiann dataset needs to have "spans" columns, which is necessary to be able to use this dataset, but this column is missing from huggingface datasets, could you please have a look? thank you @lhoestq
CLOSED
2021-03-29T08:23:00
2021-08-27T14:44:18
2021-08-27T14:44:18
https://github.com/huggingface/datasets/issues/2130
dorost1234
5
[ "good first issue" ]
2,129
How to train BERT model with next sentence prediction?
Hello. I'm trying to pretrain the BERT model with next sentence prediction. Is there any function that supports next sentence prediction like ` TextDatasetForNextSentencePrediction` of `huggingface/transformers` ?
CLOSED
2021-03-29T06:48:03
2021-04-01T04:58:40
2021-04-01T04:58:40
https://github.com/huggingface/datasets/issues/2129
jnishi
4
[]
2,128
Dialogue action slot name and value are reversed in MultiWoZ 2.2
Hi @yjernite, thank you for adding MultiWoZ 2.2 in the huggingface datasets platform. It is beneficial! I spot an error that the order of Dialogue action slot names and values are reversed. https://github.com/huggingface/datasets/blob/649b2c469779bc4221e1b6969aa2496d63eb5953/datasets/multi_woz_v22/multi_woz_v22.p...
CLOSED
2021-03-29T06:34:02
2021-03-31T12:48:01
2021-03-31T12:48:01
https://github.com/huggingface/datasets/issues/2128
adamlin120
1
[ "dataset bug" ]
2,125
Is dataset timit_asr broken?
Using `timit_asr` dataset, I saw all records are the same. ``` python from datasets import load_dataset, load_metric timit = load_dataset("timit_asr") from datasets import ClassLabel import random import pandas as pd from IPython.display import display, HTML def show_random_elements(dataset, num_example...
CLOSED
2021-03-28T08:30:18
2021-03-28T12:29:25
2021-03-28T12:29:25
https://github.com/huggingface/datasets/issues/2125
kosuke-kitahara
2
[]
2,124
Adding ScaNN library to do MIPS?
@lhoestq Hi I am thinking of adding this new google library to do the MIPS similar to **add_faiss_idex**. As the paper suggests, it is really fast when it comes to retrieving the nearest neighbors. https://github.com/google-research/google-research/tree/master/scann ![image](https://user-images.githubusercontent...
OPEN
2021-03-28T00:07:00
2021-03-29T13:23:43
null
https://github.com/huggingface/datasets/issues/2124
shamanez
1
[]
2,123
Problem downloading GEM wiki_auto_asset_turk dataset
@yjernite ### Summary I am currently working on the GEM datasets and do not manage to download the wiki_auto_asset_turk data, whereas all other datasets download well with the same code. ### Steps to reproduce Code snippet: from datasets import load_dataset #dataset = load_dataset('gem', 'web_nlg_en') d...
CLOSED
2021-03-27T18:41:28
2021-05-12T16:15:18
2021-05-12T16:15:17
https://github.com/huggingface/datasets/issues/2123
mille-s
5
[]
2,120
dataset viewer does not work anymore
Hi I normally use this link to see all datasets and how I can load them https://huggingface.co/datasets/viewer/ Now I am getting 502 Bad Gateway nginx/1.18.0 (Ubuntu) could you bring this webpage back ? this was very helpful @lhoestq thanks for your help
CLOSED
2021-03-26T13:22:13
2021-03-26T15:52:22
2021-03-26T15:52:22
https://github.com/huggingface/datasets/issues/2120
dorost1234
2
[ "nlp-viewer" ]
2,117
load_metric from local "glue.py" meet error 'NoneType' object is not callable
actual_task = "mnli" if task == "mnli-mm" else task dataset = load_dataset(path='/home/glue.py', name=actual_task) metric = load_metric(path='/home/glue.py', name=actual_task) --------------------------------------------------------------------------- TypeError Traceback (most recent...
CLOSED
2021-03-26T02:35:22
2021-08-25T21:44:05
2021-03-26T02:40:26
https://github.com/huggingface/datasets/issues/2117
Frankie123421
3
[]
2,116
Creating custom dataset results in error while calling the map() function
calling `map()` of `datasets` library results into an error while defining a Custom dataset. Reproducible example: ``` import datasets class MyDataset(datasets.Dataset): def __init__(self, sentences): "Initialization" self.samples = sentences def __len__(self): "Denotes the ...
CLOSED
2021-03-26T00:37:46
2021-03-31T14:30:32
2021-03-31T14:30:32
https://github.com/huggingface/datasets/issues/2116
GeetDsa
1
[]
2,115
The datasets.map() implementation modifies the datatype of os.environ object
In our testing, we noticed that the datasets.map() implementation is modifying the datatype of python os.environ object from '_Environ' to 'dict'. This causes following function calls to fail as follows: ` x = os.environ.get("TEST_ENV_VARIABLE_AFTER_dataset_map", default=None) TypeError: get() takes...
CLOSED
2021-03-25T20:29:19
2021-03-26T15:13:52
2021-03-26T15:13:52
https://github.com/huggingface/datasets/issues/2115
leleamol
0
[]
2,108
Is there a way to use a GPU only when training an Index in the process of add_faisis_index?
Motivation - Some FAISS indexes like IVF consist of the training step that clusters the dataset into a given number of indexes. It would be nice if we can use a GPU to do the training step and covert the index back to CPU as mention in [this faiss example](https://gist.github.com/mdouze/46d6bbbaabca0b9778fca37ed2bcccf6...
OPEN
2021-03-24T21:32:16
2021-03-25T06:31:43
null
https://github.com/huggingface/datasets/issues/2108
shamanez
0
[ "question" ]
2,106
WMT19 Dataset for Kazakh-English is not formatted correctly
In addition to the bug of languages being switched from Issue @415, there are incorrect translations in the dataset because the English-Kazakh translations have a one off formatting error. The News Commentary v14 parallel data set for kk-en from http://www.statmt.org/wmt19/translation-task.html has a bug here: > ...
OPEN
2021-03-23T20:14:47
2021-03-25T21:36:20
null
https://github.com/huggingface/datasets/issues/2106
trina731
1
[ "dataset bug" ]
2,105
Request to remove S2ORC dataset
Hi! I was wondering if it's possible to remove [S2ORC](https://huggingface.co/datasets/s2orc) from hosting on Huggingface's platform? Unfortunately, there are some legal considerations about how we make this data available. Happy to add back to Huggingface's platform once we work out those hurdles! Thanks!
OPEN
2021-03-23T19:43:06
2021-08-04T19:18:02
null
https://github.com/huggingface/datasets/issues/2105
kyleclo
3
[]
2,104
Trouble loading wiki_movies
Hello, I am trying to load_dataset("wiki_movies") and it gives me this error - `FileNotFoundError: Couldn't find file locally at wiki_movies/wiki_movies.py, or remotely at https://raw.githubusercontent.com/huggingface/datasets/1.1.2/datasets/wiki_movies/wiki_movies.py or https://s3.amazonaws.com/datasets.huggingfa...
CLOSED
2021-03-23T18:59:54
2022-03-30T08:22:58
2022-03-30T08:22:58
https://github.com/huggingface/datasets/issues/2104
adityaarunsinghal
2
[]
2,103
citation, homepage, and license fields of `dataset_info.json` are duplicated many times
This happens after a `map` operation when `num_proc` is set to `>1`. I tested this by cleaning up the json before running the `map` op on the dataset so it's unlikely it's coming from an earlier concatenation. Example result: ``` "citation": "@ONLINE {wikidump,\n author = {Wikimedia Foundation},\n title = {...
CLOSED
2021-03-23T17:18:09
2021-04-06T14:39:59
2021-04-06T14:39:59
https://github.com/huggingface/datasets/issues/2103
samsontmr
1
[ "enhancement", "good first issue" ]
2,099
load_from_disk takes a long time to load local dataset
I have an extremely large tokenized dataset (24M examples) that loads in a few minutes. However, after adding a column similar to `input_ids` (basically a list of integers) and saving the dataset to disk, the load time goes to >1 hour. I've even tried using `np.uint8` after seeing #1985 but it doesn't seem to be helpin...
CLOSED
2021-03-23T09:28:37
2021-03-23T17:12:16
2021-03-23T17:12:16
https://github.com/huggingface/datasets/issues/2099
samsontmr
8
[]
2,098
SQuAD version
Hi~ I want train on squad dataset. What's the version of the squad? Is it 1.1 or 1.0? I'm new in QA, I don't find some descriptions about it.
CLOSED
2021-03-23T07:47:54
2021-03-26T09:48:54
2021-03-26T09:48:54
https://github.com/huggingface/datasets/issues/2098
h-peng17
2
[]
2,096
CoNLL 2003 dataset not including German
Hello, thanks for all the work on developing and maintaining this amazing platform, which I am enjoying working with! I was wondering if there is a reason why the German CoNLL 2003 dataset is not included in the [repository](https://github.com/huggingface/datasets/tree/master/datasets/conll2003), since a copy of it ...
CLOSED
2021-03-22T19:23:56
2023-07-25T16:49:07
2023-07-25T16:49:07
https://github.com/huggingface/datasets/issues/2096
rxian
2
[ "dataset request" ]
2,092
How to disable making arrow tables in load_dataset ?
Is there a way to disable the construction of arrow tables, or to make them on the fly as the dataset is being used ?
CLOSED
2021-03-21T04:50:07
2022-06-01T16:49:52
2022-06-01T16:49:52
https://github.com/huggingface/datasets/issues/2092
Jeevesh8
7
[]
2,089
Add documentaton for dataset README.md files
Hi, the dataset README files have special headers. Somehow a documenation of the allowed values and tags is missing. Could you add that? Just to give some concrete questions that should be answered imo: - which values can be passted to multilinguality? - what should be passed to language_creators? - which valu...
CLOSED
2021-03-20T11:44:38
2023-07-25T16:45:38
2023-07-25T16:45:37
https://github.com/huggingface/datasets/issues/2089
PhilipMay
8
[]
2,084
CUAD - Contract Understanding Atticus Dataset
## Adding a Dataset - **Name:** CUAD - Contract Understanding Atticus Dataset - **Description:** As one of the only large, specialized NLP benchmarks annotated by experts, CUAD can serve as a challenging research benchmark for the broader NLP community. - **Paper:** https://arxiv.org/abs/2103.06268 - **Data:** http...
CLOSED
2021-03-19T09:27:43
2021-04-16T08:50:44
2021-04-16T08:50:44
https://github.com/huggingface/datasets/issues/2084
theo-m
1
[ "dataset request" ]
2,083
`concatenate_datasets` throws error when changing the order of datasets to concatenate
Hey, I played around with the `concatenate_datasets(...)` function: https://huggingface.co/docs/datasets/package_reference/main_classes.html?highlight=concatenate_datasets#datasets.concatenate_datasets and noticed that when the order in which the datasets are concatenated changes an error is thrown where it shou...
CLOSED
2021-03-19T08:29:48
2021-04-09T09:25:33
2021-04-09T09:25:33
https://github.com/huggingface/datasets/issues/2083
patrickvonplaten
1
[]
2,080
Multidimensional arrays in a Dataset
Hi, I'm trying to put together a `datasets.Dataset` to be used with LayoutLM which is available in `transformers`. This model requires as input the bounding boxes of each of the token of a sequence. This is when I realized that `Dataset` does not support multi-dimensional arrays as a value for a column in a row. ...
CLOSED
2021-03-18T16:29:14
2021-03-25T12:46:53
2021-03-25T12:46:53
https://github.com/huggingface/datasets/issues/2080
vermouthmjl
2
[]
2,078
MemoryError when computing WER metric
Hi, I'm trying to follow the ASR example to try Wav2Vec. This is the code that I use for WER calculation: ``` wer = load_metric("wer") print(wer.compute(predictions=result["predicted"], references=result["target"])) ``` However, I receive the following exception: `Traceback (most recent call last): File ...
CLOSED
2021-03-18T11:30:05
2021-05-01T08:31:49
2021-04-06T07:20:43
https://github.com/huggingface/datasets/issues/2078
diego-fustes
11
[ "metric bug" ]
2,076
Issue: Dataset download error
The download link in `iwslt2017.py` file does not seem to work anymore. For example, `FileNotFoundError: Couldn't find file at https://wit3.fbk.eu/archive/2017-01-trnted/texts/zh/en/zh-en.tgz` Would be nice if we could modify it script and use the new downloadable link?
OPEN
2021-03-18T06:36:06
2021-03-22T11:52:31
null
https://github.com/huggingface/datasets/issues/2076
XuhuiZhou
7
[ "dataset bug" ]
2,075
ConnectionError: Couldn't reach common_voice.py
When I run: from datasets import load_dataset, load_metric common_voice_train = load_dataset("common_voice", "zh-CN", split="train+validation") common_voice_test = load_dataset("common_voice", "zh-CN", split="test") Got: ConnectionError: Couldn't reach https://raw.githubusercontent.com/huggingface/datasets/ma...
CLOSED
2021-03-18T01:19:06
2021-03-20T10:29:41
2021-03-20T10:29:41
https://github.com/huggingface/datasets/issues/2075
LifaSun
2
[]
2,071
Multiprocessing is slower than single process
```python # benchmark_filter.py import logging import sys import time from datasets import load_dataset, set_caching_enabled if __name__ == "__main__": set_caching_enabled(False) logging.basicConfig(level=logging.DEBUG) bc = load_dataset("bookcorpus") now = time.time() try: ...
CLOSED
2021-03-17T16:08:58
2021-03-18T09:10:23
2021-03-18T09:10:23
https://github.com/huggingface/datasets/issues/2071
theo-m
1
[ "bug" ]
2,070
ArrowInvalid issue for squad v2 dataset
Hello, I am using the huggingface official question answering example notebook (https://colab.research.google.com/github/huggingface/notebooks/blob/master/examples/question_answering.ipynb). In the prepare_validation_features function, I made some modifications to tokenize a new set of quesions with the original co...
CLOSED
2021-03-17T13:51:49
2021-08-04T17:57:16
2021-08-04T17:57:16
https://github.com/huggingface/datasets/issues/2070
MichaelYxWang
1
[]
2,068
PyTorch not available error on SageMaker GPU docker though it is installed
I get en error when running data loading using SageMaker SDK ``` File "main.py", line 34, in <module> run_training() File "main.py", line 25, in run_training dm.setup('fit') File "/opt/conda/lib/python3.6/site-packages/pytorch_lightning/core/datamodule.py", line 92, in wrapped_fn return fn(*a...
CLOSED
2021-03-17T10:04:27
2021-06-14T04:47:30
2021-06-14T04:47:30
https://github.com/huggingface/datasets/issues/2068
sivakhno
7
[]
2,067
Multiprocessing windows error
As described here https://huggingface.co/blog/fine-tune-xlsr-wav2vec2 When using the num_proc argument on windows the whole Python environment crashes and hanging in loop. For example at the map_to_array part. An error occures because the cache file already exists and windows throws and error. After this the log c...
CLOSED
2021-03-17T09:12:28
2021-08-04T17:59:08
2021-08-04T17:59:08
https://github.com/huggingface/datasets/issues/2067
flozi00
10
[]
2,065
Only user permission of saved cache files, not group
Hello, It seems when a cached file is saved from calling `dataset.map` for preprocessing, it gets the user permissions and none of the user's group permissions. As we share data files across members of our team, this is causing a bit of an issue as we have to continually reset the permission of the files. Do you kno...
CLOSED
2021-03-17T00:20:22
2023-03-31T12:17:06
2021-05-10T06:45:29
https://github.com/huggingface/datasets/issues/2065
lorr1
26
[ "enhancement", "good first issue" ]
2,061
Cannot load udpos subsets from xtreme dataset using load_dataset()
Hello, I am trying to load the udpos English subset from xtreme dataset, but this faces an error during loading. I am using datasets v1.4.1, pip install. I have tried with other udpos languages which also fail, though loading a different subset altogether (such as XNLI) has no issue. I have also tried on Colab and ...
CLOSED
2021-03-16T09:32:13
2021-06-18T11:54:11
2021-06-18T11:54:10
https://github.com/huggingface/datasets/issues/2061
adzcodez
6
[ "good first issue" ]
2,059
Error while following docs to load the `ted_talks_iwslt` dataset
I am currently trying to load the `ted_talks_iwslt` dataset into google colab. The [docs](https://huggingface.co/datasets/ted_talks_iwslt) mention the following way of doing so. ```python dataset = load_dataset("ted_talks_iwslt", language_pair=("it", "pl"), year="2014") ``` Executing it results in the error ...
CLOSED
2021-03-16T09:12:19
2021-03-16T18:00:31
2021-03-16T18:00:07
https://github.com/huggingface/datasets/issues/2059
ekdnam
2
[ "dataset bug" ]
2,058
Is it possible to convert a `tfds` to HuggingFace `dataset`?
I was having some weird bugs with `C4`dataset version of HuggingFace, so I decided to try to download `C4`from `tfds`. I would like to know if it is possible to convert a tfds dataset to HuggingFace dataset format :) I can also open a new issue reporting the bug I'm receiving with `datasets.load_dataset('c4','en')` ...
CLOSED
2021-03-15T20:18:47
2023-07-25T16:47:40
2023-07-25T16:47:40
https://github.com/huggingface/datasets/issues/2058
abarbosa94
1
[]
2,056
issue with opus100/en-fr dataset
Hi I am running run_mlm.py code of huggingface repo with opus100/fr-en pair, I am getting this error, note that this error occurs for only this pairs and not the other pairs. Any idea why this is occurring? and how I can solve this? Thanks a lot @lhoestq for your help in advance. ` thread '<unnamed>' panicked...
CLOSED
2021-03-15T11:32:42
2021-03-16T15:49:00
2021-03-16T15:48:59
https://github.com/huggingface/datasets/issues/2056
dorost1234
3
[]
2,055
is there a way to override a dataset object saved with save_to_disk?
At the moment when I use save_to_disk, it uses the arbitrary name for the arrow file. Is there a way to override such an object?
CLOSED
2021-03-15T10:50:53
2021-03-22T04:06:17
2021-03-22T04:06:17
https://github.com/huggingface/datasets/issues/2055
shamanez
4
[]
2,054
Could not find file for ZEST dataset
I am trying to use zest dataset from Allen AI using below code in colab, ``` !pip install -q datasets from datasets import load_dataset dataset = load_dataset("zest") ``` I am getting the following error, ``` Using custom data configuration default Downloading and preparing dataset zest/default (download: ...
CLOSED
2021-03-15T09:11:58
2021-05-03T09:30:24
2021-05-03T09:30:24
https://github.com/huggingface/datasets/issues/2054
bhadreshpsavani
4
[ "dataset bug" ]
2,052
Timit_asr dataset repeats examples
Summary When loading timit_asr dataset on datasets 1.4+, every row in the dataset is the same Steps to reproduce As an example, on this code there is the text from the training part: Code snippet: ``` from datasets import load_dataset, load_metric timit = load_dataset("timit_asr") timit['train']['text']...
CLOSED
2021-03-14T11:43:43
2021-03-15T10:37:16
2021-03-15T10:37:16
https://github.com/huggingface/datasets/issues/2052
fermaat
2
[]
2,050
Build custom dataset to fine-tune Wav2Vec2
Thank you for your recent tutorial on how to finetune Wav2Vec2 on a custom dataset. The example you gave here (https://huggingface.co/blog/fine-tune-xlsr-wav2vec2) was on the CommonVoice dataset. However, what if I want to load my own dataset? I have a manifest (transcript and their audio files) in a JSON file.
CLOSED
2021-03-13T22:01:10
2021-03-15T09:27:28
2021-03-15T09:27:28
https://github.com/huggingface/datasets/issues/2050
Omarnabk
3
[ "dataset request" ]
2,048
github is not always available - probably need a back up
Yesterday morning github wasn't working: ``` :/tmp$ wget https://raw.githubusercontent.com/huggingface/datasets/1.4.1/metrics/sacrebleu/sacrebleu.py--2021-03-12 18:35:59-- https://raw.githubusercontent.com/huggingface/datasets/1.4.1/metrics/sacrebleu/sacrebleu.py Resolving raw.githubusercontent.com (raw.githubuser...
CLOSED
2021-03-13T18:03:32
2022-04-01T15:27:10
2022-04-01T15:27:10
https://github.com/huggingface/datasets/issues/2048
stas00
0
[]
2,046
add_faisis_index gets very slow when doing it interatively
As the below code suggests, I want to run add_faisis_index in every nth interaction from the training loop. I have 7.2 million documents. Usually, it takes 2.5 hours (if I run an as a separate process similar to the script given in rag/use_own_knowleldge_dataset.py). Now, this takes usually 5hrs. Is this normal? Any ...
CLOSED
2021-03-12T20:27:18
2021-03-24T22:29:11
2021-03-24T22:29:11
https://github.com/huggingface/datasets/issues/2046
shamanez
11
[]
2,040
ValueError: datasets' indices [1] come from memory and datasets' indices [0] come from disk
Hi there, I am trying to concat two datasets that I've previously saved to disk via `save_to_disk()` like so (note that both are saved as `DataDict`, `PATH_DATA_CLS_*` are `Path`-objects): ```python concatenate_datasets([load_from_disk(PATH_DATA_CLS_A)['train'], load_from_disk(PATH_DATA_CLS_B)['train']]) ``` Yie...
CLOSED
2021-03-12T14:27:00
2021-08-04T18:00:43
2021-08-04T18:00:43
https://github.com/huggingface/datasets/issues/2040
simonschoe
4
[]
2,038
outdated dataset_infos.json might fail verifications
The [doc2dial/dataset_infos.json](https://github.com/huggingface/datasets/blob/master/datasets/doc2dial/dataset_infos.json) is outdated. It would fail data_loader when verifying download checksum etc.. Could you please update this file or point me how to update this file? Thank you.
CLOSED
2021-03-12T11:41:54
2021-03-16T16:27:40
2021-03-16T16:27:40
https://github.com/huggingface/datasets/issues/2038
songfeng
2
[]
2,036
Cannot load wikitext
when I execute these codes ``` >>> from datasets import load_dataset >>> test_dataset = load_dataset("wikitext") ``` I got an error,any help? ``` Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/home/xxx/anaconda3/envs/transformer/lib/python3.7/site-packages/datasets/load.p...
CLOSED
2021-03-12T09:09:39
2021-03-15T08:45:02
2021-03-15T08:44:44
https://github.com/huggingface/datasets/issues/2036
Gpwner
1
[]
2,035
wiki40b/wikipedia for almost all languages cannot be downloaded
Hi I am trying to download the data as below: ``` from datasets import load_dataset dataset = load_dataset("wiki40b", "cs") print(dataset) ``` I am getting this error. @lhoestq I will be grateful if you could assist me with this error. For almost all languages except english I am getting this error. I rea...
CLOSED
2021-03-11T19:54:54
2024-03-15T16:09:49
2024-03-15T16:09:48
https://github.com/huggingface/datasets/issues/2035
dorost1234
11
[]
2,032
Use Arrow filtering instead of writing a new arrow file for Dataset.filter
Currently the filter method reads the dataset batch by batch to write a new, filtered, arrow file on disk. Therefore all the reading + writing can take some time. Using a mask directly on the arrow table doesn't do any read or write operation therefore it's significantly quicker. I think there are two cases: - i...
CLOSED
2021-03-11T15:18:50
2024-01-19T13:26:32
2024-01-19T13:26:32
https://github.com/huggingface/datasets/issues/2032
lhoestq
1
[ "enhancement" ]
2,031
wikipedia.py generator that extracts XML doesn't release memory
I tried downloading Japanese wikipedia, but it always failed because of out of memory maybe. I found that the generator function that extracts XML data in wikipedia.py doesn't release memory in the loop. https://github.com/huggingface/datasets/blob/13a5b7db992ad5cf77895e4c0f76595314390418/datasets/wikipedia/wikip...
CLOSED
2021-03-11T12:51:24
2021-03-22T08:33:52
2021-03-22T08:33:52
https://github.com/huggingface/datasets/issues/2031
miyamonz
2
[]
2,029
Loading a faiss index KeyError
I've recently been testing out RAG and DPR embeddings, and I've run into an issue that is not apparent in the documentation. The basic steps are: 1. Create a dataset (dataset1) 2. Create an embeddings column using DPR 3. Add a faiss index to the dataset 4. Save faiss index to a file 5. Create a new dataset (d...
CLOSED
2021-03-11T12:16:13
2021-03-12T00:21:09
2021-03-12T00:21:09
https://github.com/huggingface/datasets/issues/2029
nbroad1881
4
[ "documentation" ]
2,026
KeyError on using map after renaming a column
Hi, I'm trying to use `cifar10` dataset. I want to rename the `img` feature to `image` in order to make it consistent with `mnist`, which I'm also planning to use. By doing this, I was trying to avoid modifying `prepare_train_features` function. Here is what I try: ```python transform = Compose([ToPILImage(),...
CLOSED
2021-03-10T18:54:17
2021-03-11T14:39:34
2021-03-11T14:38:40
https://github.com/huggingface/datasets/issues/2026
gchhablani
3
[]
2,022
ValueError when rename_column on splitted dataset
Hi there, I am loading `.tsv` file via `load_dataset` and subsequently split the rows into training and test set via the `ReadInstruction` API like so: ```python split = { 'train': ReadInstruction('train', to=90, unit='%'), 'test': ReadInstruction('train', from_=-10, unit='%') } dataset = load_datase...
CLOSED
2021-03-10T09:40:38
2025-02-05T13:36:07
2021-03-16T14:05:05
https://github.com/huggingface/datasets/issues/2022
simonschoe
2
[]
2,021
Interactively doing save_to_disk and load_from_disk corrupts the datasets object?
dataset_info.json file saved after using save_to_disk gets corrupted as follows. ![image](https://user-images.githubusercontent.com/16892570/110568474-ed969880-81b7-11eb-832f-2e5129656016.png) Is there a way to disable the cache that will save to /tmp/huggiface/datastes ? I have a feeling there is a seri...
CLOSED
2021-03-10T02:48:34
2021-03-13T10:07:41
2021-03-13T10:07:41
https://github.com/huggingface/datasets/issues/2021
shamanez
1
[]
2,012
No upstream branch
Feels like the documentation on adding a new dataset is outdated? https://github.com/huggingface/datasets/blob/987df6b4e9e20fc0c92bc9df48137d170756fd7b/ADD_NEW_DATASET.md#L49-L54 There is no upstream branch on remote.
CLOSED
2021-03-09T09:48:55
2021-03-09T11:33:31
2021-03-09T11:33:31
https://github.com/huggingface/datasets/issues/2012
theo-m
2
[ "documentation" ]
2,010
Local testing fails
I'm following the CI setup as described in https://github.com/huggingface/datasets/blob/8eee4fa9e133fe873a7993ba746d32ca2b687551/.circleci/config.yml#L16-L19 in a new conda environment, at commit https://github.com/huggingface/datasets/commit/4de6dbf84e93dad97e1000120d6628c88954e5d4 and getting ``` FAILED...
CLOSED
2021-03-09T09:01:38
2021-03-09T14:06:03
2021-03-09T14:06:03
https://github.com/huggingface/datasets/issues/2010
theo-m
3
[ "bug" ]
2,009
Ambiguous documentation
https://github.com/huggingface/datasets/blob/2ac9a0d24a091989f869af55f9f6411b37ff5188/templates/new_dataset_script.py#L156-L158 Looking at the template, I find this documentation line to be confusing, the method parameters don't include the `gen_kwargs` so I'm unclear where they're coming from. Happy to push a PR...
CLOSED
2021-03-09T08:42:11
2021-03-12T15:01:34
2021-03-12T15:01:34
https://github.com/huggingface/datasets/issues/2009
theo-m
2
[ "documentation" ]
2,007
How to not load huggingface datasets into memory
Hi I am running this example from transformers library version 4.3.3: (Here is the full documentation https://github.com/huggingface/transformers/issues/8771 but the running command should work out of the box) USE_TF=0 deepspeed run_seq2seq.py --model_name_or_path google/mt5-base --dataset_name wmt16 --dataset_...
CLOSED
2021-03-08T12:35:26
2021-08-04T18:02:25
2021-08-04T18:02:25
https://github.com/huggingface/datasets/issues/2007
dorost1234
2
[]
2,005
Setting to torch format not working with torchvision and MNIST
Hi I am trying to use `torchvision.transforms` to handle the transformation of the image data in the `mnist` dataset. Assume I have a `transform` variable which contains the `torchvision.transforms` object. A snippet of what I am trying to do: ```python def prepare_features(examples): images = [] labe...
CLOSED
2021-03-08T07:38:11
2021-03-09T17:58:13
2021-03-09T17:58:13
https://github.com/huggingface/datasets/issues/2005
gchhablani
9
[]
2,003
Messages are being printed to the `stdout`
In this code segment, we can see some messages are being printed to the `stdout`. https://github.com/huggingface/datasets/blob/7e60bb509b595e8edc60a87f32b2bacfc065d607/src/datasets/builder.py#L545-L554 According to the comment, it is done intentionally, but I don't really understand why don't we log it with a higher ...
CLOSED
2021-03-07T22:09:34
2023-07-25T16:35:21
2023-07-25T16:35:21
https://github.com/huggingface/datasets/issues/2003
mahnerak
3
[]
2,001
Empty evidence document ("provenance") in KILT ELI5 dataset
In the original KILT benchmark(https://github.com/facebookresearch/KILT), all samples has its evidence document (i.e. wikipedia page id) for prediction. For example, a sample in ELI5 dataset has the format including provenance (=evidence document) like this `{"id": "1kiwfx", "input": "In Trading Places (1983...
CLOSED
2021-03-07T15:41:35
2022-12-19T19:25:14
2021-03-17T05:51:01
https://github.com/huggingface/datasets/issues/2001
donggyukimc
1
[]
2,000
Windows Permission Error (most recent version of datasets)
Hi everyone, Can anyone help me with why the dataset loading script below raises a Windows Permission Error? I stuck quite closely to https://github.com/huggingface/datasets/blob/master/datasets/conll2003/conll2003.py , only I want to load the data from three local three-column tsv-files (id\ttokens\tpos_tags\n). I am...
CLOSED
2021-03-07T11:55:28
2021-03-09T12:42:57
2021-03-09T12:42:57
https://github.com/huggingface/datasets/issues/2000
itsLuisa
5
[]
1,997
from datasets import MoleculeDataset, GEOMDataset
I met the ImportError: cannot import name 'MoleculeDataset' from 'datasets'. Have anyone met the similar issues? Thanks!
CLOSED
2021-03-06T15:50:19
2021-03-06T16:13:26
2021-03-06T16:13:26
https://github.com/huggingface/datasets/issues/1997
futianfan
0
[ "dataset request" ]
1,996
Error when exploring `arabic_speech_corpus`
Navigate to https://huggingface.co/datasets/viewer/?dataset=arabic_speech_corpus Error: ``` ImportError: To be able to use this dataset, you need to install the following dependencies['soundfile'] using 'pip install soundfile' for instance' Traceback: File "/home/sasha/.local/share/virtualenvs/lib-ogGKnCK_/lib/p...
CLOSED
2021-03-06T05:55:20
2022-10-05T13:24:26
2022-10-05T13:24:26
https://github.com/huggingface/datasets/issues/1996
elgeish
3
[ "bug", "nlp-viewer", "speech" ]
1,994
not being able to get wikipedia es language
Hi I am trying to run a code with wikipedia of config 20200501.es, getting: Traceback (most recent call last): File "run_mlm_t5.py", line 608, in <module> main() File "run_mlm_t5.py", line 359, in main datasets = load_dataset(data_args.dataset_name, data_args.dataset_config_name) File "/dara/libs...
OPEN
2021-03-05T08:31:48
2021-03-11T20:46:21
null
https://github.com/huggingface/datasets/issues/1994
dorost1234
8
[]
1,993
How to load a dataset with load_from disk and save it again after doing transformations without changing the original?
I am using the latest datasets library. In my work, I first use **load_from_disk** to load a data set that contains 3.8Gb information. Then during my training process, I update that dataset object and add new elements and save it in a different place. When I save the dataset with **save_to_disk**, the original da...
CLOSED
2021-03-05T05:25:50
2021-03-22T04:05:50
2021-03-22T04:05:50
https://github.com/huggingface/datasets/issues/1993
shamanez
7
[]
1,992
`datasets.map` multi processing much slower than single processing
Hi, thank you for the great library. I've been using datasets to pretrain language models, and it often involves datasets as large as ~70G. My data preparation step is roughly two steps: `load_dataset` which splits corpora into a table of sentences, and `map` converts a sentence into a list of integers, using a tok...
OPEN
2021-03-05T02:10:02
2024-06-08T20:18:03
null
https://github.com/huggingface/datasets/issues/1992
hwijeen
14
[ "bug" ]
1,990
OSError: Memory mapping file failed: Cannot allocate memory
Hi, I am trying to run a code with a wikipedia dataset, here is the command to reproduce the error. You can find the codes for run_mlm.py in huggingface repo here: https://github.com/huggingface/transformers/blob/v4.3.2/examples/language-modeling/run_mlm.py ``` python run_mlm.py --model_name_or_path bert-base-multi...
CLOSED
2021-03-04T18:21:58
2021-08-04T18:04:25
2021-08-04T18:04:25
https://github.com/huggingface/datasets/issues/1990
dorost1234
6
[]
1,989
Question/problem with dataset labels
Hi, I'm using a dataset with two labels "nurse" and "not nurse". For whatever reason (that I don't understand), I get an error that I think comes from the datasets package (using csv). Everything works fine if the labels are "nurse" and "surgeon". This is the trace I get: ``` File "../../../models/tr-4.3.2/run_...
CLOSED
2021-03-04T17:06:53
2023-07-24T14:39:33
2023-07-24T14:39:33
https://github.com/huggingface/datasets/issues/1989
ioana-blue
10
[]
1,988
Readme.md is misleading about kinds of datasets?
Hi! At the README.MD, you say: "efficient data pre-processing: simple, fast and reproducible data pre-processing for the above public datasets as well as your own local datasets in CSV/JSON/text. " But here: https://github.com/huggingface/datasets/blob/master/templates/new_dataset_script.py#L82-L117 You menti...
CLOSED
2021-03-04T17:04:20
2021-08-04T18:05:23
2021-08-04T18:05:23
https://github.com/huggingface/datasets/issues/1988
surak
1
[]
1,987
wmt15 is broken
While testing the hotfix, I tried a random other wmt release and found wmt15 to be broken: ``` python -c 'from datasets import load_dataset; load_dataset("wmt15", "de-en")' Downloading: 2.91kB [00:00, 818kB/s] Downloading: 3.02kB [00:00, 897kB/s] Downloading: 41.1kB [00:00, 19.1MB/s] Downloading and preparing da...
CLOSED
2021-03-04T16:46:25
2022-10-05T13:12:26
2022-10-05T13:12:26
https://github.com/huggingface/datasets/issues/1987
stas00
1
[]
1,986
wmt datasets fail to load
~\.cache\huggingface\modules\datasets_modules\datasets\wmt14\43e717d978d2261502b0194999583acb874ba73b0f4aed0ada2889d1bb00f36e\wmt_utils.py in _split_generators(self, dl_manager) 758 # Extract manually downloaded files. 759 manual_files = dl_manager.extract(manual_paths_dict) --> 760 e...
CLOSED
2021-03-04T14:18:55
2021-03-04T14:31:07
2021-03-04T14:31:07
https://github.com/huggingface/datasets/issues/1986
sabania
1
[]
1,984
Add tests for WMT datasets
As requested in #1981, we need tests for WMT datasets, using dummy data.
CLOSED
2021-03-04T06:46:42
2022-11-04T14:19:16
2022-11-04T14:19:16
https://github.com/huggingface/datasets/issues/1984
albertvillanova
1
[]
1,983
The size of CoNLL-2003 is not consistant with the official release.
Thanks for the dataset sharing! But when I use conll-2003, I meet some questions. The statistics of conll-2003 in this repo is : \#train 14041 \#dev 3250 \#test 3453 While the official statistics is: \#train 14987 \#dev 3466 \#test 3684 Wish for your reply~
CLOSED
2021-03-04T04:41:34
2022-10-05T13:13:26
2022-10-05T13:13:26
https://github.com/huggingface/datasets/issues/1983
h-peng17
4
[]
1,981
wmt datasets fail to load
on master: ``` python -c 'from datasets import load_dataset; load_dataset("wmt14", "de-en")' Downloading and preparing dataset wmt14/de-en (download: Unknown size, generated: Unknown size, post-processed: Unknown size, total: Unknown size) to /home/stas/.cache/huggingface/datasets/wmt14/de-en/1.0.0/43e717d978d226150...
CLOSED
2021-03-03T19:21:39
2021-03-04T14:16:47
2021-03-03T22:48:36
https://github.com/huggingface/datasets/issues/1981
stas00
6
[]
1,977
ModuleNotFoundError: No module named 'apache_beam' for wikipedia datasets
Hi I am trying to run run_mlm.py code [1] of huggingface with following "wikipedia"/ "20200501.aa" dataset: `python run_mlm.py --model_name_or_path bert-base-multilingual-cased --dataset_name wikipedia --dataset_config_name 20200501.aa --do_train --do_eval --output_dir /tmp/test-mlm --max_seq_l...
OPEN
2021-03-02T19:21:28
2021-03-03T10:17:40
null
https://github.com/huggingface/datasets/issues/1977
dorost1234
2
[]
1,973
Question: what gets stored in the datasets cache and why is it so huge?
I'm running several training jobs (around 10) with a relatively large dataset (3M samples). The datasets cache reached 178G and it seems really large. What is it stored in there and why is it so large? I don't think I noticed this problem before and seems to be related to the new version of the datasets library. Any in...
CLOSED
2021-03-02T14:35:53
2021-03-30T14:03:59
2021-03-16T09:44:00
https://github.com/huggingface/datasets/issues/1973
ioana-blue
8
[]
1,972
'Dataset' object has no attribute 'rename_column'
'Dataset' object has no attribute 'rename_column'
CLOSED
2021-03-02T08:01:49
2022-06-01T16:08:47
2022-06-01T16:08:47
https://github.com/huggingface/datasets/issues/1972
farooqzaman1
1
[]
1,965
Can we parallelized the add_faiss_index process over dataset shards ?
I am thinking of making the **add_faiss_index** process faster. What if we run the add_faiss_index process on separate dataset shards and then combine them before (dataset.concatenate) saving the faiss.index file ? I feel theoretically this will reduce the accuracy of retrieval since it affects the indexing process...
CLOSED
2021-03-01T12:47:34
2021-03-04T19:40:56
2021-03-04T19:40:42
https://github.com/huggingface/datasets/issues/1965
shamanez
3
[]
1,964
Datasets.py function load_dataset does not match squad dataset
### 1 When I try to train lxmert,and follow the code in README that --dataset name: ```shell python examples/question-answering/run_qa.py --model_name_or_path unc-nlp/lxmert-base-uncased --dataset_name squad --do_train --do_eval --per_device_train_batch_size 12 --learning_rate 3e-5 --num_train_epochs 2 --max_seq_len...
CLOSED
2021-03-01T08:41:31
2022-10-05T13:09:47
2022-10-05T13:09:47
https://github.com/huggingface/datasets/issues/1964
LeopoldACC
6
[]