xiaolingao commited on
Commit
efc4597
·
verified ·
1 Parent(s): 7cdb19c

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +19 -17
README.md CHANGED
@@ -1,19 +1,21 @@
 
1
  ---
2
- dataset_info:
3
- features:
4
- - name: image
5
- dtype: image
6
- - name: class_id
7
- dtype: int32
8
- splits:
9
- - name: train
10
- num_bytes: 7506270382.0
11
- num_examples: 100000
12
- download_size: 7506698850
13
- dataset_size: 7506270382.0
14
- configs:
15
- - config_name: default
16
- data_files:
17
- - split: train
18
- path: data/train-*
19
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
  ---
3
+ language:
4
+ - en
5
+ tags:
6
+ - dataset-compression
7
+ - dataset-pruning
8
+ - ipc-100
 
 
 
 
 
 
 
 
 
 
 
9
  ---
10
+
11
+ # Dataset used for paper -> "Rethinking Dataset Compression: Shifting Focus From Labels to Images"
12
+ Dataset created according to the paper [Coverage-centric Coreset Selection for High Pruning Rates](https://arxiv.org/abs/2210.15809).
13
+
14
+ ## Basic Usage
15
+
16
+ ```python
17
+ from datasets import load_dataset
18
+ dataset = load_dataset("he-yang/2025-rethinkdc-imagenet-ccs-ipc-100")
19
+ ```
20
+
21
+ For more information, please refer to the [Rethinking-Dataset-Compression](https://github.com/ArmandXiao/Rethinking-Dataset-Compression)