Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
@@ -1,19 +1,21 @@
|
|
|
|
1 |
---
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
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)
|