url
stringlengths
58
61
number
int64
1
8.23k
title
stringlengths
1
290
body
stringlengths
0
228k
state
stringclasses
2 values
created_at
timestamp[s]date
2020-04-14 10:18:02
2026-05-30 09:38:59
comments_url
stringlengths
67
70
pull_request
dict
is_pull_request
bool
2 classes
text
stringlengths
2
228k
comments
listlengths
0
30
https://api.github.com/repos/huggingface/datasets/issues/1632
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
https://api.github.com/repos/huggingface/datasets/issues/1632/comments
null
false
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 o...
[]
https://api.github.com/repos/huggingface/datasets/issues/1631
1,631
Update README.md
I made small change for citation
closed
2020-12-24T11:45:52
https://api.github.com/repos/huggingface/datasets/issues/1631/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1631", "html_url": "https://github.com/huggingface/datasets/pull/1631", "diff_url": "https://github.com/huggingface/datasets/pull/1631.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1631.patch", "merged_at": "2020-12-28T17:16...
true
Update README.md I made small change for citation
[]
https://api.github.com/repos/huggingface/datasets/issues/1630
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
https://api.github.com/repos/huggingface/datasets/issues/1630/comments
null
false
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 senten...
[ "Adding a link to the guide on adding a dataset if someone want to give it a try: https://github.com/huggingface/datasets#add-a-new-dataset-to-the-hub\r\n\r\nwe should add this guide to the issue template @lhoestq ", "thanks @thomwolf , this is added now. The template is correct, sorry my mistake not to include i...
https://api.github.com/repos/huggingface/datasets/issues/1629
1,629
add wongnai_reviews test set labels
- add test set labels provided by @ekapolc - refactor `star_rating` to a `datasets.features.ClassLabel` field
closed
2020-12-24T08:02:31
https://api.github.com/repos/huggingface/datasets/issues/1629/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1629", "html_url": "https://github.com/huggingface/datasets/pull/1629", "diff_url": "https://github.com/huggingface/datasets/pull/1629.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1629.patch", "merged_at": "2020-12-28T17:23...
true
add wongnai_reviews test set labels - add test set labels provided by @ekapolc - refactor `star_rating` to a `datasets.features.ClassLabel` field
[]
https://api.github.com/repos/huggingface/datasets/issues/1628
1,628
made suggested changes to hate-speech-and-offensive-language
closed
2020-12-23T23:25:32
https://api.github.com/repos/huggingface/datasets/issues/1628/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1628", "html_url": "https://github.com/huggingface/datasets/pull/1628", "diff_url": "https://github.com/huggingface/datasets/pull/1628.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1628.patch", "merged_at": "2020-12-28T10:11...
true
made suggested changes to hate-speech-and-offensive-language
[]
https://api.github.com/repos/huggingface/datasets/issues/1627
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
https://api.github.com/repos/huggingface/datasets/issues/1627/comments
null
false
`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?
[ "Progress bar can be disabled like this:\r\n```python\r\nfrom datasets.utils.logging import set_verbosity_error\r\nset_verbosity_error()\r\n```\r\n\r\nThere is this line in `Dataset.map`:\r\n```python\r\nnot_verbose = bool(logger.getEffectiveLevel() > WARNING)\r\n```\r\n\r\nSo any logging level higher than `WARNING...
https://api.github.com/repos/huggingface/datasets/issues/1626
1,626
Fix dataset_dict.shuffle with single seed
Fix #1610 I added support for single integer used in `DatasetDict.shuffle`. Previously only a dictionary of seed was allowed. Moreover I added the missing `seed` parameter. Previously only `seeds` was allowed.
closed
2020-12-23T14:33:36
https://api.github.com/repos/huggingface/datasets/issues/1626/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1626", "html_url": "https://github.com/huggingface/datasets/pull/1626", "diff_url": "https://github.com/huggingface/datasets/pull/1626.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1626.patch", "merged_at": "2021-01-04T10:00...
true
Fix dataset_dict.shuffle with single seed Fix #1610 I added support for single integer used in `DatasetDict.shuffle`. Previously only a dictionary of seed was allowed. Moreover I added the missing `seed` parameter. Previously only `seeds` was allowed.
[]
https://api.github.com/repos/huggingface/datasets/issues/1625
1,625
Fixed bug in the shape property
Fix to the bug reported in issue #1622. Just replaced `return tuple(self._indices.num_rows, self._data.num_columns)` by `return (self._indices.num_rows, self._data.num_columns)`.
closed
2020-12-23T13:33:21
https://api.github.com/repos/huggingface/datasets/issues/1625/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1625", "html_url": "https://github.com/huggingface/datasets/pull/1625", "diff_url": "https://github.com/huggingface/datasets/pull/1625.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1625.patch", "merged_at": "2020-12-23T14:13...
true
Fixed bug in the shape property Fix to the bug reported in issue #1622. Just replaced `return tuple(self._indices.num_rows, self._data.num_columns)` by `return (self._indices.num_rows, self._data.num_columns)`.
[]
https://api.github.com/repos/huggingface/datasets/issues/1624
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
https://api.github.com/repos/huggingface/datasets/issues/1624/comments
null
false
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 = cache...
[ "Hi @him1411, the dataset you are trying to load has been added during the community sprint and has not been released yet. It will be available with the v2 of `datasets`.\r\nFor now, you should be able to load the datasets after installing the latest (master) version of `datasets` using pip:\r\n`pip install git+htt...
https://api.github.com/repos/huggingface/datasets/issues/1623
1,623
Add CLIMATE-FEVER dataset
As suggested by @SBrandeis , fresh PR that adds CLIMATE-FEVER. Replaces PR #1579. --- A dataset adopting the FEVER methodology that consists of 1,535 real-world claims regarding climate-change collected on the internet. Each claim is accompanied by five manually annotated evidence sentences retrieved from the Eng...
closed
2020-12-22T13:34:05
https://api.github.com/repos/huggingface/datasets/issues/1623/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1623", "html_url": "https://github.com/huggingface/datasets/pull/1623", "diff_url": "https://github.com/huggingface/datasets/pull/1623.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1623.patch", "merged_at": "2020-12-22T17:53...
true
Add CLIMATE-FEVER dataset As suggested by @SBrandeis , fresh PR that adds CLIMATE-FEVER. Replaces PR #1579. --- A dataset adopting the FEVER methodology that consists of 1,535 real-world claims regarding climate-change collected on the internet. Each claim is accompanied by five manually annotated evidence senten...
[ "Thank you @lhoestq for your comments! 😄 I added your suggested changes, ran the tests and regenerated `dataset_infos.json` and `dummy_data`." ]
https://api.github.com/repos/huggingface/datasets/issues/1622
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
https://api.github.com/repos/huggingface/datasets/issues/1622/comments
null
false
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, sin...
[ "Indeed that's a typo, do you want to open a PR to fix it?", "Yes, created a PR" ]
https://api.github.com/repos/huggingface/datasets/issues/1621
1,621
updated dutch_social.py for loading jsonl (lines instead of list) files
the data_loader is modified to load files on the fly. Earlier it was reading the entire file and then processing the records Pls refer to previous PR #1321
closed
2020-12-22T13:18:11
https://api.github.com/repos/huggingface/datasets/issues/1621/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1621", "html_url": "https://github.com/huggingface/datasets/pull/1621", "diff_url": "https://github.com/huggingface/datasets/pull/1621.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1621.patch", "merged_at": "2020-12-23T11:51...
true
updated dutch_social.py for loading jsonl (lines instead of list) files the data_loader is modified to load files on the fly. Earlier it was reading the entire file and then processing the records Pls refer to previous PR #1321
[]
https://api.github.com/repos/huggingface/datasets/issues/1620
1,620
Adding myPOS2017 dataset
myPOS Corpus (Myanmar Part-of-Speech Corpus) for Myanmar language NLP Research and Developments
closed
2020-12-22T04:04:55
https://api.github.com/repos/huggingface/datasets/issues/1620/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1620", "html_url": "https://github.com/huggingface/datasets/pull/1620", "diff_url": "https://github.com/huggingface/datasets/pull/1620.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1620.patch", "merged_at": null }
true
Adding myPOS2017 dataset myPOS Corpus (Myanmar Part-of-Speech Corpus) for Myanmar language NLP Research and Developments
[ "I've updated the code and Readme to reflect your comments.\r\nThank you very much,", "looks like this PR includes changes about many other files than the ones for myPOS2017\r\n\r\nCould you open another branch and another PR please ?\r\n(or fix this branch)", "Hi @hungluumfc ! Have you had a chance to fix this...
https://api.github.com/repos/huggingface/datasets/issues/1619
1,619
data loader for reading comprehension task
added doc2dial data loader and dummy data for reading comprehension task.
closed
2020-12-21T22:40:34
https://api.github.com/repos/huggingface/datasets/issues/1619/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1619", "html_url": "https://github.com/huggingface/datasets/pull/1619", "diff_url": "https://github.com/huggingface/datasets/pull/1619.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1619.patch", "merged_at": "2020-12-28T10:32...
true
data loader for reading comprehension task added doc2dial data loader and dummy data for reading comprehension task.
[ "Thank you for all the feedback! I have updated the dummy data with a zip under 30KB, which needs to include at least one data instance from both document domain and dialog domain. Please let me know if it is still too big. Thanks!", "Thank you again for the feedback! I am not too sure what the preferable style f...
https://api.github.com/repos/huggingface/datasets/issues/1618
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
https://api.github.com/repos/huggingface/datasets/issues/1618/comments
null
false
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...
[ "cc'ing @mapmeld ", "Full language list is now deployed to https://huggingface.co/datasets ! Recommend close", "Cool @mapmeld ! My 2 cents (for a next iteration), it would be cool to have a small search widget in the filter dropdown as you have a ton of languages now here! Closing this in the meantime." ]
https://api.github.com/repos/huggingface/datasets/issues/1617
1,617
cifar10 initial commit
CIFAR-10 dataset. Didn't add the tagging since there are no vision related tags.
closed
2020-12-21T11:18:50
https://api.github.com/repos/huggingface/datasets/issues/1617/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1617", "html_url": "https://github.com/huggingface/datasets/pull/1617", "diff_url": "https://github.com/huggingface/datasets/pull/1617.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1617.patch", "merged_at": "2020-12-22T10:11...
true
cifar10 initial commit CIFAR-10 dataset. Didn't add the tagging since there are no vision related tags.
[ "Yee a Computer Vision dataset!", "Yep, the first one ! Thank @czabo " ]
https://api.github.com/repos/huggingface/datasets/issues/1616
1,616
added TurkishMovieSentiment dataset
This PR adds the **TurkishMovieSentiment: This dataset contains turkish movie reviews.** - **Homepage:** [https://www.kaggle.com/mustfkeskin/turkish-movie-sentiment-analysis-dataset/tasks](https://www.kaggle.com/mustfkeskin/turkish-movie-sentiment-analysis-dataset/tasks) - **Point of Contact:** [Mustafa Keskin](htt...
closed
2020-12-21T11:03:16
https://api.github.com/repos/huggingface/datasets/issues/1616/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1616", "html_url": "https://github.com/huggingface/datasets/pull/1616", "diff_url": "https://github.com/huggingface/datasets/pull/1616.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1616.patch", "merged_at": "2020-12-23T16:50...
true
added TurkishMovieSentiment dataset This PR adds the **TurkishMovieSentiment: This dataset contains turkish movie reviews.** - **Homepage:** [https://www.kaggle.com/mustfkeskin/turkish-movie-sentiment-analysis-dataset/tasks](https://www.kaggle.com/mustfkeskin/turkish-movie-sentiment-analysis-dataset/tasks) - **Poin...
[ "> I just generated the dataset_infos.json file\r\n> \r\n> Thanks for adding this one !\r\n\r\nThank you very much for your support." ]
https://api.github.com/repos/huggingface/datasets/issues/1615
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
https://api.github.com/repos/huggingface/datasets/issues/1615/comments
null
false
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 ...
[ "Hi @SapirWeissbuch,\r\nWhen you are saying it freezes, at that time it is unzipping the file from the zip file it downloaded. Since it's a very heavy file it'll take some time. It was taking ~11GB after unzipping when it started reading examples for me. Hope that helps!\r\n![Screenshot 2020-12-21 at 23 40 52](http...
https://api.github.com/repos/huggingface/datasets/issues/1613
1,613
Add id_clickbait
This is the CLICK-ID dataset, a collection of annotated clickbait Indonesian news headlines that was collected from 12 local online news
closed
2020-12-20T12:24:49
https://api.github.com/repos/huggingface/datasets/issues/1613/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1613", "html_url": "https://github.com/huggingface/datasets/pull/1613", "diff_url": "https://github.com/huggingface/datasets/pull/1613.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1613.patch", "merged_at": "2020-12-22T17:45...
true
Add id_clickbait This is the CLICK-ID dataset, a collection of annotated clickbait Indonesian news headlines that was collected from 12 local online news
[]
https://api.github.com/repos/huggingface/datasets/issues/1612
1,612
Adding wiki asp dataset as new PR
Hi @lhoestq, Adding wiki asp as new branch because #1539 has other commits. This version has dummy data for each domain <20/30KB.
closed
2020-12-20T10:25:08
https://api.github.com/repos/huggingface/datasets/issues/1612/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1612", "html_url": "https://github.com/huggingface/datasets/pull/1612", "diff_url": "https://github.com/huggingface/datasets/pull/1612.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1612.patch", "merged_at": "2020-12-21T14:13...
true
Adding wiki asp dataset as new PR Hi @lhoestq, Adding wiki asp as new branch because #1539 has other commits. This version has dummy data for each domain <20/30KB.
[]
https://api.github.com/repos/huggingface/datasets/issues/1611
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
https://api.github.com/repos/huggingface/datasets/issues/1611/comments
null
false
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 ...
[ "Is there a way one can convert the two generator? not sure overall what alternatives I could have to shuffle the datasets with a torch generator, thanks ", "@lhoestq let me please expalin in more details, maybe you could help me suggesting an alternative to solve the issue for now, I have multiple large dataset...
https://api.github.com/repos/huggingface/datasets/issues/1610
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
https://api.github.com/repos/huggingface/datasets/issues/1610/comments
null
false
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
[ "Hi, did you check the doc on `shuffle`?\r\nhttps://huggingface.co/docs/datasets/package_reference/main_classes.html?datasets.Dataset.shuffle#datasets.Dataset.shuffle", "Hi Thomas\r\nthanks for reponse, yes, I did checked it, but this does not work for me please see \r\n\r\n```\r\n(internship) rkarimi@italix17:/i...
https://api.github.com/repos/huggingface/datasets/issues/1609
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
https://api.github.com/repos/huggingface/datasets/issues/1609/comments
null
false
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_t...
[ "Hi @jassimran,\r\nThe `jigsaw_toxicity_pred` dataset has not been released yet, it will be available with version 2 of `datasets`, coming soon.\r\nYou can still access it by installing the master (unreleased) version of datasets directly :\r\n`pip install git+https://github.com/huggingface/datasets.git@master`\r\n...
https://api.github.com/repos/huggingface/datasets/issues/1608
1,608
adding ted_talks_iwslt
UPDATE2: (2nd Jan) Wrote a long writeup on the slack channel. I don't think this approach is correct. Basically this created language pairs (109*108) Running the `pytest `went for more than 40+ hours and it was still running! So working on a different approach, such that the number of configs = number of languages...
closed
2020-12-19T07:36:41
https://api.github.com/repos/huggingface/datasets/issues/1608/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1608", "html_url": "https://github.com/huggingface/datasets/pull/1608", "diff_url": "https://github.com/huggingface/datasets/pull/1608.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1608.patch", "merged_at": null }
true
adding ted_talks_iwslt UPDATE2: (2nd Jan) Wrote a long writeup on the slack channel. I don't think this approach is correct. Basically this created language pairs (109*108) Running the `pytest `went for more than 40+ hours and it was still running! So working on a different approach, such that the number of confi...
[ "Closing this with reference to the new approach #1676 " ]
https://api.github.com/repos/huggingface/datasets/issues/1607
1,607
modified tweets hate speech detection
closed
2020-12-19T07:13:40
https://api.github.com/repos/huggingface/datasets/issues/1607/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1607", "html_url": "https://github.com/huggingface/datasets/pull/1607", "diff_url": "https://github.com/huggingface/datasets/pull/1607.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1607.patch", "merged_at": "2020-12-21T16:08...
true
modified tweets hate speech detection
[]
https://api.github.com/repos/huggingface/datasets/issues/1606
1,606
added Semantic Scholar Open Research Corpus
I picked up this dataset [Semantic Scholar Open Research Corpus](https://allenai.org/data/s2orc) but it contains 6000 files to be downloaded. I tried the current code with 100 files and it worked fine (took ~15GB space). For 6000 files it would occupy ~900GB space which I don’t have. Can someone from the HF team with t...
closed
2020-12-18T19:21:24
https://api.github.com/repos/huggingface/datasets/issues/1606/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1606", "html_url": "https://github.com/huggingface/datasets/pull/1606", "diff_url": "https://github.com/huggingface/datasets/pull/1606.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1606.patch", "merged_at": "2021-02-03T09:30...
true
added Semantic Scholar Open Research Corpus I picked up this dataset [Semantic Scholar Open Research Corpus](https://allenai.org/data/s2orc) but it contains 6000 files to be downloaded. I tried the current code with 100 files and it worked fine (took ~15GB space). For 6000 files it would occupy ~900GB space which I don...
[ "I think we’ll need complete dataset_infos.json to create YAML tags. I ran the script again with 100 files after going through your comments and it was occupying ~16 GB space. So in total it should take ~960GB and I don’t have this much memory available with me. Also, I'll have to download the whole dataset for gen...
https://api.github.com/repos/huggingface/datasets/issues/1605
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
https://api.github.com/repos/huggingface/datasets/issues/1605/comments
null
false
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...
[ "Not relevant for our current docs :)." ]
https://api.github.com/repos/huggingface/datasets/issues/1604
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
https://api.github.com/repos/huggingface/datasets/issues/1604/comments
null
false
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.
[ "We have some tests now for it under `tests/test_download_manager.py`." ]
https://api.github.com/repos/huggingface/datasets/issues/1603
1,603
Add retries to HTTP requests
## What does this PR do ? Adding retries to HTTP GET & HEAD requests, when they fail with a `ConnectTimeout` exception. The "canonical" way to do this is to use [urllib's Retry class](https://urllib3.readthedocs.io/en/latest/reference/urllib3.util.html#urllib3.util.Retry) and wrap it in a [HttpAdapter](https://re...
closed
2020-12-18T12:41:31
https://api.github.com/repos/huggingface/datasets/issues/1603/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1603", "html_url": "https://github.com/huggingface/datasets/pull/1603", "diff_url": "https://github.com/huggingface/datasets/pull/1603.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1603.patch", "merged_at": "2020-12-22T15:34...
true
Add retries to HTTP requests ## What does this PR do ? Adding retries to HTTP GET & HEAD requests, when they fail with a `ConnectTimeout` exception. The "canonical" way to do this is to use [urllib's Retry class](https://urllib3.readthedocs.io/en/latest/reference/urllib3.util.html#urllib3.util.Retry) and wrap it ...
[ "merging this one then :) " ]
https://api.github.com/repos/huggingface/datasets/issues/1602
1,602
second update of id_newspapers_2018
The feature "url" is currently set wrongly to data["date"], this PR fix it to data["url"]. I added also an additional POC.
closed
2020-12-18T12:16:37
https://api.github.com/repos/huggingface/datasets/issues/1602/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1602", "html_url": "https://github.com/huggingface/datasets/pull/1602", "diff_url": "https://github.com/huggingface/datasets/pull/1602.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1602.patch", "merged_at": "2020-12-22T10:41...
true
second update of id_newspapers_2018 The feature "url" is currently set wrongly to data["date"], this PR fix it to data["url"]. I added also an additional POC.
[]
https://api.github.com/repos/huggingface/datasets/issues/1601
1,601
second update of the id_newspapers_2018
The feature "url" is currently set wrongly to data["date"], this PR fix it to data["url"]. I added also an additional POC.
closed
2020-12-18T10:10:20
https://api.github.com/repos/huggingface/datasets/issues/1601/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1601", "html_url": "https://github.com/huggingface/datasets/pull/1601", "diff_url": "https://github.com/huggingface/datasets/pull/1601.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1601.patch", "merged_at": null }
true
second update of the id_newspapers_2018 The feature "url" is currently set wrongly to data["date"], this PR fix it to data["url"]. I added also an additional POC.
[ "I close this PR, since it based on 1 week old repo. And I will create a new one" ]
https://api.github.com/repos/huggingface/datasets/issues/1600
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
https://api.github.com/repos/huggingface/datasets/issues/1600/comments
null
false
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_spli...
[ "Hi @david-waterworth!\r\n\r\nAs indicated in the error message, `load_dataset(\"csv\")` returns a `DatasetDict` object, which is mapping of `str` to `Dataset` objects. I believe in this case the behavior is to return a `train` split with all the data.\r\n`train_test_split` is a method of the `Dataset` object, so y...
https://api.github.com/repos/huggingface/datasets/issues/1599
1,599
add Korean Sarcasm Dataset
closed
2020-12-17T22:49:56
https://api.github.com/repos/huggingface/datasets/issues/1599/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1599", "html_url": "https://github.com/huggingface/datasets/pull/1599", "diff_url": "https://github.com/huggingface/datasets/pull/1599.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1599.patch", "merged_at": "2020-12-23T17:25...
true
add Korean Sarcasm Dataset
[]
https://api.github.com/repos/huggingface/datasets/issues/1598
1,598
made suggested changes in fake-news-english
closed
2020-12-17T20:06:29
https://api.github.com/repos/huggingface/datasets/issues/1598/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1598", "html_url": "https://github.com/huggingface/datasets/pull/1598", "diff_url": "https://github.com/huggingface/datasets/pull/1598.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1598.patch", "merged_at": "2020-12-18T09:43...
true
made suggested changes in fake-news-english
[]
https://api.github.com/repos/huggingface/datasets/issues/1597
1,597
adding hate-speech-and-offensive-language
closed
2020-12-17T18:35:15
https://api.github.com/repos/huggingface/datasets/issues/1597/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1597", "html_url": "https://github.com/huggingface/datasets/pull/1597", "diff_url": "https://github.com/huggingface/datasets/pull/1597.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1597.patch", "merged_at": null }
true
adding hate-speech-and-offensive-language
[ "made suggested changes and opened PR https://github.com/huggingface/datasets/pull/1628" ]
https://api.github.com/repos/huggingface/datasets/issues/1596
1,596
made suggested changes to hate-speech-and-offensive-language
closed
2020-12-17T18:09:26
https://api.github.com/repos/huggingface/datasets/issues/1596/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1596", "html_url": "https://github.com/huggingface/datasets/pull/1596", "diff_url": "https://github.com/huggingface/datasets/pull/1596.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1596.patch", "merged_at": null }
true
made suggested changes to hate-speech-and-offensive-language
[]
https://api.github.com/repos/huggingface/datasets/issues/1595
1,595
Logiqa en
logiqa in english.
closed
2020-12-17T15:42:00
https://api.github.com/repos/huggingface/datasets/issues/1595/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1595", "html_url": "https://github.com/huggingface/datasets/pull/1595", "diff_url": "https://github.com/huggingface/datasets/pull/1595.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1595.patch", "merged_at": null }
true
Logiqa en logiqa in english.
[ "I'm getting an error when I try to create the dummy data:\r\n```python\r\naclifton@pop-os:~/data/hf_datasets_sprint/datasets$ python datasets-cli dummy_data ./datasets/logiqa_en/ --auto_generate \r\n2021-01-07 10:50:12.024791: W tensorflow/stream_executor/platform/default/dso_loader.cc:59] Could not load dynamic l...
https://api.github.com/repos/huggingface/datasets/issues/1594
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
https://api.github.com/repos/huggingface/datasets/issues/1594/comments
null
false
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 Fi...
[ "This happen quite often when they are too many concurrent requests to github.\r\n\r\ni can understand it’s a bit cumbersome to handle on the user side. Maybe we should try a few times in the lib (eg with timeout) before failing, what do you think @lhoestq ?", "Yes currently there's no retry afaik. We should add ...
https://api.github.com/repos/huggingface/datasets/issues/1593
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
https://api.github.com/repos/huggingface/datasets/issues/1593/comments
null
false
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 ...
[ "Indeed that would be cool\r\n\r\nAlso FYI right now the easiest way to do this is\r\n```python\r\ndataset_dict[\"train\"] = dataset_dict[\"train\"].map(my_transform_for_the_train_set)\r\ndataset_dict[\"test\"] = dataset_dict[\"test\"].map(my_transform_for_the_test_set)\r\n```", "I don't feel like adding an extra...
https://api.github.com/repos/huggingface/datasets/issues/1591
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
https://api.github.com/repos/huggingface/datasets/issues/1591/comments
null
false
IWSLT-17 Link Broken ``` FileNotFoundError: Couldn't find file at https://wit3.fbk.eu/archive/2017-01-trnmted//texts/DeEnItNlRo/DeEnItNlRo/DeEnItNlRo-DeEnItNlRo.tgz ```
[ "Sorry, this is a duplicate of #1287. Not sure why it didn't come up when I searched `iwslt` in the issues list.", "Closing this since its a duplicate" ]
https://api.github.com/repos/huggingface/datasets/issues/1590
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
https://api.github.com/repos/huggingface/datasets/issues/1590/comments
null
false
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.
[ "Do you have an example?", "I was thinking about using something like [importlib](https://docs.python.org/3/library/importlib.html#importing-a-source-file-directly) to over-ride the collision. \r\n\r\n**Reason requested**: I use the [following template](https://github.com/jramapuram/ml_base/) repo where I house a...
https://api.github.com/repos/huggingface/datasets/issues/1589
1,589
Update doc2dial.py
Added data loader for machine reading comprehension tasks proposed in the Doc2Dial EMNLP 2020 paper.
closed
2020-12-16T18:50:56
https://api.github.com/repos/huggingface/datasets/issues/1589/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1589", "html_url": "https://github.com/huggingface/datasets/pull/1589", "diff_url": "https://github.com/huggingface/datasets/pull/1589.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1589.patch", "merged_at": null }
true
Update doc2dial.py Added data loader for machine reading comprehension tasks proposed in the Doc2Dial EMNLP 2020 paper.
[ "Thanks for adding the `doc2dial_rc` config :) \r\n\r\nIt looks like you're missing the dummy data for this config though. Could you add them please ?\r\nAlso to fix the CI you'll need to format the code with `make style`" ]
https://api.github.com/repos/huggingface/datasets/issues/1588
1,588
Modified hind encorp
description added, unnecessary comments removed from .py and readme.md reformated @lhoestq for #1584
closed
2020-12-16T16:28:14
https://api.github.com/repos/huggingface/datasets/issues/1588/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1588", "html_url": "https://github.com/huggingface/datasets/pull/1588", "diff_url": "https://github.com/huggingface/datasets/pull/1588.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1588.patch", "merged_at": "2020-12-16T17:20...
true
Modified hind encorp description added, unnecessary comments removed from .py and readme.md reformated @lhoestq for #1584
[ "welcome, awesome " ]
https://api.github.com/repos/huggingface/datasets/issues/1587
1,587
Add nq_open question answering dataset
this is pr is a copy of #1506 due to messed up git history in that pr.
closed
2020-12-16T14:22:08
https://api.github.com/repos/huggingface/datasets/issues/1587/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1587", "html_url": "https://github.com/huggingface/datasets/pull/1587", "diff_url": "https://github.com/huggingface/datasets/pull/1587.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1587.patch", "merged_at": "2020-12-17T16:07...
true
Add nq_open question answering dataset this is pr is a copy of #1506 due to messed up git history in that pr.
[ "@SBrandeis all checks passing" ]
https://api.github.com/repos/huggingface/datasets/issues/1586
1,586
added irc disentangle dataset
added irc disentanglement dataset
closed
2020-12-16T13:25:58
https://api.github.com/repos/huggingface/datasets/issues/1586/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1586", "html_url": "https://github.com/huggingface/datasets/pull/1586", "diff_url": "https://github.com/huggingface/datasets/pull/1586.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1586.patch", "merged_at": "2021-01-29T10:28...
true
added irc disentangle dataset added irc disentanglement dataset
[ "@lhoestq sorry, this was the only way I was able to fix the pull request ", "@lhoestq Thank you for the feedback. I wondering whether I should be passing an 'id' field in the dictionary since the 'connections' reference the 'id' of the linked messages. This 'id' would just be the same as the id_ that is in the y...
https://api.github.com/repos/huggingface/datasets/issues/1585
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
https://api.github.com/repos/huggingface/datasets/issues/1585/comments
null
false
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...
[ "Hi @phtephanx , the `amazon_polarity` dataset has not been released yet. It will be available in the coming soon v2of `datasets` :) \r\n\r\nYou can still access it now if you want, but you will need to install datasets via the master branch:\r\n`pip install git+https://github.com/huggingface/datasets.git@master`" ...
https://api.github.com/repos/huggingface/datasets/issues/1584
1,584
Load hind encorp
reformated well documented, yaml tags added, code
closed
2020-12-16T12:38:38
https://api.github.com/repos/huggingface/datasets/issues/1584/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1584", "html_url": "https://github.com/huggingface/datasets/pull/1584", "diff_url": "https://github.com/huggingface/datasets/pull/1584.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1584.patch", "merged_at": null }
true
Load hind encorp reformated well documented, yaml tags added, code
[]
https://api.github.com/repos/huggingface/datasets/issues/1583
1,583
Update metrics docstrings.
#1478 Correcting the argument descriptions for metrics. Let me know if there's any issues.
closed
2020-12-16T12:14:18
https://api.github.com/repos/huggingface/datasets/issues/1583/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1583", "html_url": "https://github.com/huggingface/datasets/pull/1583", "diff_url": "https://github.com/huggingface/datasets/pull/1583.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1583.patch", "merged_at": "2020-12-18T18:39...
true
Update metrics docstrings. #1478 Correcting the argument descriptions for metrics. Let me know if there's any issues.
[]
https://api.github.com/repos/huggingface/datasets/issues/1582
1,582
Adding wiki lingua dataset as new branch
Adding the dataset as new branch as advised here: #1470
closed
2020-12-16T11:53:07
https://api.github.com/repos/huggingface/datasets/issues/1582/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1582", "html_url": "https://github.com/huggingface/datasets/pull/1582", "diff_url": "https://github.com/huggingface/datasets/pull/1582.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1582.patch", "merged_at": "2020-12-17T18:06...
true
Adding wiki lingua dataset as new branch Adding the dataset as new branch as advised here: #1470
[]
https://api.github.com/repos/huggingface/datasets/issues/1581
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
https://api.github.com/repos/huggingface/datasets/issues/1581/comments
null
false
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 ...
[ "Thanks for reporting !\r\nYou can override the directory in which cache file are stored using for example\r\n```\r\nENV HF_HOME=\"/root/cache/hf_cache_home\"\r\n```\r\n\r\nThis way both `transformers` and `datasets` will use this directory instead of the default `.cache`", "Great, thanks. I didn't see documentat...
https://api.github.com/repos/huggingface/datasets/issues/1580
1,580
made suggested changes in diplomacy_detection.py
closed
2020-12-15T19:52:00
https://api.github.com/repos/huggingface/datasets/issues/1580/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1580", "html_url": "https://github.com/huggingface/datasets/pull/1580", "diff_url": "https://github.com/huggingface/datasets/pull/1580.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1580.patch", "merged_at": "2020-12-16T10:27...
true
made suggested changes in diplomacy_detection.py
[]
https://api.github.com/repos/huggingface/datasets/issues/1579
1,579
Adding CLIMATE-FEVER dataset
This PR request the addition of the CLIMATE-FEVER dataset: A dataset adopting the FEVER methodology that consists of 1,535 real-world claims regarding climate-change collected on the internet. Each claim is accompanied by five manually annotated evidence sentences retrieved from the English Wikipedia that support, ref...
closed
2020-12-15T16:49:22
https://api.github.com/repos/huggingface/datasets/issues/1579/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1579", "html_url": "https://github.com/huggingface/datasets/pull/1579", "diff_url": "https://github.com/huggingface/datasets/pull/1579.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1579.patch", "merged_at": null }
true
Adding CLIMATE-FEVER dataset This PR request the addition of the CLIMATE-FEVER dataset: A dataset adopting the FEVER methodology that consists of 1,535 real-world claims regarding climate-change collected on the internet. Each claim is accompanied by five manually annotated evidence sentences retrieved from the Englis...
[ "I `git rebase`ed my branch to `upstream/master` as suggested in point 7 of <https://huggingface.co/docs/datasets/share_dataset.html> and subsequently used `git pull` to be able to push to my remote branch. However, I think this messed up the history.\r\n\r\nPlease let me know if I should create a clean new PR with...
https://api.github.com/repos/huggingface/datasets/issues/1578
1,578
update multiwozv22 checksums
a file was updated on the GitHub repo for the dataset
closed
2020-12-15T16:13:52
https://api.github.com/repos/huggingface/datasets/issues/1578/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1578", "html_url": "https://github.com/huggingface/datasets/pull/1578", "diff_url": "https://github.com/huggingface/datasets/pull/1578.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1578.patch", "merged_at": "2020-12-15T17:06...
true
update multiwozv22 checksums a file was updated on the GitHub repo for the dataset
[]
https://api.github.com/repos/huggingface/datasets/issues/1577
1,577
Add comet metric
Hey! I decided to add our new Crosslingual Optimized Metric for Evaluation of Translation (COMET) to the list of the available metrics. COMET was [presented at EMNLP20](https://www.aclweb.org/anthology/2020.emnlp-main.213/) and it is the highest performing metric, so far, on the WMT19 benchmark. We also participa...
closed
2020-12-15T08:56:00
https://api.github.com/repos/huggingface/datasets/issues/1577/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1577", "html_url": "https://github.com/huggingface/datasets/pull/1577", "diff_url": "https://github.com/huggingface/datasets/pull/1577.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1577.patch", "merged_at": "2021-01-14T13:33...
true
Add comet metric Hey! I decided to add our new Crosslingual Optimized Metric for Evaluation of Translation (COMET) to the list of the available metrics. COMET was [presented at EMNLP20](https://www.aclweb.org/anthology/2020.emnlp-main.213/) and it is the highest performing metric, so far, on the WMT19 benchmark. ...
[ "I also thought a bit about the fact that \"sources\" can't be added to the batch.. but changing that would require a lot more changes. And I agree that the idea of adding them as part of the references is not ideal. Conceptually they are not references.\r\n\r\nI would keep it like this for now.. And in the future,...
https://api.github.com/repos/huggingface/datasets/issues/1576
1,576
Remove the contributors section
sourcerer is down
closed
2020-12-15T01:47:15
https://api.github.com/repos/huggingface/datasets/issues/1576/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1576", "html_url": "https://github.com/huggingface/datasets/pull/1576", "diff_url": "https://github.com/huggingface/datasets/pull/1576.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1576.patch", "merged_at": "2020-12-15T12:53...
true
Remove the contributors section sourcerer is down
[]
https://api.github.com/repos/huggingface/datasets/issues/1575
1,575
Hind_Encorp all done
closed
2020-12-15T01:36:02
https://api.github.com/repos/huggingface/datasets/issues/1575/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1575", "html_url": "https://github.com/huggingface/datasets/pull/1575", "diff_url": "https://github.com/huggingface/datasets/pull/1575.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1575.patch", "merged_at": null }
true
Hind_Encorp all done
[ "ALL TEST PASSED locally @yjernite ", "@rahul-art kindly run the following from the datasets folder \r\n\r\n```\r\nmake style \r\nflake8 datasets\r\n\r\n```\r\n", "@skyprince999 I did that before it says all done \r\n", "I did that again it gives the same output all done and then I synchronized my changes ...
https://api.github.com/repos/huggingface/datasets/issues/1574
1,574
Diplomacy detection 3
closed
2020-12-14T23:28:51
https://api.github.com/repos/huggingface/datasets/issues/1574/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1574", "html_url": "https://github.com/huggingface/datasets/pull/1574", "diff_url": "https://github.com/huggingface/datasets/pull/1574.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1574.patch", "merged_at": null }
true
Diplomacy detection 3
[]
https://api.github.com/repos/huggingface/datasets/issues/1573
1,573
adding dataset for diplomacy detection-2
closed
2020-12-14T23:21:37
https://api.github.com/repos/huggingface/datasets/issues/1573/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1573", "html_url": "https://github.com/huggingface/datasets/pull/1573", "diff_url": "https://github.com/huggingface/datasets/pull/1573.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1573.patch", "merged_at": null }
true
adding dataset for diplomacy detection-2
[]
https://api.github.com/repos/huggingface/datasets/issues/1572
1,572
add Gnad10 dataset
reference [PR#1317](https://github.com/huggingface/datasets/pull/1317)
closed
2020-12-14T23:15:02
https://api.github.com/repos/huggingface/datasets/issues/1572/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1572", "html_url": "https://github.com/huggingface/datasets/pull/1572", "diff_url": "https://github.com/huggingface/datasets/pull/1572.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1572.patch", "merged_at": "2020-12-16T16:52...
true
add Gnad10 dataset reference [PR#1317](https://github.com/huggingface/datasets/pull/1317)
[]
https://api.github.com/repos/huggingface/datasets/issues/1571
1,571
Fixing the KILT tasks to match our current standards
This introduces a few changes to the Knowledge Intensive Learning task benchmark to bring it more in line with our current datasets, including adding the (minimal) dataset card and having one config per sub-task
closed
2020-12-14T22:26:12
https://api.github.com/repos/huggingface/datasets/issues/1571/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1571", "html_url": "https://github.com/huggingface/datasets/pull/1571", "diff_url": "https://github.com/huggingface/datasets/pull/1571.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1571.patch", "merged_at": "2020-12-14T23:07...
true
Fixing the KILT tasks to match our current standards This introduces a few changes to the Knowledge Intensive Learning task benchmark to bring it more in line with our current datasets, including adding the (minimal) dataset card and having one config per sub-task
[]
https://api.github.com/repos/huggingface/datasets/issues/1570
1,570
Documentation for loading CSV datasets misleads the user
Documentation for loading CSV datasets misleads the user into thinking setting `quote_char' to False will disable quoting. There are two problems here: i) `quote_char' is misspelled, must be `quotechar' ii) the documentation should mention `quoting'
closed
2020-12-14T19:04:37
https://api.github.com/repos/huggingface/datasets/issues/1570/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1570", "html_url": "https://github.com/huggingface/datasets/pull/1570", "diff_url": "https://github.com/huggingface/datasets/pull/1570.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1570.patch", "merged_at": "2020-12-21T13:47...
true
Documentation for loading CSV datasets misleads the user Documentation for loading CSV datasets misleads the user into thinking setting `quote_char' to False will disable quoting. There are two problems here: i) `quote_char' is misspelled, must be `quotechar' ii) the documentation should mention `quoting'
[]
https://api.github.com/repos/huggingface/datasets/issues/1569
1,569
added un_ga dataset
Hi :hugs:, This is a PR for [United nations general assembly resolutions: A six-language parallel corpus](http://opus.nlpl.eu/UN.php) dataset. With suggested changes in #1330
closed
2020-12-14T17:42:04
https://api.github.com/repos/huggingface/datasets/issues/1569/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1569", "html_url": "https://github.com/huggingface/datasets/pull/1569", "diff_url": "https://github.com/huggingface/datasets/pull/1569.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1569.patch", "merged_at": "2020-12-15T15:28...
true
added un_ga dataset Hi :hugs:, This is a PR for [United nations general assembly resolutions: A six-language parallel corpus](http://opus.nlpl.eu/UN.php) dataset. With suggested changes in #1330
[]
https://api.github.com/repos/huggingface/datasets/issues/1568
1,568
Added the dataset clickbait_news_bg
There was a problem with my [previous PR 1445](https://github.com/huggingface/datasets/pull/1445) after rebasing, so I'm copying the dataset code into a new branch and submitting a new PR.
closed
2020-12-14T17:03:00
https://api.github.com/repos/huggingface/datasets/issues/1568/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1568", "html_url": "https://github.com/huggingface/datasets/pull/1568", "diff_url": "https://github.com/huggingface/datasets/pull/1568.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1568.patch", "merged_at": "2020-12-15T18:28...
true
Added the dataset clickbait_news_bg There was a problem with my [previous PR 1445](https://github.com/huggingface/datasets/pull/1445) after rebasing, so I'm copying the dataset code into a new branch and submitting a new PR.
[ "Hi @tsvm Great work! \r\nSince you have raised a clean PR could you close the earlier one - #1445 ? \r\n", "> Hi @tsvm Great work!\r\n> Since you have raised a clean PR could you close the earlier one - #1445 ?\r\n\r\nDone." ]
https://api.github.com/repos/huggingface/datasets/issues/1567
1,567
[wording] Update Readme.md
Make the features of the library clearer.
closed
2020-12-14T12:34:52
https://api.github.com/repos/huggingface/datasets/issues/1567/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1567", "html_url": "https://github.com/huggingface/datasets/pull/1567", "diff_url": "https://github.com/huggingface/datasets/pull/1567.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1567.patch", "merged_at": "2020-12-15T12:54...
true
[wording] Update Readme.md Make the features of the library clearer.
[]
https://api.github.com/repos/huggingface/datasets/issues/1566
1,566
Add Microsoft Research Sequential Question Answering (SQA) Dataset
For more information: https://msropendata.com/datasets/b25190ed-0f59-47b1-9211-5962858142c2
closed
2020-12-14T12:02:30
https://api.github.com/repos/huggingface/datasets/issues/1566/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1566", "html_url": "https://github.com/huggingface/datasets/pull/1566", "diff_url": "https://github.com/huggingface/datasets/pull/1566.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1566.patch", "merged_at": "2020-12-15T15:24...
true
Add Microsoft Research Sequential Question Answering (SQA) Dataset For more information: https://msropendata.com/datasets/b25190ed-0f59-47b1-9211-5962858142c2
[ "I proposed something a few weeks ago in #898 (un-merged) but I think that the way that @mattbui added the dataset in the present PR is smarter and simpler should replace my PR #898.\r\n\r\n(Narrator voice: *And it was around that time that Thomas realized that the community was now a lot smarter than him and he sh...
https://api.github.com/repos/huggingface/datasets/issues/1565
1,565
Create README.md
closed
2020-12-14T11:40:23
https://api.github.com/repos/huggingface/datasets/issues/1565/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1565", "html_url": "https://github.com/huggingface/datasets/pull/1565", "diff_url": "https://github.com/huggingface/datasets/pull/1565.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1565.patch", "merged_at": "2021-03-25T14:01...
true
Create README.md
[ "@ManuelFay thanks you so much for adding a dataset card, this is such a cool contribution!\r\n\r\nThis looks like it uses an old template for the card we've moved things around a bit and we have an app you should be using to get the tags and the structure of the Data Fields paragraph :) Would you mind moving your ...
https://api.github.com/repos/huggingface/datasets/issues/1564
1,564
added saudinewsnet
I'm having issues in creating the dummy data. I'm still investigating how to fix it. I'll close the PR if I couldn't find a solution
closed
2020-12-14T10:35:09
https://api.github.com/repos/huggingface/datasets/issues/1564/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1564", "html_url": "https://github.com/huggingface/datasets/pull/1564", "diff_url": "https://github.com/huggingface/datasets/pull/1564.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1564.patch", "merged_at": "2020-12-22T09:51...
true
added saudinewsnet I'm having issues in creating the dummy data. I'm still investigating how to fix it. I'll close the PR if I couldn't find a solution
[ "Hi @abdulelahsm - This is an interesting dataset! But there are multiple issues with the PR. Some of them are listed below: \r\n- default builder config is not defined. There should be atleast one builder config \r\n- URL is incorrectly constructed so the data files are not being downloaded \r\n- dataset_info.jso...
https://api.github.com/repos/huggingface/datasets/issues/1563
1,563
adding tmu-gfm-dataset
Adding TMU-GFM-Dataset for Grammatical Error Correction. https://github.com/tmu-nlp/TMU-GFM-Dataset A dataset for GEC metrics with manual evaluations of grammaticality, fluency, and meaning preservation for system outputs. More detail about the creation of the dataset can be found in [Yoshimura et al. (2020)](ht...
closed
2020-12-14T09:45:30
https://api.github.com/repos/huggingface/datasets/issues/1563/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1563", "html_url": "https://github.com/huggingface/datasets/pull/1563", "diff_url": "https://github.com/huggingface/datasets/pull/1563.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1563.patch", "merged_at": "2020-12-21T10:07...
true
adding tmu-gfm-dataset Adding TMU-GFM-Dataset for Grammatical Error Correction. https://github.com/tmu-nlp/TMU-GFM-Dataset A dataset for GEC metrics with manual evaluations of grammaticality, fluency, and meaning preservation for system outputs. More detail about the creation of the dataset can be found in [Yosh...
[ "@lhoestq Thank you for your code review! I think I could do the necessary corrections. Could you please check it again when you have time?", "Thank you for merging!" ]
https://api.github.com/repos/huggingface/datasets/issues/1562
1,562
Add dataset COrpus of Urdu News TExt Reuse (COUNTER).
closed
2020-12-14T06:32:48
https://api.github.com/repos/huggingface/datasets/issues/1562/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1562", "html_url": "https://github.com/huggingface/datasets/pull/1562", "diff_url": "https://github.com/huggingface/datasets/pull/1562.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1562.patch", "merged_at": "2020-12-21T13:14...
true
Add dataset COrpus of Urdu News TExt Reuse (COUNTER).
[ "Just a small revision from simon's review: 20KB for the dummy_data.zip is fine, you can keep them this way.", "Also the CI is failing because of an error `tests/test_file_utils.py::TempSeedTest::test_tensorflow` that is not related to your dataset and is fixed on master. You can ignore it", "merging since the ...
https://api.github.com/repos/huggingface/datasets/issues/1561
1,561
Lama
This the LAMA dataset for probing facts and common sense from language models. See https://github.com/facebookresearch/LAMA for more details.
closed
2020-12-14T03:27:10
https://api.github.com/repos/huggingface/datasets/issues/1561/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1561", "html_url": "https://github.com/huggingface/datasets/pull/1561", "diff_url": "https://github.com/huggingface/datasets/pull/1561.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1561.patch", "merged_at": "2020-12-28T09:51...
true
Lama This the LAMA dataset for probing facts and common sense from language models. See https://github.com/facebookresearch/LAMA for more details.
[ "Let me know why the pyarrow test is failing. For one of the config \"trex\", I had to load an initial datafile for a dictionary which is used to augment the rest of the datasets. In the dummy data, the dictionary file was truncated so I had to fudge that. I'm not sure if that is the issue.\r\n", "@ontocord it ju...
https://api.github.com/repos/huggingface/datasets/issues/1560
1,560
Adding the BrWaC dataset
Adding the BrWaC dataset, a large corpus of Portuguese language texts
closed
2020-12-14T03:03:56
https://api.github.com/repos/huggingface/datasets/issues/1560/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1560", "html_url": "https://github.com/huggingface/datasets/pull/1560", "diff_url": "https://github.com/huggingface/datasets/pull/1560.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1560.patch", "merged_at": "2020-12-18T15:56...
true
Adding the BrWaC dataset Adding the BrWaC dataset, a large corpus of Portuguese language texts
[]
https://api.github.com/repos/huggingface/datasets/issues/1559
1,559
adding dataset card information to CONTRIBUTING.md
Added a documentation line and link to the full sprint guide in the "How to add a dataset" section, and a section on how to contribute to the dataset card of an existing dataset. And a thank you note at the end :hugs:
closed
2020-12-14T00:08:43
https://api.github.com/repos/huggingface/datasets/issues/1559/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1559", "html_url": "https://github.com/huggingface/datasets/pull/1559", "diff_url": "https://github.com/huggingface/datasets/pull/1559.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1559.patch", "merged_at": "2020-12-14T17:55...
true
adding dataset card information to CONTRIBUTING.md Added a documentation line and link to the full sprint guide in the "How to add a dataset" section, and a section on how to contribute to the dataset card of an existing dataset. And a thank you note at the end :hugs:
[]
https://api.github.com/repos/huggingface/datasets/issues/1558
1,558
Adding Igbo NER data
This PR adds the Igbo NER dataset. Data: https://github.com/IgnatiusEzeani/IGBONLP/tree/master/ig_ner
closed
2020-12-13T23:52:11
https://api.github.com/repos/huggingface/datasets/issues/1558/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1558", "html_url": "https://github.com/huggingface/datasets/pull/1558", "diff_url": "https://github.com/huggingface/datasets/pull/1558.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1558.patch", "merged_at": "2020-12-21T14:38...
true
Adding Igbo NER data This PR adds the Igbo NER dataset. Data: https://github.com/IgnatiusEzeani/IGBONLP/tree/master/ig_ner
[ "Thanks for the PR @purvimisal. \r\n\r\nFew comments below. ", "Hi, @lhoestq Thank you for the review. I have made all the changes. PTAL! ", "the CI error is not related to your dataset, merging" ]
https://api.github.com/repos/huggingface/datasets/issues/1557
1,557
HindEncorp again commited
closed
2020-12-13T23:09:02
https://api.github.com/repos/huggingface/datasets/issues/1557/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1557", "html_url": "https://github.com/huggingface/datasets/pull/1557", "diff_url": "https://github.com/huggingface/datasets/pull/1557.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1557.patch", "merged_at": null }
true
HindEncorp again commited
[ "Yes this has the right files!!!\r\n\r\nI'll close the previous one then :) \r\n\r\nNow to pass the tests, you will need to:\r\n- `make style` and run `flake8 datasets` from your repository root directory\r\n- fix the dummy data\r\n\r\nDid you generate the dummy data with the auto-generation tool (see the guide) or...
https://api.github.com/repos/huggingface/datasets/issues/1556
1,556
add bswac
closed
2020-12-13T22:55:35
https://api.github.com/repos/huggingface/datasets/issues/1556/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1556", "html_url": "https://github.com/huggingface/datasets/pull/1556", "diff_url": "https://github.com/huggingface/datasets/pull/1556.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1556.patch", "merged_at": "2020-12-18T15:14...
true
add bswac
[ "merging since the CI is fixed on master" ]
https://api.github.com/repos/huggingface/datasets/issues/1555
1,555
Added Opus TedTalks
Dataset : http://opus.nlpl.eu/TedTalks.php
closed
2020-12-13T22:29:33
https://api.github.com/repos/huggingface/datasets/issues/1555/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1555", "html_url": "https://github.com/huggingface/datasets/pull/1555", "diff_url": "https://github.com/huggingface/datasets/pull/1555.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1555.patch", "merged_at": "2020-12-18T09:44...
true
Added Opus TedTalks Dataset : http://opus.nlpl.eu/TedTalks.php
[ "@lhoestq I saw some common changes you made on the other PR's (Similar Opus Datasets). I fixed those changes here. Can you please review it once ? \r\nThanks.", "merging since the CI is fixed on master" ]
https://api.github.com/repos/huggingface/datasets/issues/1554
1,554
Opus CAPES added
Dataset : http://opus.nlpl.eu/CAPES.php
closed
2020-12-13T22:11:34
https://api.github.com/repos/huggingface/datasets/issues/1554/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1554", "html_url": "https://github.com/huggingface/datasets/pull/1554", "diff_url": "https://github.com/huggingface/datasets/pull/1554.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1554.patch", "merged_at": null }
true
Opus CAPES added Dataset : http://opus.nlpl.eu/CAPES.php
[ "@lhoestq I saw some common changes you made on the other PR's (Similar Opus Datasets). I fixed those changes here. Can you please review it once ? \r\nThanks.", "Hi @rkc007 , thanks for the contribution.\r\nUnfortunately, the CAPES dataset has already been added here: #1307\r\nI'm closing the PR ", "@lhoestq F...
https://api.github.com/repos/huggingface/datasets/issues/1553
1,553
added air_dialogue
UPDATE2 (3797ce5): Updated for multi-configs UPDATE (7018082): manually created the dummy_datasets. All tests were cleared locally. Pushed it to origin/master DRAFT VERSION (57fdb20): (_no longer draft_) Uploaded the air_dialogue database. dummy_data creation was failing in local, since the original download...
closed
2020-12-13T21:59:02
https://api.github.com/repos/huggingface/datasets/issues/1553/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1553", "html_url": "https://github.com/huggingface/datasets/pull/1553", "diff_url": "https://github.com/huggingface/datasets/pull/1553.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1553.patch", "merged_at": "2020-12-23T11:20...
true
added air_dialogue UPDATE2 (3797ce5): Updated for multi-configs UPDATE (7018082): manually created the dummy_datasets. All tests were cleared locally. Pushed it to origin/master DRAFT VERSION (57fdb20): (_no longer draft_) Uploaded the air_dialogue database. dummy_data creation was failing in local, since th...
[]
https://api.github.com/repos/huggingface/datasets/issues/1552
1,552
Added OPUS ParaCrawl
Dataset : http://opus.nlpl.eu/ParaCrawl.php
closed
2020-12-13T21:44:29
https://api.github.com/repos/huggingface/datasets/issues/1552/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1552", "html_url": "https://github.com/huggingface/datasets/pull/1552", "diff_url": "https://github.com/huggingface/datasets/pull/1552.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1552.patch", "merged_at": "2020-12-21T09:50...
true
Added OPUS ParaCrawl Dataset : http://opus.nlpl.eu/ParaCrawl.php
[ "@lhoestq I saw some common changes you made on the other PR's (Similar Opus Datasets). I fixed those changes here. Can you please review it once ? \r\nThanks.", "@rkc007 @lhoestq just noticed a dataset named para_crawl has been added a long time ago: #91.", "They're not exactly the same so it's ok to have both...
https://api.github.com/repos/huggingface/datasets/issues/1551
1,551
Monero
Biomedical Romanian dataset :)
closed
2020-12-13T19:56:48
https://api.github.com/repos/huggingface/datasets/issues/1551/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1551", "html_url": "https://github.com/huggingface/datasets/pull/1551", "diff_url": "https://github.com/huggingface/datasets/pull/1551.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1551.patch", "merged_at": null }
true
Monero Biomedical Romanian dataset :)
[ "Hi @iliemihai - you need to add the Readme file! Otherwise seems good. \r\nAlso don't forget to run `make style` & `flake8 datasets` locally, from the datasets folder", "@skyprince999 I will add the README.d for it. Thank you :D ", "Thanks for your contribution, @iliemihai. Are you still interested in adding ...
https://api.github.com/repos/huggingface/datasets/issues/1550
1,550
Add offensive langauge dravidian dataset
closed
2020-12-13T19:54:19
https://api.github.com/repos/huggingface/datasets/issues/1550/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1550", "html_url": "https://github.com/huggingface/datasets/pull/1550", "diff_url": "https://github.com/huggingface/datasets/pull/1550.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1550.patch", "merged_at": "2020-12-18T14:25...
true
Add offensive langauge dravidian dataset
[ "Thanks much!" ]
https://api.github.com/repos/huggingface/datasets/issues/1549
1,549
Generics kb new branch
Datasets need manual downloads. Have thus created dummy data as well. But pytest on real and dummy data are failing. I have completed the readme , tags and other required things. I need to create the metadata json once tests get successful. Opening a PR while working with Yacine Jernite to resolve my pytest issues.
closed
2020-12-13T19:33:10
https://api.github.com/repos/huggingface/datasets/issues/1549/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1549", "html_url": "https://github.com/huggingface/datasets/pull/1549", "diff_url": "https://github.com/huggingface/datasets/pull/1549.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1549.patch", "merged_at": "2020-12-21T13:55...
true
Generics kb new branch Datasets need manual downloads. Have thus created dummy data as well. But pytest on real and dummy data are failing. I have completed the readme , tags and other required things. I need to create the metadata json once tests get successful. Opening a PR while working with Yacine Jernite to reso...
[]
https://api.github.com/repos/huggingface/datasets/issues/1548
1,548
Fix `🤗Datasets` - `tfds` differences link + a few aesthetics
closed
2020-12-13T18:48:21
https://api.github.com/repos/huggingface/datasets/issues/1548/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1548", "html_url": "https://github.com/huggingface/datasets/pull/1548", "diff_url": "https://github.com/huggingface/datasets/pull/1548.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1548.patch", "merged_at": "2020-12-15T12:55...
true
Fix `🤗Datasets` - `tfds` differences link + a few aesthetics
[]
https://api.github.com/repos/huggingface/datasets/issues/1547
1,547
Adding PolEval2019 Machine Translation Task dataset
Facing an error with pytest in training. Dummy data is passing. README has to be updated.
closed
2020-12-13T17:50:03
https://api.github.com/repos/huggingface/datasets/issues/1547/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1547", "html_url": "https://github.com/huggingface/datasets/pull/1547", "diff_url": "https://github.com/huggingface/datasets/pull/1547.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1547.patch", "merged_at": "2020-12-21T16:13...
true
Adding PolEval2019 Machine Translation Task dataset Facing an error with pytest in training. Dummy data is passing. README has to be updated.
[ "**NOTE:**\r\n\r\n- Train and Dev: Manually downloaded (auto download is repeatedly giving `ConnectionError` for one of the files), Test: Auto Download\r\n- Dummy test is passing\r\n- The json file has been created with hard-coded paths for the manual downloads _(hardcoding has been removed from the final uploaded ...
https://api.github.com/repos/huggingface/datasets/issues/1546
1,546
Add persian ner dataset
Adding the following dataset: https://github.com/HaniehP/PersianNER
closed
2020-12-13T17:45:48
https://api.github.com/repos/huggingface/datasets/issues/1546/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1546", "html_url": "https://github.com/huggingface/datasets/pull/1546", "diff_url": "https://github.com/huggingface/datasets/pull/1546.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1546.patch", "merged_at": "2020-12-23T09:53...
true
Add persian ner dataset Adding the following dataset: https://github.com/HaniehP/PersianNER
[ "HI @SBrandeis. Thanks for all the comments - very helpful. I realised that the tests had failed and had been trying to figure out what was causing them to do so. All the tests pass when I run the load_real_dataset test however when I run `RUN_SLOW=1 pytest tests/test_dataset_common.py::LocalDatasetTest::test_load_...
https://api.github.com/repos/huggingface/datasets/issues/1545
1,545
add hrwac
closed
2020-12-13T17:31:54
https://api.github.com/repos/huggingface/datasets/issues/1545/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1545", "html_url": "https://github.com/huggingface/datasets/pull/1545", "diff_url": "https://github.com/huggingface/datasets/pull/1545.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1545.patch", "merged_at": "2020-12-18T13:35...
true
add hrwac
[ "merging since the CI is fixed on master" ]
https://api.github.com/repos/huggingface/datasets/issues/1544
1,544
Added Wiki Summary Dataset
Wiki Summary: Dataset extracted from Persian Wikipedia into the form of articles and highlights. Link: https://github.com/m3hrdadfi/wiki-summary
closed
2020-12-13T16:33:46
https://api.github.com/repos/huggingface/datasets/issues/1544/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1544", "html_url": "https://github.com/huggingface/datasets/pull/1544", "diff_url": "https://github.com/huggingface/datasets/pull/1544.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1544.patch", "merged_at": "2020-12-18T16:17...
true
Added Wiki Summary Dataset Wiki Summary: Dataset extracted from Persian Wikipedia into the form of articles and highlights. Link: https://github.com/m3hrdadfi/wiki-summary
[ "@lhoestq why my tests are not running?", "Maybe an issue with CircleCI, let me try to make them run", "The CI error `tests/test_file_utils.py::TempSeedTest::test_tensorflow` is not related to this dataset and is fixed on master, you can ignore it", "what I need to do now", "Now the delimiter of the csv rea...
https://api.github.com/repos/huggingface/datasets/issues/1543
1,543
adding HindEncorp
adding Hindi Wikipedia corpus
closed
2020-12-13T15:39:07
https://api.github.com/repos/huggingface/datasets/issues/1543/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1543", "html_url": "https://github.com/huggingface/datasets/pull/1543", "diff_url": "https://github.com/huggingface/datasets/pull/1543.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1543.patch", "merged_at": null }
true
adding HindEncorp adding Hindi Wikipedia corpus
[ "@lhoestq I have created a new PR by reforking and creating a new branch ", "@rahul-art unfortunately this didn't quite work, here's how you can try again:\r\n- `git checkout master` to go back to the main branch\r\n- `git pull upstream master` to make it up to date\r\n- `git checkout -b add_hind_encorp` to creat...
https://api.github.com/repos/huggingface/datasets/issues/1542
1,542
fix typo readme
closed
2020-12-13T14:41:22
https://api.github.com/repos/huggingface/datasets/issues/1542/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1542", "html_url": "https://github.com/huggingface/datasets/pull/1542", "diff_url": "https://github.com/huggingface/datasets/pull/1542.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1542.patch", "merged_at": "2020-12-13T17:16...
true
fix typo readme
[]
https://api.github.com/repos/huggingface/datasets/issues/1541
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
https://api.github.com/repos/huggingface/datasets/issues/1541/comments
null
false
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 t...
[ "could you tell me how I can avoid download, by pre-downloading the data first, put them in a folder so the code does not try to redownload? could you tell me the path to put the downloaded data, and how to do it? thanks\r\n@lhoestq ", "Does your instance have an internet connection ?\r\n\r\nIf you don't have an ...
https://api.github.com/repos/huggingface/datasets/issues/1540
1,540
added TTC4900: A Benchmark Data for Turkish Text Categorization dataset
This PR adds the TTC4900 dataset which is a Turkish Text Categorization dataset by me and @basakbuluz. Homepage: [https://www.kaggle.com/savasy/ttc4900](https://www.kaggle.com/savasy/ttc4900) Point of Contact: [Savaş Yıldırım](mailto:savasy@gmail.com) / @savasy
closed
2020-12-13T12:43:33
https://api.github.com/repos/huggingface/datasets/issues/1540/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1540", "html_url": "https://github.com/huggingface/datasets/pull/1540", "diff_url": "https://github.com/huggingface/datasets/pull/1540.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1540.patch", "merged_at": "2020-12-18T10:09...
true
added TTC4900: A Benchmark Data for Turkish Text Categorization dataset This PR adds the TTC4900 dataset which is a Turkish Text Categorization dataset by me and @basakbuluz. Homepage: [https://www.kaggle.com/savasy/ttc4900](https://www.kaggle.com/savasy/ttc4900) Point of Contact: [Savaş Yıldırım](mailto:savasy@gm...
[ "@lhoestq, can you help with creating dummy_data?\r\n", "Hi @yavuzKomecoglu did you manage to build the dummy data ?", "> Hi @yavuzKomecoglu did you manage to build the dummy data ?\r\n\r\nHi, sorry for the return. I've created dummy_data.zip manually.", "> Nice thank you !\r\n> \r\n> Before we merge can you ...
https://api.github.com/repos/huggingface/datasets/issues/1539
1,539
Added Wiki Asp dataset
Hello, I have added Wiki Asp dataset. Please review the PR.
closed
2020-12-13T12:18:34
https://api.github.com/repos/huggingface/datasets/issues/1539/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1539", "html_url": "https://github.com/huggingface/datasets/pull/1539", "diff_url": "https://github.com/huggingface/datasets/pull/1539.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1539.patch", "merged_at": null }
true
Added Wiki Asp dataset Hello, I have added Wiki Asp dataset. Please review the PR.
[ "> Awesome thank you !\r\n> \r\n> I just left one comment.\r\n> \r\n> Also it looks like the dummy_data.zip files are quite big (around 500KB each)\r\n> Can you try to reduce their sizes please ? Ideally they should be <20KB each\r\n> \r\n> To do so feel free to take a look inside them and in the jsonl files only k...
https://api.github.com/repos/huggingface/datasets/issues/1538
1,538
tweets_hate_speech_detection
closed
2020-12-13T07:37:53
https://api.github.com/repos/huggingface/datasets/issues/1538/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1538", "html_url": "https://github.com/huggingface/datasets/pull/1538", "diff_url": "https://github.com/huggingface/datasets/pull/1538.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1538.patch", "merged_at": null }
true
tweets_hate_speech_detection
[ "Hi @lhoestq I have added this new dataset for tweet's hate speech detection. \r\n\r\nPlease if u could review it. \r\n\r\nThank you", "Hi @darshan-gandhi have you add a chance to take a look at my suggestions ?\r\n\r\nFeel free to ping me when you're ready for the final review", "Closing in favor of #1607" ]
https://api.github.com/repos/huggingface/datasets/issues/1537
1,537
added ohsumed
UPDATE2: PR passed all tests. Now waiting for review. UPDATE: pushed a new version. cross fingers that it should complete all the tests! :) If it passes all tests then it's not a draft version. This is a draft version
closed
2020-12-13T06:58:23
https://api.github.com/repos/huggingface/datasets/issues/1537/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1537", "html_url": "https://github.com/huggingface/datasets/pull/1537", "diff_url": "https://github.com/huggingface/datasets/pull/1537.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1537.patch", "merged_at": "2020-12-17T18:28...
true
added ohsumed UPDATE2: PR passed all tests. Now waiting for review. UPDATE: pushed a new version. cross fingers that it should complete all the tests! :) If it passes all tests then it's not a draft version. This is a draft version
[]
https://api.github.com/repos/huggingface/datasets/issues/1536
1,536
Add Hippocorpus Dataset
closed
2020-12-13T06:13:02
https://api.github.com/repos/huggingface/datasets/issues/1536/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1536", "html_url": "https://github.com/huggingface/datasets/pull/1536", "diff_url": "https://github.com/huggingface/datasets/pull/1536.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1536.patch", "merged_at": "2020-12-15T13:40...
true
Add Hippocorpus Dataset
[ "> Before we merge can you try to reduce the size of the dummy_data.zip file ?\r\n> \r\n> To do so feel free to only keep a few lines of the csv files ans also remove unnecessary chunks of texts (for example keep only the first sentences of a story).\r\n\r\nHi @lhoestq, I have reduced the size of the dummy_data.zip...
https://api.github.com/repos/huggingface/datasets/issues/1535
1,535
Adding Igbo monolingual dataset
This PR adds the Igbo Monolingual dataset. Data: https://github.com/IgnatiusEzeani/IGBONLP/tree/master/ig_monoling Paper: https://arxiv.org/abs/2004.00648
closed
2020-12-13T05:16:37
https://api.github.com/repos/huggingface/datasets/issues/1535/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1535", "html_url": "https://github.com/huggingface/datasets/pull/1535", "diff_url": "https://github.com/huggingface/datasets/pull/1535.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1535.patch", "merged_at": "2020-12-21T14:39...
true
Adding Igbo monolingual dataset This PR adds the Igbo Monolingual dataset. Data: https://github.com/IgnatiusEzeani/IGBONLP/tree/master/ig_monoling Paper: https://arxiv.org/abs/2004.00648
[ "@lhoestq Thank you for the review. I have made all the changes you mentioned. PTAL! " ]
https://api.github.com/repos/huggingface/datasets/issues/1534
1,534
adding dataset for diplomacy detection
closed
2020-12-13T04:38:43
https://api.github.com/repos/huggingface/datasets/issues/1534/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1534", "html_url": "https://github.com/huggingface/datasets/pull/1534", "diff_url": "https://github.com/huggingface/datasets/pull/1534.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1534.patch", "merged_at": null }
true
adding dataset for diplomacy detection
[ "Requested changes made and new PR submitted here: https://github.com/huggingface/datasets/pull/1580 " ]
https://api.github.com/repos/huggingface/datasets/issues/1533
1,533
add id_panl_bppt, a parallel corpus for en-id
Parallel Text Corpora for English - Indonesian
closed
2020-12-13T03:11:27
https://api.github.com/repos/huggingface/datasets/issues/1533/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1533", "html_url": "https://github.com/huggingface/datasets/pull/1533", "diff_url": "https://github.com/huggingface/datasets/pull/1533.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1533.patch", "merged_at": "2020-12-21T10:40...
true
add id_panl_bppt, a parallel corpus for en-id Parallel Text Corpora for English - Indonesian
[ "Hi @lhoestq, thanks for the review. I will have a look and update it accordingly.", "Strange error message :-)\r\n\r\n```\r\n> tf_context = tf.python.context.context() # eager mode context\r\nE AttributeError: module 'tensorflow' has no attribute 'python'\r\n```\r\n" ]
https://api.github.com/repos/huggingface/datasets/issues/1532
1,532
adding hate-speech-and-offensive-language
closed
2020-12-13T02:16:31
https://api.github.com/repos/huggingface/datasets/issues/1532/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1532", "html_url": "https://github.com/huggingface/datasets/pull/1532", "diff_url": "https://github.com/huggingface/datasets/pull/1532.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1532.patch", "merged_at": null }
true
adding hate-speech-and-offensive-language
[ "made suggested changes and a new PR created here : https://github.com/huggingface/datasets/pull/1597" ]
https://api.github.com/repos/huggingface/datasets/issues/1531
1,531
adding hate-speech-and-offensive-language
closed
2020-12-13T01:59:07
https://api.github.com/repos/huggingface/datasets/issues/1531/comments
{ "url": "https://api.github.com/repos/huggingface/datasets/pulls/1531", "html_url": "https://github.com/huggingface/datasets/pull/1531", "diff_url": "https://github.com/huggingface/datasets/pull/1531.diff", "patch_url": "https://github.com/huggingface/datasets/pull/1531.patch", "merged_at": null }
true
adding hate-speech-and-offensive-language
[]