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
1,717
SciFact dataset - minor changes
Hi, SciFact dataset creator here. First of all, thanks for adding the dataset to Huggingface, much appreciated! I'd like to make a few minor changes, including the citation information and the `_URL` from which to download the dataset. Can I submit a PR for this? It also looks like the dataset is being downloa...
CLOSED
2021-01-11T05:26:40
2021-01-26T02:52:17
2021-01-26T02:52:17
https://github.com/huggingface/datasets/issues/1717
dwadden
4
[]
1,713
Installation using conda
Will a conda package for installing datasets be added to the huggingface conda channel? I have installed transformers using conda and would like to use the datasets library to use some of the scripts in the transformers/examples folder but am unable to do so at the moment as datasets can only be installed using pip and...
CLOSED
2021-01-08T19:12:15
2021-09-17T12:47:40
2021-09-17T12:47:40
https://github.com/huggingface/datasets/issues/1713
pranav-s
5
[]
1,710
IsADirectoryError when trying to download C4
**TLDR**: I fail to download C4 and see a stacktrace originating in `IsADirectoryError` as an explanation for failure. How can the problem be fixed? **VERBOSE**: I use Python version 3.7 and have the following dependencies listed in my project: ``` datasets==1.2.0 apache-beam==2.26.0 ``` When runn...
CLOSED
2021-01-08T07:31:30
2022-08-04T11:56:10
2022-08-04T11:55:04
https://github.com/huggingface/datasets/issues/1710
fredriko
2
[]
1,709
Databases
## Adding a Dataset - **Name:** *name of the dataset* - **Description:** *short description of the dataset (or link to social media or blog post)* - **Paper:** *link to the dataset paper if available* - **Data:** *link to the Github repository or current dataset location* - **Motivation:** *what are some good reasons t...
CLOSED
2021-01-08T06:14:03
2021-01-08T09:00:08
2021-01-08T09:00:08
https://github.com/huggingface/datasets/issues/1709
JimmyJim1
0
[]
1,708
<html dir="ltr" lang="en" class="focus-outline-visible"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
## Adding a Dataset - **Name:** *name of the dataset* - **Description:** *short description of the dataset (or link to social media or blog post)* - **Paper:** *link to the dataset paper if available* - **Data:** *link to the Github repository or current dataset location* - **Motivation:** *what are some good reasons t...
CLOSED
2021-01-07T21:45:24
2021-01-08T09:00:01
2021-01-08T09:00:01
https://github.com/huggingface/datasets/issues/1708
Louiejay54
0
[]
1,706
Error when downloading a large dataset on slow connection.
I receive the following error after about an hour trying to download the `openwebtext` dataset. The code used is: ```python import datasets datasets.load_dataset("openwebtext") ``` > Traceback (most recent call last): ...
OPEN
2021-01-07T17:48:15
2021-01-13T10:35:02
null
https://github.com/huggingface/datasets/issues/1706
lucadiliello
1
[]
1,701
Some datasets miss dataset_infos.json or dummy_data.zip
While working on dataset REAME generation script at https://github.com/madlag/datasets_readme_generator , I noticed that some datasets miss a dataset_infos.json : ``` c4 lm1b reclor wikihow ``` And some does not have a dummy_data.zip : ``` kor_nli math_dataset mlqa ms_marco newsgroup qa4mre qanga...
CLOSED
2021-01-07T14:17:13
2022-11-04T15:11:16
2022-11-04T15:06:00
https://github.com/huggingface/datasets/issues/1701
madlag
2
[]
1,696
Unable to install datasets
** Edit ** I believe there's a bug with the package when you're installing it with Python 3.9. I recommend sticking with previous versions. Thanks, @thomwolf for the insight! **Short description** I followed the instructions for installing datasets (https://huggingface.co/docs/datasets/installation.html). Howev...
CLOSED
2021-01-07T07:24:37
2021-01-08T00:33:05
2021-01-07T22:06:05
https://github.com/huggingface/datasets/issues/1696
glee2429
4
[]
1,687
Question: Shouldn't .info be a part of DatasetDict?
Currently, only `Dataset` contains the .info or .features, but as many datasets contains standard splits (train, test) and thus the underlying information is the same (or at least should be) across the datasets. For instance: ``` >>> ds = datasets.load_dataset("conll2002", "es") >>> ds.info Traceback (most rece...
OPEN
2021-01-05T13:08:41
2021-01-07T10:18:06
null
https://github.com/huggingface/datasets/issues/1687
KennethEnevoldsen
2
[]
1,686
Dataset Error: DaNE contains empty samples at the end
The dataset DaNE, contains empty samples at the end. It is naturally easy to remove using a filter but should probably not be there, to begin with as it can cause errors. ```python >>> import datasets [...] >>> dataset = datasets.load_dataset("dane") [...] >>> dataset["test"][-1] {'dep_ids': [], 'dep_labels': ...
CLOSED
2021-01-05T11:54:26
2021-01-05T14:01:09
2021-01-05T14:00:13
https://github.com/huggingface/datasets/issues/1686
KennethEnevoldsen
3
[]
1,683
`ArrowInvalid` occurs while running `Dataset.map()` function for DPRContext
It seems to fail the final batch ): steps to reproduce: ``` from datasets import load_dataset from elasticsearch import Elasticsearch import torch from transformers import file_utils, set_seed from transformers import DPRContextEncoder, DPRContextEncoderTokenizerFast MAX_SEQ_LENGTH = 256 ctx_encoder = DPRCon...
CLOSED
2021-01-04T18:47:53
2021-01-04T19:04:45
2021-01-04T19:04:45
https://github.com/huggingface/datasets/issues/1683
abarbosa94
2
[]
1,681
Dataset "dane" missing
the `dane` dataset appear to be missing in the latest version (1.1.3). ```python >>> import datasets >>> datasets.__version__ '1.1.3' >>> "dane" in datasets.list_datasets() True ``` As we can see it should be present, but doesn't seem to be findable when using `load_dataset`. ```python >>> datasets.load...
CLOSED
2021-01-03T14:03:03
2021-01-05T08:35:35
2021-01-05T08:35:13
https://github.com/huggingface/datasets/issues/1681
KennethEnevoldsen
3
[]
1,679
Can't import cc100 dataset
There is some issue to import cc100 dataset. ``` from datasets import load_dataset dataset = load_dataset("cc100") ``` FileNotFoundError: Couldn't find file at https://raw.githubusercontent.com/huggingface/datasets/1.1.3/datasets/cc100/cc100.py During handling of the above exception, another exception occur...
CLOSED
2021-01-03T07:12:56
2022-10-05T12:42:25
2022-10-05T12:42:25
https://github.com/huggingface/datasets/issues/1679
alighofrani95
1
[]
1,675
Add the 800GB Pile dataset?
## Adding a Dataset - **Name:** The Pile - **Description:** The Pile is a 825 GiB diverse, open source language modelling data set that consists of 22 smaller, high-quality datasets combined together. See [here](https://twitter.com/nabla_theta/status/1345130408170541056?s=20) for the Twitter announcement - **Paper:*...
CLOSED
2021-01-01T22:58:12
2021-12-01T15:29:07
2021-12-01T15:29:07
https://github.com/huggingface/datasets/issues/1675
lewtun
7
[ "dataset request" ]
1,674
dutch_social can't be loaded
Hi all, I'm trying to import the `dutch_social` dataset described [here](https://huggingface.co/datasets/dutch_social). However, the code that should load the data doesn't seem to be working, in particular because the corresponding files can't be found at the provided links. ``` (base) Koens-MacBook-Pro:~ koe...
CLOSED
2021-01-01T17:37:08
2022-10-05T13:03:26
2022-10-05T13:03:26
https://github.com/huggingface/datasets/issues/1674
koenvandenberge
8
[]
1,673
Unable to Download Hindi Wikipedia Dataset
I used the Dataset Library in Python to load the wikipedia dataset with the Hindi Config 20200501.hi along with something called beam_runner='DirectRunner' and it keeps giving me the error that the file is not found. I have attached the screenshot of the error and the code both. Please help me to understand how to reso...
CLOSED
2021-01-01T10:52:53
2021-01-05T10:22:12
2021-01-05T10:22:12
https://github.com/huggingface/datasets/issues/1673
aditya3498
6
[]
1,672
load_dataset hang on file_lock
I am trying to load the squad dataset. Fails on Windows 10 but succeeds in Colab. Transformers: 3.3.1 Datasets: 1.0.2 Windows 10 (also tested in WSL) ``` datasets.logging.set_verbosity_debug() datasets. train_dataset = load_dataset('squad', split='train') valid_dataset = load_dataset('squad', split='validat...
CLOSED
2021-01-01T10:25:07
2021-03-31T16:24:13
2021-01-01T11:47:36
https://github.com/huggingface/datasets/issues/1672
tomacai
3
[]
1,671
connection issue
Hi I am getting this connection issue, resulting in large failure on cloud, @lhoestq I appreciate your help on this. If I want to keep the codes the same, so not using save_to_disk, load_from_disk, but save the datastes in the way load_dataset reads from and copy the files in the same folder the datasets library r...
CLOSED
2020-12-30T21:56:20
2022-10-05T12:42:12
2022-10-05T12:42:12
https://github.com/huggingface/datasets/issues/1671
rabeehkarimimahabadi
2
[]
1,670
wiki_dpr pre-processing performance
I've been working with wiki_dpr and noticed that the dataset processing is seriously impaired in performance [1]. It takes about 12h to process the entire dataset. Most of this time is simply loading and processing the data, but the actual indexing is also quite slow (3h). I won't repeat the concerns around multipro...
OPEN
2020-12-30T19:41:43
2021-01-28T09:41:36
null
https://github.com/huggingface/datasets/issues/1670
dbarnhart
3
[ "enhancement", "Dataset discussion" ]
1,669
wiki_dpr dataset pre-processesing performance
I've been working with wiki_dpr and noticed that the dataset processing is seriously impaired in performance [1]. It takes about 12h to process the entire dataset. Most of this time is simply loading and processing the data, but the actual indexing is also quite slow (3h). I won't repeat the concerns around multipro...
CLOSED
2020-12-30T19:41:09
2020-12-30T19:42:25
2020-12-30T19:42:25
https://github.com/huggingface/datasets/issues/1669
dbarnhart
1
[]
1,662
Arrow file is too large when saving vector data
I computed the sentence embedding of each sentence of bookcorpus data using bert base and saved them to disk. I used 20M sentences and the obtained arrow file is about 59GB while the original text file is only about 1.3GB. Are there any ways to reduce the size of the arrow file?
CLOSED
2020-12-29T13:23:12
2021-01-21T14:12:39
2021-01-21T14:12:39
https://github.com/huggingface/datasets/issues/1662
weiwangorg
4
[]
1,647
NarrativeQA fails to load with `load_dataset`
When loading the NarrativeQA dataset with `load_dataset('narrativeqa')` as given in the documentation [here](https://huggingface.co/datasets/narrativeqa), I receive a cascade of exceptions, ending with FileNotFoundError: Couldn't find file locally at narrativeqa/narrativeqa.py, or remotely at https://r...
CLOSED
2020-12-28T18:16:09
2021-01-05T12:05:08
2021-01-03T17:58:05
https://github.com/huggingface/datasets/issues/1647
eric-mitchell
3
[]
1,644
HoVeR dataset fails to load
Hi! I'm getting an error when trying to load **HoVeR** dataset. Another one (**SQuAD**) does work for me. I'm using the latest (1.1.3) version of the library. Steps to reproduce the error: ```python >>> from datasets import load_dataset >>> dataset = load_dataset("hover") Traceback (most recent call last): ...
CLOSED
2020-12-28T12:27:07
2022-10-05T12:40:34
2022-10-05T12:40:34
https://github.com/huggingface/datasets/issues/1644
urikz
1
[]
1,643
Dataset social_bias_frames 404
``` >>> from datasets import load_dataset >>> dataset = load_dataset("social_bias_frames") ... Downloading and preparing dataset social_bias_frames/default ... ~/.pyenv/versions/3.7.6/lib/python3.7/site-packages/datasets/utils/file_utils.py in get_from_cache(url, cache_dir, force_download, proxies, etag_timeout, ...
CLOSED
2020-12-28T08:35:34
2020-12-28T08:38:07
2020-12-28T08:38:07
https://github.com/huggingface/datasets/issues/1643
atemate
1
[]
1,641
muchocine dataset cannot be dowloaded
```python --------------------------------------------------------------------------- FileNotFoundError Traceback (most recent call last) /usr/local/lib/python3.6/dist-packages/datasets/load.py in prepare_module(path, script_version, download_config, download_mode, dataset, force_local_path, ...
CLOSED
2020-12-27T21:26:28
2021-08-03T05:07:29
2021-08-03T05:07:29
https://github.com/huggingface/datasets/issues/1641
mrm8488
5
[ "wontfix", "dataset bug" ]
1,639
bug with sst2 in glue
Hi I am getting very low accuracy on SST2 I investigate this and observe that for this dataset sentences are tokenized, while this is correct for the other datasets in GLUE, please see below. Is there any alternatives I could get untokenized sentences? I am unfortunately under time pressure to report some results on ...
CLOSED
2020-12-26T16:57:23
2022-10-05T12:40:16
2022-10-05T12:40:16
https://github.com/huggingface/datasets/issues/1639
null
3
[]
1,636
winogrande cannot be dowloaded
Hi, I am getting this error when trying to run the codes on the cloud. Thank you for any suggestion and help on this @lhoestq ``` File "./finetune_trainer.py", line 318, in <module> main() File "./finetune_trainer.py", line 148, in main for task in data_args.tasks] File "./finetune_trainer.py", ...
CLOSED
2020-12-24T22:28:22
2022-10-05T12:35:44
2022-10-05T12:35:44
https://github.com/huggingface/datasets/issues/1636
null
2
[]
1,635
Persian Abstractive/Extractive Text Summarization
Assembling datasets tailored to different tasks and languages is a precious target. This would be great to have this dataset included. ## Adding a Dataset - **Name:** *pn-summary* - **Description:** *A well-structured summarization dataset for the Persian language consists of 93,207 records. It is prepared for Abs...
CLOSED
2020-12-24T17:47:12
2021-01-04T15:11:04
2021-01-04T15:11:04
https://github.com/huggingface/datasets/issues/1635
m3hrdadfi
0
[ "dataset request" ]
1,634
Inspecting datasets per category
Hi Is there a way I could get all NLI datasets/all QA datasets to get some understanding of available datasets per category? this is hard for me to inspect the datasets one by one in the webpage, thanks for the suggestions @lhoestq
CLOSED
2020-12-24T15:26:34
2022-10-04T14:57:33
2022-10-04T14:57:33
https://github.com/huggingface/datasets/issues/1634
null
4
[]
1,633
social_i_qa wrong format of labels
Hi, there is extra "\n" in labels of social_i_qa datasets, no big deal, but I was wondering if you could remove it to make it consistent. so label is 'label': '1\n', not '1' thanks ``` >>> import datasets >>> from datasets import load_dataset >>> dataset = load_dataset( ... 'social_i_qa') cahce dir /jul...
CLOSED
2020-12-24T13:11:54
2020-12-30T17:18:49
2020-12-30T17:18:49
https://github.com/huggingface/datasets/issues/1633
null
2
[]
1,632
SICK dataset
Hi, this would be great to have this dataset included. I might be missing something, but I could not find it in the list of already included datasets. Thank you. ## Adding a Dataset - **Name:** SICK - **Description:** SICK consists of about 10,000 English sentence pairs that include many examples of the lexical,...
CLOSED
2020-12-24T12:40:14
2021-02-05T15:49:25
2021-02-05T15:49:25
https://github.com/huggingface/datasets/issues/1632
rabeehk
0
[ "dataset request" ]
1,630
Adding UKP Argument Aspect Similarity Corpus
Hi, this would be great to have this dataset included. ## Adding a Dataset - **Name:** UKP Argument Aspect Similarity Corpus - **Description:** The UKP Argument Aspect Similarity Corpus (UKP ASPECT) includes 3,595 sentence pairs over 28 controversial topics. Each sentence pair was annotated via crowdsourcing as ei...
CLOSED
2020-12-24T11:01:31
2022-10-05T12:36:12
2022-10-05T12:36:12
https://github.com/huggingface/datasets/issues/1630
rabeehk
3
[ "dataset request" ]
1,627
`Dataset.map` disable progress bar
I can't find anything to turn off the `tqdm` progress bars while running a preprocessing function using `Dataset.map`. I want to do akin to `disable_tqdm=True` in the case of `transformers`. Is there something like that?
CLOSED
2020-12-23T17:53:42
2025-05-16T16:36:24
2020-12-26T19:57:17
https://github.com/huggingface/datasets/issues/1627
Nickil21
5
[]
1,624
Cannot download ade_corpus_v2
I tried this to get the dataset following this url : https://huggingface.co/datasets/ade_corpus_v2 but received this error : `Traceback (most recent call last): File "/opt/anaconda3/lib/python3.7/site-packages/datasets/load.py", line 267, in prepare_module local_path = cached_path(file_path, download_con...
CLOSED
2020-12-23T10:58:14
2021-08-03T05:08:54
2021-08-03T05:08:54
https://github.com/huggingface/datasets/issues/1624
him1411
2
[]
1,622
Can't call shape on the output of select()
I get the error `TypeError: tuple expected at most 1 argument, got 2` when calling `shape` on the output of `select()`. It's line 531 in shape in arrow_dataset.py that causes the problem: ``return tuple(self._indices.num_rows, self._data.num_columns)`` This makes sense, since `tuple(num1, num2)` is not a valid call....
CLOSED
2020-12-22T13:18:40
2020-12-23T13:37:13
2020-12-23T13:37:12
https://github.com/huggingface/datasets/issues/1622
noaonoszko
2
[]
1,618
Can't filter language:EN on https://huggingface.co/datasets
When visiting https://huggingface.co/datasets, I don't see an obvious way to filter only English datasets. This is unexpected for me, am I missing something? I'd expect English to be selectable in the language widget. This problem reproduced on Mozilla Firefox and MS Edge: ![screenshot](https://user-images.githubuse...
CLOSED
2020-12-21T15:23:23
2020-12-22T17:17:00
2020-12-22T17:16:09
https://github.com/huggingface/datasets/issues/1618
davidefiocco
3
[]
1,615
Bug: Can't download TriviaQA with `load_dataset` - custom `cache_dir`
Hello, I'm having issue downloading TriviaQA dataset with `load_dataset`. ## Environment info - `datasets` version: 1.1.3 - Platform: Linux-4.19.129-aufs-1-x86_64-with-debian-10.1 - Python version: 3.7.3 ## The code I'm running: ```python import datasets dataset = datasets.load_dataset("trivia_qa", "rc", c...
OPEN
2020-12-20T17:27:38
2021-06-25T13:11:33
null
https://github.com/huggingface/datasets/issues/1615
SapirWeissbuch
10
[]
1,611
shuffle with torch generator
Hi I need to shuffle mutliple large datasets with `generator = torch.Generator()` for a distributed sampler which needs to make sure datasets are consistent across different cores, for this, this is really necessary for me to use torch generator, based on documentation this generator is not supported with datasets, I...
CLOSED
2020-12-20T00:57:14
2022-06-01T15:30:13
2022-06-01T15:30:13
https://github.com/huggingface/datasets/issues/1611
rabeehkarimimahabadi
8
[ "enhancement" ]
1,610
shuffle does not accept seed
Hi I need to shuffle the dataset, but this needs to be based on epoch+seed to be consistent across the cores, when I pass seed to shuffle, this does not accept seed, could you assist me with this? thanks @lhoestq
CLOSED
2020-12-19T20:59:39
2021-01-04T10:00:03
2021-01-04T10:00:03
https://github.com/huggingface/datasets/issues/1610
rabeehk
3
[ "bug" ]
1,609
Not able to use 'jigsaw_toxicity_pred' dataset
When trying to use jigsaw_toxicity_pred dataset, like this in a [colab](https://colab.research.google.com/drive/1LwO2A5M2X5dvhkAFYE4D2CUT3WUdWnkn?usp=sharing): ``` from datasets import list_datasets, list_metrics, load_dataset, load_metric ds = load_dataset("jigsaw_toxicity_pred") ``` I see below error: >...
CLOSED
2020-12-19T17:35:48
2020-12-22T16:42:24
2020-12-22T16:42:23
https://github.com/huggingface/datasets/issues/1609
jassimran
2
[]
1,605
Navigation version breaking
Hi, when navigating docs (Chrome, Ubuntu) (e.g. on this page: https://huggingface.co/docs/datasets/loading_metrics.html#using-a-custom-metric-script) the version control dropdown has the wrong string displayed as the current version: ![image](https://user-images.githubusercontent.com/3007947/102632187-02cad080-...
CLOSED
2020-12-18T15:36:24
2022-10-05T12:35:11
2022-10-05T12:35:11
https://github.com/huggingface/datasets/issues/1605
mttk
1
[]
1,604
Add tests for the download functions ?
AFAIK the download functions in `DownloadManager` are not tested yet. It could be good to add some to ensure behavior is as expected.
CLOSED
2020-12-18T12:49:25
2022-10-05T13:04:24
2022-10-05T13:04:24
https://github.com/huggingface/datasets/issues/1604
SBrandeis
1
[ "enhancement" ]
1,600
AttributeError: 'DatasetDict' object has no attribute 'train_test_split'
The following code fails with "'DatasetDict' object has no attribute 'train_test_split'" - am I doing something wrong? ``` from datasets import load_dataset dataset = load_dataset('csv', data_files='data.txt') dataset = dataset.train_test_split(test_size=0.1) ``` > AttributeError: 'DatasetDict' object has no at...
CLOSED
2020-12-18T05:37:10
2023-05-03T04:22:55
2020-12-21T07:38:58
https://github.com/huggingface/datasets/issues/1600
david-waterworth
7
[ "question" ]
1,594
connection error
Hi I am hitting to this error, thanks ``` > Traceback (most recent call last): File "finetune_t5_trainer.py", line 379, in <module> main() File "finetune_t5_trainer.py", line 208, in main if training_args.do_eval or training_args.evaluation_strategy != EvaluationStrategy.NO File "finetune_t5_tr...
CLOSED
2020-12-17T09:18:34
2022-06-01T15:33:42
2022-06-01T15:33:41
https://github.com/huggingface/datasets/issues/1594
rabeehkarimimahabadi
4
[]
1,593
Access to key in DatasetDict map
It is possible that we want to do different things in the `map` function (and possibly other functions too) of a `DatasetDict`, depending on the key. I understand that `DatasetDict.map` is a really thin wrapper of `Dataset.map`, so it is easy to directly implement this functionality in the client code. Still, it'd be n...
CLOSED
2020-12-17T07:02:20
2022-10-05T13:47:28
2022-10-05T12:33:06
https://github.com/huggingface/datasets/issues/1593
ZhaofengWu
3
[ "enhancement" ]
1,591
IWSLT-17 Link Broken
``` FileNotFoundError: Couldn't find file at https://wit3.fbk.eu/archive/2017-01-trnmted//texts/DeEnItNlRo/DeEnItNlRo/DeEnItNlRo-DeEnItNlRo.tgz ```
CLOSED
2020-12-17T00:46:42
2020-12-18T08:06:36
2020-12-18T08:05:28
https://github.com/huggingface/datasets/issues/1591
ZhaofengWu
2
[ "duplicate", "dataset bug" ]
1,590
Add helper to resolve namespace collision
Many projects use a module called `datasets`, however this is incompatible with huggingface datasets. It would be great if there if there was some helper or similar function to resolve such a common conflict.
CLOSED
2020-12-16T20:17:24
2022-06-01T15:32:04
2022-06-01T15:32:04
https://github.com/huggingface/datasets/issues/1590
jramapuram
5
[]
1,585
FileNotFoundError for `amazon_polarity`
Version: `datasets==v1.1.3` ### Reproduction ```python from datasets import load_dataset data = load_dataset("amazon_polarity") ``` crashes with ```bash FileNotFoundError: Couldn't find file at https://raw.githubusercontent.com/huggingface/datasets/1.1.3/datasets/amazon_polarity/amazon_polarity.py ``` and ...
CLOSED
2020-12-16T12:51:05
2020-12-16T16:02:56
2020-12-16T16:02:56
https://github.com/huggingface/datasets/issues/1585
phtephanx
1
[]
1,581
Installing datasets and transformers in a tensorflow docker image throws Permission Error on 'import transformers'
I am using a docker container, based on latest tensorflow-gpu image, to run transformers and datasets (4.0.1 and 1.1.3 respectively - Dockerfile attached below). Importing transformers throws a Permission Error to access `/.cache`: ``` $ docker run --gpus=all --rm -it -u $(id -u):$(id -g) -v $(pwd)/data:/root/data ...
CLOSED
2020-12-16T00:02:21
2021-06-17T15:40:45
2021-06-17T15:40:45
https://github.com/huggingface/datasets/issues/1581
eduardofv
5
[]
1,541
connection issue while downloading data
Hi I am running my codes on google cloud, and I am getting this error resulting in the failure of the codes when trying to download the data, could you assist me to solve this? also as a temporary solution, could you tell me how I can increase the number of retries and timeout to at least let the models run for now. t...
CLOSED
2020-12-13T14:27:00
2022-10-05T12:33:29
2022-10-05T12:33:29
https://github.com/huggingface/datasets/issues/1541
rabeehkarimimahabadi
2
[]
1,514
how to get all the options of a property in datasets
Hi could you tell me how I can get all unique options of a property of dataset? for instance in case of boolq, if the user wants to know which unique labels it has, is there a way to access unique labels without getting all training data lables and then forming a set i mean? thanks
CLOSED
2020-12-12T16:24:08
2022-05-25T16:27:29
2022-05-25T16:27:29
https://github.com/huggingface/datasets/issues/1514
rabeehk
2
[ "question" ]
1,478
Inconsistent argument names.
Just find it a wee bit odd that in the transformers library `predictions` are those made by the model: https://github.com/huggingface/transformers/blob/master/src/transformers/trainer_utils.py#L51-L61 While in many datasets metrics they are the ground truth labels: https://github.com/huggingface/datasets/blob/c3f5...
CLOSED
2020-12-11T12:19:38
2020-12-19T15:03:39
2020-12-19T15:03:39
https://github.com/huggingface/datasets/issues/1478
Fraser-Greenlee
2
[]
1,452
SNLI dataset contains labels with value -1
``` import datasets nli_data = datasets.load_dataset("snli") train_data = nli_data['train'] train_labels = train_data['label'] label_set = set(train_labels) print(label_set) ``` **Output:** `{0, 1, 2, -1}`
CLOSED
2020-12-10T10:16:55
2020-12-10T17:49:55
2020-12-10T17:49:55
https://github.com/huggingface/datasets/issues/1452
aarnetalman
2
[]
1,444
FileNotFound remotly, can't load a dataset
```py !pip install datasets import datasets as ds corpus = ds.load_dataset('large_spanish_corpus') ``` gives the error > FileNotFoundError: Couldn't find file locally at large_spanish_corpus/large_spanish_corpus.py, or remotely at https://raw.githubusercontent.com/huggingface/datasets/1.1.3/datasets/large_spa...
CLOSED
2020-12-10T09:14:47
2020-12-15T17:41:14
2020-12-15T17:41:14
https://github.com/huggingface/datasets/issues/1444
sadakmed
2
[]
1,422
Can't map dataset (loaded from csv)
Hello! I am trying to load single csv file with two columns: ('label': str, 'text' str), where is label is str of two possible classes. Below steps are similar with [this notebook](https://colab.research.google.com/drive/1-JIJlao4dI-Ilww_NnTc0rxtp-ymgDgM?usp=sharing), where bert model and tokenizer are used to class...
CLOSED
2020-12-09T22:05:42
2020-12-17T18:13:40
2020-12-17T18:13:40
https://github.com/huggingface/datasets/issues/1422
SolomidHero
2
[]
1,324
❓ Sharing ElasticSearch indexed dataset
Hi there, First of all, thank you very much for this amazing library. Datasets have become my preferred data structure for basically everything I am currently doing. **Question:** I'm working with a dataset and I have an elasticsearch container running at localhost:9200. I added an elasticsearch index and I was w...
OPEN
2020-12-08T16:25:58
2020-12-22T07:50:56
null
https://github.com/huggingface/datasets/issues/1324
pietrolesci
3
[ "dataset request" ]
1,299
can't load "german_legal_entity_recognition" dataset
FileNotFoundError: Couldn't find file locally at german_legal_entity_recognition/german_legal_entity_recognition.py, or remotely at https://raw.githubusercontent.com/huggingface/datasets/1.1.3/datasets/german_legal_entity_recognition/german_legal_entity_recognition.py or https://s3.amazonaws.com/datasets.huggingface.co...
CLOSED
2020-12-08T12:42:01
2020-12-16T16:03:13
2020-12-16T16:03:13
https://github.com/huggingface/datasets/issues/1299
nataly-obr
3
[]
1,290
imdb dataset cannot be downloaded
hi please find error below getting imdb train spli: thanks ` datasets.load_dataset>>> datasets.load_dataset("imdb", split="train")` errors ``` cahce dir /idiap/temp/rkarimi/cache_home_1/datasets cahce dir /idiap/temp/rkarimi/cache_home_1/datasets Downloading and preparing dataset imdb/plain_text (d...
CLOSED
2020-12-08T10:47:36
2020-12-24T17:38:09
2020-12-24T17:38:09
https://github.com/huggingface/datasets/issues/1290
rabeehk
3
[]
1,287
'iwslt2017-ro-nl', cannot be downloaded
Hi I am trying `>>> datasets.load_dataset("iwslt2017", 'iwslt2017-ro-nl', split="train")` getting this error thank you for your help ``` cahce dir /idiap/temp/rkarimi/cache_home_1/datasets cahce dir /idiap/temp/rkarimi/cache_home_1/datasets Downloading and preparing dataset iwsl_t217/iwslt2017-ro-nl (downlo...
CLOSED
2020-12-08T09:56:55
2022-06-13T10:41:33
2022-06-13T10:41:33
https://github.com/huggingface/datasets/issues/1287
rabeehk
4
[ "dataset bug" ]
1,286
[libprotobuf FATAL /sentencepiece/src/../third_party/protobuf-lite/google/protobuf/repeated_field.h:1505] CHECK failed: (index) >= (0): terminate called after throwing an instance of 'google::protobuf::FatalException' what(): CHECK failed: (index) >= (0): Aborted
Hi I am getting this error when evaluating on wmt16-ro-en using finetune_trainer.py of huggingface repo. thank for your help {'epoch': 20.0} 100%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ...
CLOSED
2020-12-08T09:44:15
2020-12-12T19:36:22
2020-12-12T16:22:36
https://github.com/huggingface/datasets/issues/1286
rabeehk
6
[]
1,285
boolq does not work
Hi I am getting this error when trying to load boolq, thanks for your help ts_boolq_default_0.1.0_2987db1f15deaa19500ae24de560eabeaf1f8ef51df88c0470beeec72943bf11.lock Traceback (most recent call last): File "finetune_t5_trainer.py", line 274, in <module> main() File "finetune_t5_trainer.py", line 147, ...
CLOSED
2020-12-08T09:28:47
2020-12-08T09:47:10
2020-12-08T09:47:10
https://github.com/huggingface/datasets/issues/1285
rabeehk
3
[]
1,167
❓ On-the-fly tokenization with datasets, tokenizers, and torch Datasets and Dataloaders
Hi there, I have a question regarding "on-the-fly" tokenization. This question was elicited by reading the "How to train a new language model from scratch using Transformers and Tokenizers" [here](https://huggingface.co/blog/how-to-train). Towards the end there is this sentence: "If your dataset is very large, you c...
CLOSED
2020-12-05T17:02:56
2023-07-20T15:49:42
2023-07-20T15:49:42
https://github.com/huggingface/datasets/issues/1167
pietrolesci
2
[ "question", "generic discussion" ]
1,115
Incorrect URL for MRQA SQuAD train subset
https://github.com/huggingface/datasets/blob/4ef4c8f8b7a60e35c6fa21115fca9faae91c9f74/datasets/mrqa/mrqa.py#L53 The URL for `train+SQuAD` subset of MRQA points to the dev set instead of train set. It should be `https://s3.us-east-2.amazonaws.com/mrqa/release/v2/train/SQuAD.jsonl.gz`.
CLOSED
2020-12-04T14:05:24
2020-12-06T17:14:22
2020-12-06T17:14:22
https://github.com/huggingface/datasets/issues/1115
yuxiang-wu
1
[]
1,110
Using a feature named "_type" fails with certain operations
A column named `_type` leads to a `TypeError: unhashable type: 'dict'` for certain operations: ```python from datasets import Dataset, concatenate_datasets ds = Dataset.from_dict({"_type": ["whatever"]}).map() concatenate_datasets([ds]) # or simply Dataset(ds._data) ``` Context: We are using datasets to persi...
CLOSED
2020-12-04T12:56:33
2022-01-14T18:07:00
2022-01-14T18:07:00
https://github.com/huggingface/datasets/issues/1110
dcfidalgo
1
[]
1,103
Add support to download kaggle datasets
We can use API key
CLOSED
2020-12-04T11:08:37
2023-07-20T15:22:24
2023-07-20T15:22:23
https://github.com/huggingface/datasets/issues/1103
abhishekkrthakur
2
[ "enhancement" ]
1,102
Add retries to download manager
CLOSED
2020-12-04T11:08:11
2020-12-22T15:34:06
2020-12-22T15:34:06
https://github.com/huggingface/datasets/issues/1102
abhishekkrthakur
0
[ "enhancement" ]
1,064
Not support links with 302 redirect
I have an issue adding this download link https://github.com/jitkapat/thailitcorpus/releases/download/v.2.0/tlc_v.2.0.tar.gz it might be because it is not a direct link (it returns 302 and redirects to aws that returns 403 for head requests). ``` r.head("https://github.com/jitkapat/thailitcorpus/releases/downlo...
CLOSED
2020-12-03T17:04:43
2021-01-14T02:51:25
2021-01-14T02:51:25
https://github.com/huggingface/datasets/issues/1064
chameleonTK
2
[ "bug", "enhancement" ]
1,046
Dataset.map() turns tensors into lists?
I apply `Dataset.map()` to a function that returns a dict of torch tensors (like a tokenizer from the repo transformers). However, in the mapped dataset, these tensors have turned to lists! ```import datasets import torch from datasets import load_dataset ...
CLOSED
2020-12-03T11:43:46
2022-10-05T12:12:41
2022-10-05T12:12:41
https://github.com/huggingface/datasets/issues/1046
tombosc
2
[]
1,027
Hi
## Adding a Dataset - **Name:** *name of the dataset* - **Description:** *short description of the dataset (or link to social media or blog post)* - **Paper:** *link to the dataset paper if available* - **Data:** *link to the Github repository or current dataset location* - **Motivation:** *what are some good reasons t...
CLOSED
2020-12-02T23:47:14
2020-12-03T16:42:41
2020-12-03T16:42:41
https://github.com/huggingface/datasets/issues/1027
suemori87
0
[]
1,026
LΓ­o o
````l````````` ``` O ``` ````` Γ‘o ``` ```` ```
CLOSED
2020-12-02T23:32:25
2020-12-03T16:42:47
2020-12-03T16:42:47
https://github.com/huggingface/datasets/issues/1026
null
0
[]
1,004
how large datasets are handled under the hood
Hi I want to use multiple large datasets with a mapping style dataloader, where they cannot fit into memory, could you tell me how you handled the datasets under the hood? is this you bring all in memory in case of mapping style ones? or is this some sharding under the hood and you bring in memory when necessary, than...
CLOSED
2020-12-02T14:32:40
2022-10-05T12:13:29
2022-10-05T12:13:29
https://github.com/huggingface/datasets/issues/1004
rabeehkarimimahabadi
3
[]
996
NotADirectoryError while loading the CNN/Dailymail dataset
Downloading and preparing dataset cnn_dailymail/3.0.0 (download: 558.32 MiB, generated: 1.28 GiB, post-processed: Unknown size, total: 1.82 GiB) to /root/.cache/huggingface/datasets/cnn_dailymail/3.0.0/3.0.0/0128610a44e10f25b4af6689441c72af86205282d26399642f7db38fa7535602... ---------------------------------------...
CLOSED
2020-12-02T11:07:56
2022-02-17T14:13:39
2022-02-17T14:13:39
https://github.com/huggingface/datasets/issues/996
arc-bu
12
[]
993
Problem downloading amazon_reviews_multi
Thanks for adding the dataset. After trying to load the dataset, I am getting the following error: `ConnectionError: Couldn't reach https://amazon-reviews-ml.s3-us-west-2.amazonaws.com/json/train/dataset_fr_train.json ` I used the following code to load the dataset: `load_dataset( dataset_name, ...
CLOSED
2020-12-02T10:15:57
2022-10-05T12:21:34
2022-10-05T12:21:34
https://github.com/huggingface/datasets/issues/993
hfawaz
2
[]
988
making sure datasets are not loaded in memory and distributed training of them
Hi I am dealing with large-scale datasets which I need to train distributedly, I used the shard function to divide the dataset across the cores, without any sampler, this does not work for distributed training and does not become any faster than 1 TPU core. 1) how I can make sure data is not loaded in memory 2) in cas...
CLOSED
2020-12-02T08:45:15
2022-10-05T13:00:42
2022-10-05T13:00:42
https://github.com/huggingface/datasets/issues/988
rabeehk
2
[]
961
sample multiple datasets
Hi I am dealing with multiple datasets, I need to have a dataloader over them with a condition that in each batch data samples are coming from one of the datasets. My main question is: - I need to have a way to sample the datasets first with some weights, lets say 2x dataset1 1x dataset2, could you point me how I c...
CLOSED
2020-12-01T14:20:02
2024-06-17T08:23:20
2023-07-20T14:08:57
https://github.com/huggingface/datasets/issues/961
rabeehk
6
[]
942
D
## Adding a Dataset - **Name:** *name of the dataset* - **Description:** *short description of the dataset (or link to social media or blog post)* - **Paper:** *link to the dataset paper if available* - **Data:** *link to the Github repository or current dataset location* - **Motivation:** *what are some good reasons t...
CLOSED
2020-12-01T08:17:10
2020-12-03T16:42:53
2020-12-03T16:42:53
https://github.com/huggingface/datasets/issues/942
CryptoMiKKi
0
[]
937
Local machine/cluster Beam Datasets example/tutorial
Hi, I'm wondering if https://huggingface.co/docs/datasets/beam_dataset.html has an non-GCP or non-Dataflow version example/tutorial? I tried to migrate it to run on DirectRunner and SparkRunner, however, there were way too many runtime errors that I had to fix during the process, and even so I wasn't able to get eit...
CLOSED
2020-12-01T01:11:43
2024-03-15T16:05:14
2024-03-15T16:05:14
https://github.com/huggingface/datasets/issues/937
shangw-nvidia
2
[]
927
Hello
CLOSED
2020-11-30T17:50:05
2020-11-30T17:50:30
2020-11-30T17:50:30
https://github.com/huggingface/datasets/issues/927
k125-ak
0
[]
919
wrong length with datasets
Hi I have a MRPC dataset which I convert it to seq2seq format, then this is of this format: `Dataset(features: {'src_texts': Value(dtype='string', id=None), 'tgt_texts': Value(dtype='string', id=None)}, num_rows: 10) ` I feed it to a dataloader: ``` dataloader = DataLoader( train_dataset, ...
CLOSED
2020-11-30T12:23:39
2020-11-30T12:37:27
2020-11-30T12:37:26
https://github.com/huggingface/datasets/issues/919
rabeehk
2
[]
915
Shall we change the hashing to encoding to reduce potential replicated cache files?
Hi there. For now, we are using `xxhash` to hash the transformations to fingerprint and we will save a copy of the processed dataset to disk if there is a new hash value. However, there are some transformations that are idempotent or commutative to each other. I think that encoding the transformation chain as the finge...
OPEN
2020-11-30T03:50:46
2020-12-24T05:11:49
null
https://github.com/huggingface/datasets/issues/915
zhuzilin
2
[ "enhancement", "generic discussion" ]
911
datasets module not found
Currently, running `from datasets import load_dataset` will throw a `ModuleNotFoundError: No module named 'datasets'` error.
CLOSED
2020-11-29T01:24:15
2020-11-29T14:33:09
2020-11-29T14:33:09
https://github.com/huggingface/datasets/issues/911
sbassam
1
[]
910
Grindr meeting app web.Grindr
## Adding a Dataset - **Name:** *name of the dataset* - **Description:** *short description of the dataset (or link to social media or blog post)* - **Paper:** *link to the dataset paper if available* - **Data:** *link to the Github repository or current dataset location* - **Motivation:** *what are some good reasons t...
CLOSED
2020-11-28T21:36:23
2020-11-29T10:11:51
2020-11-29T10:11:51
https://github.com/huggingface/datasets/issues/910
jackin34
0
[]
900
datasets.load_dataset() custom chaching directory bug
Hello, I'm having issue with loading a dataset with a custom `cache_dir`. Despite specifying the output dir, it is still downloaded to `~/.cache`. ## Environment info - `datasets` version: 1.1.3 - Platform: Linux-4.19.129-aufs-1-x86_64-with-debian-10.1 - Python version: 3.7.3 ## The code I'm running: ```p...
CLOSED
2020-11-27T12:18:53
2020-11-29T22:48:53
2020-11-29T22:48:53
https://github.com/huggingface/datasets/issues/900
SapirWeissbuch
1
[]
897
Dataset viewer issues
I was looking through the dataset viewer and I like it a lot. Version numbers, citation information, everything's there! I've spotted a few issues/bugs though: - the URL is still under `nlp`, perhaps an alias for `datasets` can be made - when I remove a **feature** (and the feature list is empty), I get an error. T...
CLOSED
2020-11-27T09:14:34
2021-10-31T09:12:01
2021-10-31T09:12:01
https://github.com/huggingface/datasets/issues/897
BramVanroy
5
[ "nlp-viewer" ]
888
Nested lists are zipped unexpectedly
I might misunderstand something, but I expect that if I define: ```python "top": datasets.features.Sequence({ "middle": datasets.features.Sequence({ "bottom": datasets.Value("int32") }) }) ``` And I then create an example: ```python yield 1, { "top": [{ "middle": [ {"bottom": 1}, ...
CLOSED
2020-11-25T16:07:46
2020-11-25T17:30:39
2020-11-25T17:30:39
https://github.com/huggingface/datasets/issues/888
AmitMY
2
[]
887
pyarrow.lib.ArrowNotImplementedError: MakeBuilder: cannot construct builder for type extension<arrow.py_extension_type>
I set up a new dataset, with a sequence of arrays (really, I want to have an array of (None, 137, 2), and the first dimension is dynamic) ```python def _info(self): return datasets.DatasetInfo( description=_DESCRIPTION, # This defines the different columns of the dataset and ...
OPEN
2020-11-25T14:32:21
2021-09-09T17:03:40
null
https://github.com/huggingface/datasets/issues/887
AmitMY
14
[ "bug" ]
885
Very slow cold-start
Hi, I expect when importing `datasets` that nothing major happens in the background, and so the import should be insignificant. When I load a metric, or a dataset, its fine that it takes time. The following ranges from 3 to 9 seconds: ``` python -m timeit -n 1 -r 1 'from datasets import load_dataset' ``` edi...
CLOSED
2020-11-25T12:47:58
2021-01-13T11:31:25
2021-01-13T11:31:25
https://github.com/huggingface/datasets/issues/885
AmitMY
3
[ "dataset request" ]
883
Downloading/caching only a part of a datasets' dataset.
Hi, I want to use the validation data *only* (of natural question). I don't want to have the whole dataset cached in my machine, just the dev set. Is this possible? I can't find a way to do it in the docs. Thank you, Sapir
OPEN
2020-11-24T14:25:18
2020-11-27T13:51:55
null
https://github.com/huggingface/datasets/issues/883
SapirWeissbuch
3
[ "enhancement", "question" ]
880
Add SQA
## Adding a Dataset - **Name:** SQA (Sequential Question Answering) by Microsoft. - **Description:** The SQA dataset was created to explore the task of answering sequences of inter-related questions on HTML tables. It has 6,066 sequences with 17,553 questions in total. - **Paper:** https://www.microsoft.com/en-us/r...
CLOSED
2020-11-23T16:31:55
2020-12-23T13:58:24
2020-12-23T13:58:23
https://github.com/huggingface/datasets/issues/880
NielsRogge
3
[ "dataset request" ]
879
boolq does not load
Hi I am getting these errors trying to load boolq thanks Traceback (most recent call last): File "test.py", line 5, in <module> data = AutoTask().get("boolq").get_dataset("train", n_obs=10) File "/remote/idiap.svm/user.active/rkarimi/dev/internship/seq2seq/tasks/tasks.py", line 42, in get_dataset d...
CLOSED
2020-11-23T14:28:28
2022-10-05T12:23:32
2022-10-05T12:23:32
https://github.com/huggingface/datasets/issues/879
rabeehk
3
[ "dataset bug" ]
878
Loading Data From S3 Path in Sagemaker
In Sagemaker Im tring to load the data set from S3 path as follows `train_path = 's3://xxxxxxxxxx/xxxxxxxxxx/train.csv' valid_path = 's3://xxxxxxxxxx/xxxxxxxxxx/validation.csv' test_path = 's3://xxxxxxxxxx/xxxxxxxxxx/test.csv' data_files = {} data_files["train"] = train_path data_files...
OPEN
2020-11-23T09:17:22
2020-12-23T09:53:08
null
https://github.com/huggingface/datasets/issues/878
mahesh1amour
16
[ "enhancement", "question" ]
877
DataLoader(datasets) become more and more slowly within iterations
Hello, when I for loop my dataloader, the loading speed is becoming more and more slowly! ``` dataset = load_from_disk(dataset_path) # around 21,000,000 lines lineloader = tqdm(DataLoader(dataset, batch_size=1)) for idx, line in enumerate(lineloader): # do some thing for each line ``` In the begining, th...
CLOSED
2020-11-22T12:41:10
2024-11-22T03:02:53
2020-11-29T15:45:12
https://github.com/huggingface/datasets/issues/877
shexuan
3
[]
876
imdb dataset cannot be loaded
Hi I am trying to load the imdb train dataset `dataset = datasets.load_dataset("imdb", split="train")` getting following errors, thanks for your help ``` Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/idiap/user/rkarimi/libs/anaconda3/envs/internship/lib/python3.7/...
CLOSED
2020-11-22T08:24:43
2024-05-10T03:03:29
2020-12-24T17:38:47
https://github.com/huggingface/datasets/issues/876
rabeehk
6
[]
875
bug in boolq dataset loading
Hi I am trying to load boolq dataset: ``` import datasets datasets.load_dataset("boolq") ``` I am getting the following errors, thanks for your help ``` >>> import datasets 2020-11-22 09:16:30.070332: W tensorflow/stream_executor/platform/default/dso_loader.cc:60] Could not load dynamic library 'libcuda...
CLOSED
2020-11-22T08:18:34
2020-11-24T10:12:33
2020-11-24T10:12:33
https://github.com/huggingface/datasets/issues/875
rabeehk
1
[]
874
trec dataset unavailable
Hi when I try to load the trec dataset I am getting these errors, thanks for your help `datasets.load_dataset("trec", split="train") ` ``` File "<stdin>", line 1, in <module> File "/idiap/user/rkarimi/libs/anaconda3/envs/internship/lib/python3.7/site-packages/datasets/load.py", line 611, in load_dataset ...
CLOSED
2020-11-22T08:09:36
2020-11-27T13:56:42
2020-11-27T13:56:42
https://github.com/huggingface/datasets/issues/874
rabeehk
2
[]
873
load_dataset('cnn_dalymail', '3.0.0') gives a 'Not a directory' error
``` from datasets import load_dataset dataset = load_dataset('cnn_dailymail', '3.0.0') ``` Stack trace: ``` --------------------------------------------------------------------------- NotADirectoryError Traceback (most recent call last) <ipython-input-6-2e06a8332652> in <module>() ...
CLOSED
2020-11-21T06:30:45
2023-08-03T12:07:03
2020-11-22T12:18:05
https://github.com/huggingface/datasets/issues/873
vishal-burman
13
[]
871
terminate called after throwing an instance of 'google::protobuf::FatalException'
Hi I am using the dataset "iwslt2017-en-nl", and after downloading it I am getting this error when trying to evaluate it on T5-base with seq2seq_trainer.py in the huggingface repo could you assist me please? thanks 100%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ...
CLOSED
2020-11-20T12:56:24
2020-12-12T21:16:32
2020-12-12T21:16:32
https://github.com/huggingface/datasets/issues/871
rabeehk
2
[]
870
[Feature Request] Add optional parameter in text loading script to preserve linebreaks
I'm working on a project about rhyming verse using phonetic poetry and song lyrics, and line breaks are a vital part of the data. I recently switched over to use the datasets library when my various corpora grew larger than my computer's memory. And so far, it is SO great. But the first time I processed all of ...
CLOSED
2020-11-19T23:51:31
2022-06-01T15:25:53
2022-06-01T15:25:52
https://github.com/huggingface/datasets/issues/870
jncasey
2
[ "enhancement" ]
866
OSCAR from Inria group
## Adding a Dataset - **Name:** *OSCAR* (Open Super-large Crawled ALMAnaCH coRpus), multilingual parsing of Common Crawl (separate crawls for many different languages), [here](https://oscar-corpus.com/). - **Description:** *OSCAR or Open Super-large Crawled ALMAnaCH coRpus is a huge multilingual corpus obtained by la...
CLOSED
2020-11-18T14:40:54
2020-11-18T15:01:30
2020-11-18T15:01:30
https://github.com/huggingface/datasets/issues/866
jchwenger
2
[ "dataset request" ]
865
Have Trouble importing `datasets`
I'm failing to import transformers (v4.0.0-dev), and tracing the cause seems to be failing to import datasets. I cloned the newest version of datasets (master branch), and do `pip install -e .`. Then, `import datasets` causes the error below. ``` ~/workspace/Clone/datasets/src/datasets/utils/file_utils.py in ...
CLOSED
2020-11-18T08:04:41
2020-11-18T08:16:35
2020-11-18T08:16:35
https://github.com/huggingface/datasets/issues/865
forest1988
1
[]