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
6,661
Import error on Google Colab
### Describe the bug Cannot be imported on Google Colab, the import throws the following error: ValueError: pyarrow.lib.IpcWriteOptions size changed, may indicate binary incompatibility. Expected 88 from C header, got 72 from PyObject ### Steps to reproduce the bug 1. `! pip install -U datasets` 2. `import dataset...
CLOSED
2024-02-13T13:12:40
2024-02-25T16:37:54
2024-02-14T08:04:47
https://github.com/huggingface/datasets/issues/6661
kithogue
4
[]
6,657
Release not pushed to conda channel
### Describe the bug The github actions step to publish the release 2.17.0 to conda channel has failed due to expired token. Can some one please update the anaconda token rerun the failed action? @albertvillanova ? ![image](https://github.com/huggingface/datasets/assets/7138162/1b56ad3d-7643-4778-9cce-4bf531717700...
CLOSED
2024-02-11T20:05:17
2024-03-06T15:06:22
2024-03-06T15:06:22
https://github.com/huggingface/datasets/issues/6657
atulsaurav
5
[]
6,656
Error when loading a big local json file
### Describe the bug When trying to load big json files from a local directory, `load_dataset` throws the following error ``` Traceback (most recent call last): File "/miniconda3/envs/conda-env/lib/python3.10/site-packages/datasets/builder.py", line 1989, in _prepare_split_single writer.write_table(table) ...
OPEN
2024-02-09T15:14:21
2024-11-29T10:06:57
null
https://github.com/huggingface/datasets/issues/6656
Riccorl
2
[]
6,655
Cannot load the dataset go_emotions
### Describe the bug When I run the following code I get an exception; `go_emotions = load_dataset("go_emotions")` > AttributeError Traceback (most recent call last) Cell In[6], [line 1](vscode-notebook-cell:?execution_count=6&line=1) ----> [1](vscode-notebook-cell:?execution_count=6&l...
OPEN
2024-02-09T12:15:39
2024-02-12T09:35:55
null
https://github.com/huggingface/datasets/issues/6655
arame
4
[]
6,654
Batched dataset map throws exception that cannot cast fixed length array to Sequence
### Describe the bug I encountered a TypeError when batch processing a dataset with Sequence features in datasets package version 2.16.1. The error arises from a mismatch in handling fixed-size list arrays during the map function execution. Debugging pinpoints the issue to an if-statement in datasets/table.py, line 20...
CLOSED
2024-02-09T11:23:19
2024-02-12T08:26:53
2024-02-12T08:26:53
https://github.com/huggingface/datasets/issues/6654
keesjandevries
2
[]
6,651
Slice splits support for datasets.load_from_disk
### Feature request Support for slice splits in `datasets.load_from_disk`, similar to how it's already supported for `datasets.load_dataset`. ### Motivation Slice splits are convienient in a numer of cases - adding support to `datasets.load_from_disk` would make working with local datasets easier and homogeniz...
OPEN
2024-02-09T08:00:21
2024-06-14T14:42:46
null
https://github.com/huggingface/datasets/issues/6651
mhorlacher
0
[ "enhancement" ]
6,650
AttributeError: 'InMemoryTable' object has no attribute '_batches'
### Describe the bug ``` Traceback (most recent call last): File "finetune.py", line 103, in <module> main(args) File "finetune.py", line 45, in main data_tokenized = data.map(partial(funcs.tokenize_function, tokenizer, File "/opt/conda/envs/ptca/lib/python3.8/site-packages/datasets/dataset_dict....
OPEN
2024-02-08T17:11:26
2024-02-21T00:34:41
null
https://github.com/huggingface/datasets/issues/6650
matsuobasho
3
[]
6,645
Support fsspec 2024.2
Support fsspec 2024.2. First, we should address: - #6644
CLOSED
2024-02-07T12:45:29
2024-02-29T15:12:19
2024-02-29T15:12:19
https://github.com/huggingface/datasets/issues/6645
albertvillanova
1
[ "enhancement" ]
6,644
Support fsspec 2023.12
Support fsspec 2023.12 by handling previous and new glob behavior.
CLOSED
2024-02-07T12:44:39
2024-02-29T15:12:18
2024-02-29T15:12:18
https://github.com/huggingface/datasets/issues/6644
albertvillanova
1
[ "enhancement" ]
6,643
Faiss GPU index cannot be serialised when passed to trainer
### Describe the bug I am working on a retrieval project and encountering I have encountered two issues in the hugging face faiss integration: 1. I am trying to pass in a dataset with a faiss index to the Huggingface trainer. The code works for a cpu faiss index, but doesn't for a gpu one, getting error: ``` ...
OPEN
2024-02-06T16:41:00
2024-02-15T10:29:32
null
https://github.com/huggingface/datasets/issues/6643
rubenweitzman
3
[]
6,642
Differently dataset object saved than it is loaded.
### Describe the bug Differently sized object is saved than it is loaded. ### Steps to reproduce the bug Hi, I save dataset in a following way: ``` dataset = load_dataset("json", data_files={ "train": os.path.join(input_folder, f"{task_met...
CLOSED
2024-02-05T17:28:57
2024-02-06T09:50:19
2024-02-06T09:50:19
https://github.com/huggingface/datasets/issues/6642
MFajcik
2
[]
6,641
unicodedecodeerror: 'utf-8' codec can't decode byte 0xac in position 25: invalid start byte
### Describe the bug unicodedecodeerror: 'utf-8' codec can't decode byte 0xac in position 25: invalid start byte ### Steps to reproduce the bug ``` import sys sys.getdefaultencoding() 'utf-8' from datasets import load_dataset print(f"Train dataset size: {len(dataset['train'])}") print(f"Test datase...
CLOSED
2024-02-04T08:49:31
2024-02-06T09:26:07
2024-02-06T09:11:45
https://github.com/huggingface/datasets/issues/6641
Hughhuh
1
[]
6,640
Sign Language Support
### Feature request Currently, there are only several Sign Language labels, I would like to propose adding all the Signed Languages as new labels which are described in this ISO standard: https://www.evertype.com/standards/iso639/sign-language.html ### Motivation Datasets currently only have labels for several signe...
OPEN
2024-02-02T21:54:51
2024-02-02T21:54:51
null
https://github.com/huggingface/datasets/issues/6640
Merterm
0
[ "enhancement" ]
6,638
Cannot download wmt16 dataset
### Describe the bug As of this morning (PST) 2/1/2024, seeing the wmt16 dataset is missing from opus , could you suggest an alternative? ``` Downloading data files: 0%| | 0/4 [00:00<?, ?it/s]Tra...
CLOSED
2024-02-01T19:41:42
2024-02-01T20:07:29
2024-02-01T20:07:29
https://github.com/huggingface/datasets/issues/6638
vidyasiv
1
[]
6,637
'with_format' is extremely slow when used together with 'interleave_datasets' or 'shuffle' on IterableDatasets
### Describe the bug If you: 1. Interleave two iterable datasets together with the interleave_datasets function, or shuffle an iterable dataset 2. Set the output format to torch tensors with .with_format('torch') Then iterating through the dataset becomes over 100x slower than it is if you don't apply the torch...
CLOSED
2024-02-01T17:16:54
2025-09-18T16:37:11
2025-09-18T16:37:11
https://github.com/huggingface/datasets/issues/6637
tobycrisford
7
[]
6,624
How to download the laion-coco dataset
The laion coco dataset is not available now. How to download it https://huggingface.co/datasets/laion/laion-coco
CLOSED
2024-01-28T03:56:05
2024-02-06T09:43:31
2024-02-06T09:43:31
https://github.com/huggingface/datasets/issues/6624
vanpersie32
1
[]
6,623
streaming datasets doesn't work properly with multi-node
### Feature request Let’s say I have a dataset with 5 samples with values [1, 2, 3, 4, 5], with 2 GPUs (for DDP) and batch size of 2. This dataset is an `IterableDataset` since I am streaming it. Now I split the dataset using `split_dataset_by_node` to ensure it doesn’t get repeated. And since it’s already splitt...
OPEN
2024-01-27T23:46:13
2025-12-08T12:26:20
null
https://github.com/huggingface/datasets/issues/6623
rohitgr7
29
[ "enhancement" ]
6,622
multi-GPU map does not work
### Describe the bug Here is the code for single-GPU processing: https://pastebin.com/bfmEeK2y Here is the code for multi-GPU processing: https://pastebin.com/gQ7i5AQy Here is the video showing that the multi-GPU mapping does not work as expected (there are so many things wrong here, it's better to watch the 3-min...
CLOSED
2024-01-27T20:06:08
2024-02-08T11:18:21
2024-02-08T11:18:21
https://github.com/huggingface/datasets/issues/6622
kopyl
1
[]
6,621
deleted
...
CLOSED
2024-01-27T16:59:58
2024-01-27T17:14:43
2024-01-27T17:14:43
https://github.com/huggingface/datasets/issues/6621
kopyl
0
[]
6,620
wiki_dpr.py error (ID mismatch between lines {id} and vector {vec_id}
### Describe the bug I'm trying to run a rag example, and the dataset is wiki_dpr. wiki_dpr download and extracting have been completed successfully. However, at the generating train split stage, an error from wiki_dpr.py keeps popping up. Especially in "_generate_examples" : 1. The following error occurs in the...
CLOSED
2024-01-27T01:00:09
2024-02-06T09:40:19
2024-02-06T09:40:19
https://github.com/huggingface/datasets/issues/6620
kiehls90
1
[]
6,618
While importing load_dataset from datasets
### Describe the bug cannot import name 'DEFAULT_CIPHERS' from 'urllib3.util.ssl_' this is the error i received ### Steps to reproduce the bug from datasets import load_dataset ### Expected behavior No errors ### Environment info python 3.11.5
CLOSED
2024-01-26T09:21:57
2024-07-23T09:31:07
2024-02-06T09:25:54
https://github.com/huggingface/datasets/issues/6618
suprith-hub
5
[]
6,615
...
...
CLOSED
2024-01-24T19:37:03
2024-01-24T19:42:30
2024-01-24T19:40:11
https://github.com/huggingface/datasets/issues/6615
ftkeys
1
[]
6,614
`datasets/downloads` cleanup tool
### Feature request Splitting off https://github.com/huggingface/huggingface_hub/issues/1997 - currently `huggingface-cli delete-cache` doesn't take care of cleaning `datasets` temp files e.g. I discovered having millions of files under `datasets/downloads` cache, I had to do: ``` sudo find /data/huggingface/...
OPEN
2024-01-24T18:52:10
2024-01-24T18:55:09
null
https://github.com/huggingface/datasets/issues/6614
stas00
0
[ "enhancement" ]
6,612
cnn_dailymail repeats itself
### Describe the bug When I try to load `cnn_dailymail` dataset, it takes longer than usual and when I checked the dataset it's 3x bigger than it's supposed to be. Check https://huggingface.co/datasets/cnn_dailymail: it says 287k rows for train. But when I check length of train split it says 861339. Also I che...
CLOSED
2024-01-24T11:38:25
2024-02-01T08:14:50
2024-02-01T08:14:50
https://github.com/huggingface/datasets/issues/6612
KeremZaman
1
[]
6,611
`load_from_disk` with large dataset from S3 runs into `botocore.exceptions.ClientError`
### Describe the bug When loading a large dataset (>1000GB) from S3 I run into the following error: ``` Traceback (most recent call last): File "/home/alp/.local/lib/python3.10/site-packages/s3fs/core.py", line 113, in _error_wrapper return await func(*args, **kwargs) File "/home/alp/.local/lib/python3....
OPEN
2024-01-23T12:37:57
2024-01-23T12:37:57
null
https://github.com/huggingface/datasets/issues/6611
zotroneneis
0
[]
6,610
cast_column to Sequence(subfeatures_dict) has err
### Describe the bug I am working with the following demo code: ``` from datasets import load_dataset from datasets.features import Sequence, Value, ClassLabel, Features ais_dataset = load_dataset("/data/ryan.gao/ais_dataset_cache/raw/1978/") ais_dataset = ais_dataset["train"] def add_class(example): ...
CLOSED
2024-01-23T09:32:32
2024-01-25T02:15:23
2024-01-25T02:15:23
https://github.com/huggingface/datasets/issues/6610
neiblegy
2
[]
6,609
Wrong path for cache directory in offline mode
### Describe the bug Dear huggingfacers, I'm trying to use a subset of the-stack dataset. When I run the command the first time ``` dataset = load_dataset( path='bigcode/the-stack', data_dir='data/fortran', split='train' ) ``` It downloads the files and caches them normally. Nevertheless, ...
CLOSED
2024-01-23T01:47:19
2024-02-06T17:21:25
2024-02-06T17:21:25
https://github.com/huggingface/datasets/issues/6609
je-santos
5
[]
6,605
ELI5 no longer available, but referenced in example code
Here, an example code is given: https://huggingface.co/docs/transformers/tasks/language_modeling This code + article references the ELI5 dataset. ELI5 is no longer available, as the ELI5 dataset page states: https://huggingface.co/datasets/eli5 "Defunct: Dataset "eli5" is defunct and no longer accessible due to u...
CLOSED
2024-01-19T10:21:52
2024-02-01T17:58:23
2024-02-01T17:58:22
https://github.com/huggingface/datasets/issues/6605
drdsgvo
1
[]
6,604
Transform fingerprint collisions due to setting fixed random seed
### Describe the bug The transform fingerprinting logic relies on the `random` library for random bits when the function is not hashable (e.g. bound methods as used in `trl`: https://github.com/huggingface/trl/blob/main/trl/trainer/dpo_trainer.py#L356). This causes collisions when the training code sets a fixed random...
CLOSED
2024-01-19T06:32:25
2024-01-26T15:05:35
2024-01-26T15:05:35
https://github.com/huggingface/datasets/issues/6604
normster
2
[]
6,603
datasets map `cache_file_name` does not work
### Describe the bug In the documentation `datasets.Dataset.map` arg `cache_file_name` is said to be a string, but it doesn't work. ### Steps to reproduce the bug 1. pick a dataset 2. write a map function 3. do `ds.map(..., cache_file_name='some_filename')` 4. it crashes ### Expected behavior It will tell you t...
OPEN
2024-01-18T23:08:30
2024-01-28T04:01:15
null
https://github.com/huggingface/datasets/issues/6603
ChenchaoZhao
2
[]
6,602
Index error when data is large
### Describe the bug At `save_to_disk` step, the `max_shard_size` by default is `500MB`. However, one row of the dataset might be larger than `500MB` then the saving will throw an index error. Without looking at the source code, the bug is due to wrong calculation of number of shards which i think is `total_size / m...
OPEN
2024-01-18T23:00:47
2025-04-16T04:13:01
null
https://github.com/huggingface/datasets/issues/6602
ChenchaoZhao
1
[]
6,600
Loading CSV exported dataset has unexpected format
### Describe the bug I wanted to be able to save a HF dataset for translations and load it again in another script, but I'm a bit confused with the documentation and the result I've got so I'm opening this issue to ask if this behavior is as expected. ### Steps to reproduce the bug The documentation I've mainly cons...
OPEN
2024-01-18T14:48:27
2024-01-23T14:42:32
null
https://github.com/huggingface/datasets/issues/6600
OrianeN
2
[]
6,599
Easy way to segment into 30s snippets given an m4a file and a vtt file
### Feature request Uploading datasets is straightforward thanks to the ability to push Audio to hub. However, it would be nice if the data (text and audio) could be segmented when being pushed (if not possible already). ### Motivation It's easy to create a vtt file from an audio file. If there could be auto-segment...
CLOSED
2024-01-17T17:51:40
2024-01-23T10:42:17
2024-01-22T15:35:49
https://github.com/huggingface/datasets/issues/6599
RonanKMcGovern
2
[ "enhancement" ]
6,598
Unexpected keyword argument 'hf' when downloading CSV dataset from S3
### Describe the bug I receive this error message when using `load_dataset` with "csv" path and `dataset_files=s3://...`: ``` TypeError: Session.__init__() got an unexpected keyword argument 'hf' ``` I found a similar issue here: https://stackoverflow.com/questions/77596258/aws-issue-load-dataset-from-s3-fails-w...
CLOSED
2024-01-16T15:16:01
2025-01-31T15:35:33
2024-07-23T14:30:10
https://github.com/huggingface/datasets/issues/6598
dguenms
8
[]
6,597
Dataset.push_to_hub of a canonical dataset creates an additional dataset under the user namespace
While using `Dataset.push_to_hub` of a canonical dataset, an additional dataset was created under my user namespace. ## Steps to reproduce the bug The command: ```python commit_info = ds.push_to_hub( "caner", config_name="default", commit_message="Convert dataset to Parquet", commit_descriptio...
CLOSED
2024-01-16T11:27:07
2024-02-05T12:29:37
2024-02-05T12:29:37
https://github.com/huggingface/datasets/issues/6597
albertvillanova
6
[ "bug" ]
6,595
Loading big dataset raises pyarrow.lib.ArrowNotImplementedError 2
### Describe the bug I'm aware of the issue #5695 . I'm using a modified SDXL trainer: https://github.com/kopyl/diffusers/blob/5e70f604155aeecee254a5c63c5e4236ad4a0d3d/examples/text_to_image/train_text_to_image_sdxl.py#L1027C16-L1027C16 So i 1. Map dataset 2. Save to disk 3. Try to upload: ``` import data...
CLOSED
2024-01-16T02:03:09
2024-01-27T18:26:33
2024-01-26T02:28:32
https://github.com/huggingface/datasets/issues/6595
kopyl
14
[]
6,594
IterableDataset sharding logic needs improvement
### Describe the bug The sharding of IterableDatasets with respect to distributed and dataloader worker processes appears problematic with significant performance traps and inconsistencies wrt to distributed train processes vs worker processes. Splitting across num_workers (per train process loader processes) and...
OPEN
2024-01-15T22:22:36
2025-11-10T14:55:20
null
https://github.com/huggingface/datasets/issues/6594
rwightman
7
[]
6,592
Logs are delayed when doing .map when `docker logs`
### Describe the bug When I run my SD training in a Docker image and then listen to logs like `docker logs train -f`, the progress bar is delayed. It's updating every few percent. When you have a large dataset that has to be mapped (like 1+ million samples), it's crucial to see the updates in real-time, not every co...
CLOSED
2024-01-15T17:05:21
2024-02-12T17:35:21
2024-02-12T17:35:21
https://github.com/huggingface/datasets/issues/6592
kopyl
1
[]
6,591
The datasets models housed in Dropbox can't support a lot of users downloading them
### Describe the bug I'm using the datasets ``` from datasets import load_dataset, Audio dataset = load_dataset("PolyAI/minds14", name="en-US", split="train") ``` And it seems that sometimes when I imagine a lot of users are accessing the same resources, the Dropbox host fails: `raise ConnectionError(...
CLOSED
2024-01-15T16:43:38
2024-01-22T23:18:09
2024-01-22T23:18:09
https://github.com/huggingface/datasets/issues/6591
RDaneelOlivav
1
[]
6,590
Feature request: Multi-GPU dataset mapping for SDXL training
### Feature request We need to speed up SDXL dataset pre-process. Please make it possible to use multiple GPUs for the [official SDXL trainer](https://github.com/huggingface/diffusers/blob/main/examples/text_to_image/train_text_to_image_sdxl.py) :) ### Motivation Pre-computing 3 million of images takes around ...
OPEN
2024-01-15T13:06:06
2024-01-15T13:07:07
null
https://github.com/huggingface/datasets/issues/6590
kopyl
0
[ "enhancement" ]
6,589
After `2.16.0` version, there are `PermissionError` when users use shared cache_dir
### Describe the bug - We use shared `cache_dir` using `HF_HOME="{shared_directory}"` - After dataset version 2.16.0, datasets uses `filelock` package for file locking #6445 - But, `filelock` package make `.lock` file with `644` permission - Dataset is not available to other users except the user who created the ...
CLOSED
2024-01-15T06:46:27
2024-02-02T07:55:38
2024-01-30T15:28:38
https://github.com/huggingface/datasets/issues/6589
minhopark-neubla
2
[]
6,588
fix os.listdir return name is empty string
### Describe the bug xlistdir return name is empty string Overloaded os.listdir ### Steps to reproduce the bug ```python from datasets.download.streaming_download_manager import xjoin from datasets.download.streaming_download_manager import xlistdir config = DownloadConfig(storage_options=options) manger = Str...
CLOSED
2024-01-15T05:34:36
2024-01-24T10:08:29
2024-01-24T10:08:29
https://github.com/huggingface/datasets/issues/6588
d710055071
0
[]
6,585
losing DatasetInfo in Dataset.map when num_proc > 1
### Describe the bug Hello and thanks for developing this package! When I process a Dataset with the map function using multiple processors some set attributes of the DatasetInfo get lost and are None in the resulting Dataset. ### Steps to reproduce the bug ```python from datasets import Dataset, DatasetInfo...
OPEN
2024-01-12T13:39:19
2024-01-12T14:08:24
null
https://github.com/huggingface/datasets/issues/6585
JochenSiegWork
2
[]
6,584
np.fromfile not supported
How to do np.fromfile to use it like np.load ```python def xnumpy_fromfile(filepath_or_buffer, *args, download_config: Optional[DownloadConfig] = None, **kwargs): import numpy as np if hasattr(filepath_or_buffer, "read"): return np.fromfile(filepath_or_buffer, *args, **kwargs) else: ...
OPEN
2024-01-12T09:46:17
2024-01-15T05:20:50
null
https://github.com/huggingface/datasets/issues/6584
d710055071
6
[]
6,580
dataset cache only stores one config of the dataset in parquet dir, and uses that for all other configs resulting in showing same data in all configs.
### Describe the bug ds = load_dataset("ai2_arc", "ARC-Easy"), i have tried to force redownload, delete cache and changing the cache dir. ### Steps to reproduce the bug dataset = [] dataset_name = "ai2_arc" possible_configs = [ 'ARC-Challenge', 'ARC-Easy' ] for config in possible_configs: data...
CLOSED
2024-01-11T03:14:18
2024-01-20T12:46:16
2024-01-20T12:46:16
https://github.com/huggingface/datasets/issues/6580
kartikgupta321
0
[]
6,579
Unable to load `eli5` dataset with streaming
### Describe the bug Unable to load `eli5` dataset with streaming. ### Steps to reproduce the bug This fails with FileNotFoundError: https://files.pushshift.io/reddit/submissions ``` from datasets import load_dataset load_dataset("eli5", streaming=True) ``` This works correctly. ``` from datasets import lo...
CLOSED
2024-01-10T23:44:20
2024-01-11T09:19:18
2024-01-11T09:19:17
https://github.com/huggingface/datasets/issues/6579
haok1402
1
[]
6,577
502 Server Errors when streaming large dataset
### Describe the bug When streaming a [large ASR dataset](https://huggingface.co/datasets/sanchit-gandhi/concatenated-train-set) from the Hug (~3TB) I often encounter 502 Server Errors seemingly randomly during streaming: ``` huggingface_hub.utils._errors.HfHubHTTPError: 502 Server Error: Bad Gateway for url: http...
CLOSED
2024-01-10T16:59:36
2024-02-12T11:46:03
2024-01-15T16:05:44
https://github.com/huggingface/datasets/issues/6577
sanchit-gandhi
6
[ "streaming" ]
6,576
document page 404 not found after redirection
### Describe the bug The redirected page encountered 404 not found. ### Steps to reproduce the bug 1. In this tutorial: https://huggingface.co/learn/nlp-course/chapter5/4?fw=pt original md: https://github.com/huggingface/course/blob/2c733c2246b8b7e0e6f19a9e5d15bb12df43b2a3/chapters/en/chapter5/4.mdx#L49 `...
CLOSED
2024-01-10T06:48:14
2024-01-17T14:01:31
2024-01-17T14:01:31
https://github.com/huggingface/datasets/issues/6576
annahung31
1
[]
6,571
Make DatasetDict.column_names return a list instead of dict
Currently, `DatasetDict.column_names` returns a dict, with each split name as keys and the corresponding list of column names as values. However, by construction, all splits have the same column names. I think it makes more sense to return a single list with the column names, which is the same for all the split k...
OPEN
2024-01-09T10:45:17
2025-09-22T08:47:53
null
https://github.com/huggingface/datasets/issues/6571
albertvillanova
1
[ "enhancement" ]
6,570
No online docs for 2.16 release
We do not have the online docs for the latest minor release 2.16 (2.16.0 nor 2.16.1). In the online docs, the latest version appearing is 2.15.0: https://huggingface.co/docs/datasets/index ![Screenshot from 2024-01-09 08-43-08](https://github.com/huggingface/datasets/assets/8515462/83613222-867f-41f4-8833-7a4a765...
CLOSED
2024-01-09T07:43:30
2024-01-09T16:45:50
2024-01-09T16:45:50
https://github.com/huggingface/datasets/issues/6570
albertvillanova
7
[ "bug", "documentation" ]
6,569
WebDataset ignores features defined in YAML or passed to load_dataset
we should not override if the features exist already https://github.com/huggingface/datasets/blob/d26abadce0b884db32382b92422d8a6aa997d40a/src/datasets/packaged_modules/webdataset/webdataset.py#L78-L85
CLOSED
2024-01-08T11:24:21
2024-01-11T16:11:06
2024-01-11T16:11:05
https://github.com/huggingface/datasets/issues/6569
lhoestq
0
[]
6,568
keep_in_memory=True does not seem to work
UPD: [Fixed](https://github.com/huggingface/datasets/issues/6568#issuecomment-1880817794) . But a new issue came up :(
OPEN
2024-01-08T08:03:58
2024-01-13T04:53:04
null
https://github.com/huggingface/datasets/issues/6568
kopyl
6
[]
6,567
AttributeError: 'str' object has no attribute 'to'
### Describe the bug ``` -------------------------------------------------------------------------- AttributeError Traceback (most recent call last) [<ipython-input-6-80c6086794e8>](https://localhost:8080/#) in <cell line: 10>() 8 report_to="wandb") 9 ---> 10 trainer =...
CLOSED
2024-01-08T06:40:21
2024-01-08T11:56:19
2024-01-08T10:03:17
https://github.com/huggingface/datasets/issues/6567
andysingal
3
[]
6,566
I train controlnet_sdxl in bf16 datatype, got unsupported ERROR in datasets
### Describe the bug ``` Traceback (most recent call last): File "train_controlnet_sdxl.py", line 1252, in <module> main(args) File "train_controlnet_sdxl.py", line 1013, in main train_dataset = train_dataset.map(compute_embeddings_fn, batched=True, new_fingerprint=new_fingerprint) File "/home/mini...
CLOSED
2024-01-08T02:37:03
2024-06-02T14:24:39
2024-05-17T09:40:14
https://github.com/huggingface/datasets/issues/6566
HelloWorldBeginner
1
[ "bug" ]
6,565
`drop_last_batch=True` for IterableDataset map function is ignored with multiprocessing DataLoader
### Describe the bug Scenario: - Interleaving two iterable datasets of unequal lengths (`all_exhausted`), followed by a batch mapping with batch size 2 to effectively merge the two datasets and get a sample from each dataset in a single batch, with `drop_last_batch=True` to skip the last batch in case it doesn't ha...
CLOSED
2024-01-07T02:46:50
2025-03-08T09:46:05
2024-01-11T16:10:31
https://github.com/huggingface/datasets/issues/6565
naba89
2
[]
6,564
`Dataset.filter` missing `with_rank` parameter
### Describe the bug The issue shall be open: https://github.com/huggingface/datasets/issues/6435 When i try to pass `with_rank` to `Dataset.filter()`, i get this: `Dataset.filter() got an unexpected keyword argument 'with_rank'` ### Steps to reproduce the bug Run notebook: https://colab.research.google.com...
CLOSED
2024-01-06T23:48:13
2024-01-29T16:36:55
2024-01-29T16:36:54
https://github.com/huggingface/datasets/issues/6564
kopyl
2
[]
6,563
`ImportError`: cannot import name 'insecure_hashlib' from 'huggingface_hub.utils' (.../huggingface_hub/utils/__init__.py)
### Describe the bug Yep its not [there](https://github.com/huggingface/huggingface_hub/blob/main/src/huggingface_hub/utils/__init__.py) anymore. ```text + python /home/trainer/sft_train.py --model_name cognitivecomputations/dolphin-2.2.1-mistral-7b --dataset_name wasertech/OneOS --load_in_4bit --use_peft --batch_...
CLOSED
2024-01-06T02:28:54
2024-03-14T02:59:42
2024-01-06T16:13:27
https://github.com/huggingface/datasets/issues/6563
wasertech
7
[]
6,562
datasets.DownloadMode.FORCE_REDOWNLOAD use cache to download dataset features with load_dataset function
### Describe the bug I have updated my dataset by adding a new feature, and push it to the hub. When I want to download it on my machine which contain the old version by using `datasets.load_dataset("your_dataset_name", download_mode=datasets.DownloadMode.FORCE_REDOWNLOAD)` I get an error (paste bellow). Seems that...
OPEN
2024-01-05T19:10:25
2024-01-05T19:10:25
null
https://github.com/huggingface/datasets/issues/6562
LsTam91
0
[]
6,561
Document YAML configuration with "data_dir"
See https://huggingface.co/datasets/uonlp/CulturaX/discussions/15#6597e83f185db94370d6bf50 for reference
OPEN
2024-01-05T14:03:33
2025-08-07T14:57:58
null
https://github.com/huggingface/datasets/issues/6561
severo
6
[ "documentation" ]
6,560
Support Video
### Feature request HF datasets are awesome in supporting text and images. Will be great to see such a support in videos :) ### Motivation Video generation :) ### Your contribution Will probably be limited to raising this feature request ;)
CLOSED
2024-01-04T13:10:58
2024-08-23T09:51:27
2024-08-23T09:51:27
https://github.com/huggingface/datasets/issues/6560
yuvalkirstain
1
[ "duplicate", "enhancement" ]
6,559
Latest version 2.16.1, when load dataset error occurs. ValueError: BuilderConfig 'allenai--c4' not found. Available: ['default']
### Describe the bug python script is: ``` from datasets import load_dataset cache_dir = 'path/to/your/cache/directory' dataset = load_dataset('allenai/c4','allenai--c4', data_files={'train': 'en/c4-train.00000-of-01024.json.gz'}, split='train', use_auth_token=False, cache_dir=cache_dir) ``` the script su...
CLOSED
2024-01-04T07:04:48
2024-04-03T10:40:53
2024-01-05T01:26:25
https://github.com/huggingface/datasets/issues/6559
zhulinJulia24
8
[]
6,558
OSError: image file is truncated (1 bytes not processed) #28323
### Describe the bug ``` --------------------------------------------------------------------------- OSError Traceback (most recent call last) Cell In[24], line 28 23 return example 25 # Filter the dataset 26 # filtered_dataset = dataset.filter(contains_number...
CLOSED
2024-01-04T02:15:13
2024-02-21T00:38:12
2024-02-21T00:38:12
https://github.com/huggingface/datasets/issues/6558
andysingal
1
[]
6,554
Parquet exports are used even if revision is passed
We should not used Parquet exports if `revision` is passed. I think this is a regression.
CLOSED
2024-01-03T11:32:26
2024-02-02T10:35:29
2024-02-02T10:35:29
https://github.com/huggingface/datasets/issues/6554
albertvillanova
1
[ "bug" ]
6,553
Cannot import name 'load_dataset' from .... module ‘datasets’
### Describe the bug use python -m pip install datasets to install ### Steps to reproduce the bug from datasets import load_dataset ### Expected behavior it doesn't work ### Environment info datasets version==2.15.0 python == 3.10.12 linux version I don't know??
CLOSED
2024-01-03T08:18:21
2024-02-21T00:38:24
2024-02-21T00:38:24
https://github.com/huggingface/datasets/issues/6553
ciaoyizhen
2
[]
6,552
Loading a dataset from Google Colab hangs at "Resolving data files".
### Describe the bug Hello, I'm trying to load a dataset from Google Colab but the process hangs at `Resolving data files`: ![image](https://github.com/huggingface/datasets/assets/99779/7175ad85-e571-46ed-9f87-92653985777d) It is happening when the `_get_origin_metadata` definition is invoked: ```python d...
CLOSED
2024-01-03T02:18:17
2024-01-08T10:09:04
2024-01-08T10:09:04
https://github.com/huggingface/datasets/issues/6552
KelSolaar
2
[]
6,549
Loading from hf hub with clearer error message
### Feature request Shouldn't this kinda work ? ``` Dataset.from_json("hf://datasets/HuggingFaceTB/eval_data/resolve/main/eval_data_context_and_answers.json") ``` I got an error ``` File ~/miniconda3/envs/datatrove/lib/python3.10/site-packages/datasets/data_files.py:380, in resolve_pattern(pattern, base_path, al...
OPEN
2024-01-02T13:26:34
2024-01-02T14:06:49
null
https://github.com/huggingface/datasets/issues/6549
thomwolf
1
[ "enhancement" ]
6,548
Skip if a dataset has issues
### Describe the bug Hello everyone, I'm using **load_datasets** from **huggingface** to download the datasets and I'm facing an issue, the download starts but it reaches some state and then fails with the following error: Couldn't reach https://huggingface.co/datasets/wikimedia/wikipedia/resolve/4cb9b0d719291f1a10...
OPEN
2023-12-31T12:41:26
2024-01-02T10:33:17
null
https://github.com/huggingface/datasets/issues/6548
hadianasliwa
1
[]
6,545
`image` column not automatically inferred if image dataset only contains 1 image
### Describe the bug By default, the standard Image Dataset maps out `file_name` to `image` when loading an Image Dataset. However, if the dataset contains only 1 image, this does not take place ### Steps to reproduce the bug Input (dataset with one image `multimodalart/repro_1_image`) ```py from data...
CLOSED
2023-12-30T16:17:29
2024-01-09T13:06:31
2024-01-09T13:06:31
https://github.com/huggingface/datasets/issues/6545
apolinario
0
[]
6,542
Datasets : wikipedia 20220301.en error
### Describe the bug When I used load_dataset to download this data set, the following error occurred. The main problem was that the target data did not exist. ### Steps to reproduce the bug 1.I tried downloading directly. ```python wiki_dataset = load_dataset("wikipedia", "20220301.en") ``` An exception occurre...
CLOSED
2023-12-29T08:34:51
2024-01-02T13:21:06
2024-01-02T13:20:30
https://github.com/huggingface/datasets/issues/6542
ppx666
2
[]
6,541
Dataset not loading successfully.
### Describe the bug When I run down the below code shows this error: AttributeError: module 'numpy' has no attribute '_no_nep50_warning' I also added this issue in transformers library please check out: [link](https://github.com/huggingface/transformers/issues/28099) ### Steps to reproduce the bug ## Reproduction ...
CLOSED
2023-12-29T01:35:47
2024-01-17T00:40:46
2024-01-17T00:40:45
https://github.com/huggingface/datasets/issues/6541
hisushanta
4
[]
6,540
Extreme inefficiency for `save_to_disk` when merging datasets
### Describe the bug Hi, I tried to merge in total 22M sequences of data, where each sequence is of maximum length 2000. I found that merging these datasets and then `save_to_disk` is extremely slow because of flattening the indices. Wondering if you have any suggestions or guidance on this. Thank you very much! ###...
OPEN
2023-12-29T00:44:35
2023-12-30T15:05:48
null
https://github.com/huggingface/datasets/issues/6540
KatarinaYuan
1
[]
6,539
'Repo card metadata block was not found' when loading a pragmeval dataset
### Describe the bug I can't load dataset subsets of 'pragmeval'. The funny thing is I ran the dataset author's [colab notebook](https://colab.research.google.com/drive/1sg--LF4z7XR1wxAOfp0-3d4J6kQ9nj_A?usp=sharing) and it works just fine. I tried to install exactly the same packages that are installed on colab usi...
OPEN
2023-12-28T14:18:25
2023-12-28T14:18:37
null
https://github.com/huggingface/datasets/issues/6539
lambdaofgod
0
[]
6,538
ImportError: cannot import name 'SchemaInferenceError' from 'datasets.arrow_writer' (/opt/conda/lib/python3.10/site-packages/datasets/arrow_writer.py)
### Describe the bug While importing from packages getting the error Code: ``` import os import torch from datasets import load_dataset, Dataset from transformers import ( AutoModelForCausalLM, AutoTokenizer, BitsAndBytesConfig, HfArgumentParser, TrainingArguments, pipeline, ...
CLOSED
2023-12-27T13:31:16
2024-01-03T10:06:47
2024-01-03T10:04:58
https://github.com/huggingface/datasets/issues/6538
Sonali-Behera-TRT
15
[]
6,537
Adding support for netCDF (*.nc) files
### Feature request netCDF (*.nc) is a file format for storing multidimensional scientific data, which is used by packages like `xarray` (labelled multi-dimensional arrays in Python). It would be nice to have native support for netCDF in `datasets`. ### Motivation When uploading *.nc files onto Huggingface Hub throu...
OPEN
2023-12-27T09:27:29
2023-12-27T20:46:53
null
https://github.com/huggingface/datasets/issues/6537
shermansiu
3
[ "enhancement" ]
6,536
datasets.load_dataset raises FileNotFoundError for datasets==2.16.0
### Describe the bug Seems `datasets.load_dataset` raises FileNotFoundError for some hub datasets with the latest `datasets==2.16.0` ### Steps to reproduce the bug For example `pip install datasets==2.16.0` then ```python import datasets datasets.load_dataset("wentingzhao/anthropic-hh-first-prompt", cache_di...
CLOSED
2023-12-27T03:15:48
2023-12-30T18:58:04
2023-12-30T15:54:00
https://github.com/huggingface/datasets/issues/6536
ArvinZhuang
2
[]
6,535
IndexError: Invalid key: 47682 is out of bounds for size 0 while using PEFT
### Describe the bug I am trying to fine-tune the t5 model on the paraphrasing task. While running the same code without- model = get_peft_model(model, config) the model trains without any issues. However, using the model returned from get_peft_model raises the following error due to datasets- IndexError: Inv...
OPEN
2023-12-26T10:14:33
2024-02-05T08:42:31
null
https://github.com/huggingface/datasets/issues/6535
MahavirDabas18
3
[]
6,534
How to configure multiple folders in the same zip package
How should I write "config" in readme when all the data, such as train test, is in a zip file train floder and test floder in data.zip
OPEN
2023-12-26T03:56:20
2023-12-26T06:31:16
null
https://github.com/huggingface/datasets/issues/6534
d710055071
1
[]
6,533
ted_talks_iwslt | Error: Config name is missing
### Describe the bug Running load_dataset using the newest `datasets` library like below on the ted_talks_iwslt using year pair data will throw an error "Config name is missing" see also: https://huggingface.co/datasets/ted_talks_iwslt/discussions/3 likely caused by #6493, where the `and not config_kwargs` part...
CLOSED
2023-12-26T00:38:18
2023-12-30T18:58:21
2023-12-30T16:09:50
https://github.com/huggingface/datasets/issues/6533
rayliuca
2
[]
6,532
[Feature request] Indexing datasets by a customly-defined id field to enable random access dataset items via the id
### Feature request Some datasets may contain an id-like field, for example the `id` field in [wikimedia/wikipedia](https://huggingface.co/datasets/wikimedia/wikipedia) and the `_id` field in [BeIR/dbpedia-entity](https://huggingface.co/datasets/BeIR/dbpedia-entity). HF datasets support efficient random access via r...
OPEN
2023-12-25T11:37:10
2025-05-05T13:25:24
null
https://github.com/huggingface/datasets/issues/6532
Yu-Shi
10
[ "enhancement" ]
6,530
Impossible to save a mapped dataset to disk
### Describe the bug I want to play around with different hyperparameters when training but don't want to re-map my dataset with 3 million samples each time for tens of hours when I [fully fine-tune SDXL](https://github.com/huggingface/diffusers/blob/main/examples/text_to_image/train_text_to_image_sdxl.py). After...
OPEN
2023-12-23T15:18:27
2023-12-24T09:40:30
null
https://github.com/huggingface/datasets/issues/6530
kopyl
1
[]
6,529
Impossible to only download a test split
I've spent a significant amount of time trying to locate the split object inside my _split_generators() custom function. Then after diving [in the code](https://github.com/huggingface/datasets/blob/5ff3670c18ed34fa8ddfa70a9aa403ae6cc9ad54/src/datasets/load.py#L2558) I realized that `download_and_prepare` is executed b...
OPEN
2023-12-22T16:56:32
2024-02-02T00:05:04
null
https://github.com/huggingface/datasets/issues/6529
ysig
2
[]
6,524
Streaming the Pile: Missing Files
### Describe the bug The pile does not stream, a "File not Found error" is returned. It looks like the Pile's files have been moved. ### Steps to reproduce the bug To reproduce run the following code: ``` from datasets import load_dataset dataset = load_dataset('EleutherAI/pile', 'en', split='train', streamin...
CLOSED
2023-12-21T21:25:09
2023-12-22T09:17:05
2023-12-22T09:17:05
https://github.com/huggingface/datasets/issues/6524
FelixLabelle
1
[]
6,522
Loading HF Hub Dataset (private org repo) fails to load all features
### Describe the bug When pushing a `Dataset` with multiple `Features` (`input`, `output`, `tags`) to Huggingface Hub (private org repo), and later downloading the `Dataset`, only `input` and `output` load - I believe the expected behavior is for all `Features` to be loaded by default? ### Steps to reproduce the ...
OPEN
2023-12-21T12:26:35
2023-12-21T13:24:31
null
https://github.com/huggingface/datasets/issues/6522
versipellis
0
[]
6,521
The order of the splits is not preserved
We had a regression and the order of the splits is not preserved. They are alphabetically sorted, instead of preserving original "train", "validation", "test" order. Check: In branch "main" ```python In [9]: dataset = load_dataset("adversarial_qa", '"adversarialQA") In [10]: dataset Out[10]: DatasetDict({ ...
CLOSED
2023-12-21T11:17:27
2023-12-22T11:36:15
2023-12-22T11:36:15
https://github.com/huggingface/datasets/issues/6521
albertvillanova
1
[ "bug" ]
6,517
Bug get_metadata_patterns arg error
https://github.com/huggingface/datasets/blob/3f149204a2a5948287adcade5e90707aa5207a92/src/datasets/load.py#L1240C1-L1240C69 metadata_patterns = get_metadata_patterns(base_path, download_config=self.download_config)
CLOSED
2023-12-20T08:56:44
2023-12-22T00:24:23
2023-12-22T00:24:23
https://github.com/huggingface/datasets/issues/6517
d710055071
0
[]
6,515
Why call http_head() when fsspec_head() succeeds
https://github.com/huggingface/datasets/blob/a91582de288d98e94bcb5ab634ca1cfeeff544c5/src/datasets/utils/file_utils.py#L510C1-L523C14
CLOSED
2023-12-20T02:25:51
2023-12-26T05:35:46
2023-12-26T05:35:46
https://github.com/huggingface/datasets/issues/6515
d710055071
0
[]
6,513
Support huggingface-hub 0.20.0
CI to test the support of `huggingface-hub` 0.20.0: https://github.com/huggingface/datasets/compare/main...ci-test-huggingface-hub-v0.20.0.rc1 We need to merge: - #6510 - #6512 - #6516
CLOSED
2023-12-19T15:15:46
2023-12-20T08:44:45
2023-12-20T08:44:45
https://github.com/huggingface/datasets/issues/6513
albertvillanova
0
[]
6,507
where is glue_metric.py> @Frankie123421 what was the resolution to this?
> @Frankie123421 what was the resolution to this? use glue_metric.py instead of glue.py in load_metric _Originally posted by @Frankie123421 in https://github.com/huggingface/datasets/issues/2117#issuecomment-905093763_
CLOSED
2023-12-17T09:58:25
2023-12-18T11:42:49
2023-12-18T11:42:49
https://github.com/huggingface/datasets/issues/6507
Mcccccc1024
0
[]
6,506
Incorrect test set labels for RTE and CoLA datasets via load_dataset
### Describe the bug The test set labels for the RTE and CoLA datasets when loading via datasets load_dataset are all -1. Edit: It appears this is also the case for every other dataset except for MRPC (stsb, sst2, qqp, mnli (both matched and mismatched), qnli, wnli, ax). Is this intended behavior to safeguard the t...
CLOSED
2023-12-16T22:06:08
2023-12-21T09:57:57
2023-12-21T09:57:57
https://github.com/huggingface/datasets/issues/6506
emreonal11
1
[]
6,505
Got stuck when I trying to load a dataset
### Describe the bug Hello, everyone. I met a problem when I am trying to load a data file using load_dataset method on a Debian 10 system. The data file is not very large, only 1.63MB with 600 records. Here is my code: from datasets import load_dataset dataset = load_dataset('json', data_files='mypath/oaast_r...
OPEN
2023-12-16T11:51:07
2024-12-24T16:45:52
null
https://github.com/huggingface/datasets/issues/6505
yirenpingsheng
7
[]
6,504
Error Pushing to Hub
### Describe the bug Error when trying to push a dataset in a special format to hub ### Steps to reproduce the bug ``` import datasets from datasets import Dataset dataset_dict = { "filename": ["apple", "banana"], "token": [[[1,2],[3,4]],[[1,2],[3,4]]], "label": [0, 1], } dataset = Dataset.from_d...
CLOSED
2023-12-16T01:05:22
2023-12-16T06:20:53
2023-12-16T06:20:53
https://github.com/huggingface/datasets/issues/6504
Jiayi-Pan
0
[]
6,501
OverflowError: value too large to convert to int32_t
### Describe the bug ![image](https://github.com/huggingface/datasets/assets/47747764/f58044fb-ddda-48b6-ba68-7bbfef781630) ### Steps to reproduce the bug just loading datasets ### Expected behavior how can I fix it ### Environment info pip install /mnt/cluster/zhangfan/study_info/LLaMA-Factory/peft-0.6.0-py3...
OPEN
2023-12-15T10:10:21
2025-06-27T04:27:14
null
https://github.com/huggingface/datasets/issues/6501
zhangfan-algo
1
[]
6,497
Support setting a default config name in push_to_hub
In order to convert script-datasets to no-script datasets, we need to support setting a default config name for those scripts that set one.
CLOSED
2023-12-14T15:59:03
2023-12-18T11:50:04
2023-12-18T11:50:04
https://github.com/huggingface/datasets/issues/6497
albertvillanova
0
[ "enhancement" ]
6,496
Error when writing a dataset to HF Hub: A commit has happened since. Please refresh and try again.
**Describe the bug** Getting a `412 Client Error: Precondition Failed` when trying to write a dataset to the HF hub. ``` huggingface_hub.utils._errors.HfHubHTTPError: 412 Client Error: Precondition Failed for url: https://huggingface.co/api/datasets/GLorr/test-dask/commit/main (Request ID: Root=1-657ae26f-3bd92b...
OPEN
2023-12-14T11:24:54
2023-12-14T12:22:21
null
https://github.com/huggingface/datasets/issues/6496
GeorgesLorre
1
[]
6,494
Image Data loaded Twice
### Describe the bug ![1702472610561](https://github.com/huggingface/datasets/assets/28867010/4b7ef5e7-32c3-4b73-84cb-5de059caa0b6) When I learn from https://huggingface.co/docs/datasets/image_load and try to load image data from a folder. I noticed that the image was read twice in the returned data. As you can see i...
OPEN
2023-12-13T13:11:42
2023-12-13T13:11:42
null
https://github.com/huggingface/datasets/issues/6494
ArcaneLex
0
[]
6,495
Newline characters don't behave as expected when calling dataset.info
### System Info - `transformers` version: 4.32.1 - Platform: Windows-10-10.0.19045-SP0 - Python version: 3.11.5 - Huggingface_hub version: 0.15.1 - Safetensors version: 0.3.2 - Accelerate version: not installed - Accelerate config: not found - PyTorch version (GPU?): 2.1.1+cpu (False) - Tensorflow version (GPU...
OPEN
2023-12-12T23:07:51
2023-12-13T13:24:22
null
https://github.com/huggingface/datasets/issues/6495
gerald-wrona
0
[]
6,490
`load_dataset(...,save_infos=True)` not working without loading script
### Describe the bug It seems that saving a dataset infos back into the card file is not working for datasets without a loading script. After tracking the problem a bit it looks like saving the infos uses `Builder.get_imported_module_dir()` as its destination directory. Internally this is a call to `inspect.getfil...
OPEN
2023-12-12T08:09:18
2023-12-12T08:36:22
null
https://github.com/huggingface/datasets/issues/6490
morganveyret
1
[]
6,489
load_dataset imageflder for aws s3 path
### Feature request I would like to load a dataset from S3 using the imagefolder option something like `dataset = datasets.load_dataset('imagefolder', data_dir='s3://.../lsun/train/bedroom', fs=S3FileSystem(), streaming=True) ` ### Motivation no need of data_files ### Your contribution no experience...
OPEN
2023-12-12T00:08:43
2023-12-12T00:09:27
null
https://github.com/huggingface/datasets/issues/6489
segalinc
0
[ "enhancement" ]
6,488
429 Client Error
Hello, I was downloading the following dataset and after 20% of data was downloaded, I started getting error 429. It is not resolved since a few days. How should I resolve it? Thanks Dataset: https://huggingface.co/datasets/cerebras/SlimPajama-627B Error: `requests.exceptions.HTTPError: 429 Client Error: Too M...
OPEN
2023-12-11T15:06:01
2024-06-20T05:55:45
null
https://github.com/huggingface/datasets/issues/6488
sasaadi
2
[]
6,485
FileNotFoundError: [Errno 2] No such file or directory: 'nul'
### Describe the bug it seems that sth wrong with my terrible "bug body" life, When i run this code, "import datasets" i meet this error FileNotFoundError: [Errno 2] No such file or directory: 'nul' ![image](https://github.com/huggingface/datasets/assets/73683903/3973c120-ebb1-42b7-bede-b9de053e861d) ![image](htt...
CLOSED
2023-12-11T08:52:13
2023-12-14T08:09:08
2023-12-14T08:09:08
https://github.com/huggingface/datasets/issues/6485
amanyara
1
[]