Improve dataset card: Add metadata, paper/code links, and sample usage
Browse filesThis PR significantly enhances the dataset card by:
- Adding the `image-to-image` task category and relevant tags (`image-enhancement`, `hdr`, `multi-exposure`) for better discoverability.
- Specifying the `cc-by-nc-4.0` license.
- Linking to the official paper page: https://huggingface.co/papers/2507.17157.
- Including a link to the GitHub repository.
- Providing a basic sample usage section to guide users.
README.md
CHANGED
@@ -1,10 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
# UNICE Dataset Description
|
2 |
|
3 |
-
This is the dataset released with the paper:
|
4 |
|
5 |
-
|
6 |
|
7 |
-
|
8 |
|
9 |
## 1. `UNICEdataset.zip`
|
10 |
- **Type**: Multi-Exposure Sequences (MES)
|
@@ -16,3 +26,14 @@ The dataset consists of two main components:
|
|
16 |
- **Type**: Pseudo Ground Truths
|
17 |
- **Content**: High-quality sRGB images generated by fusing the MES using an ensemble of multi-exposure fusion (MEF) techniques.
|
18 |
- **Purpose**: Used as the target output (pseudo-GT) for supervised training of enhancement models.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
task_categories:
|
3 |
+
- image-to-image
|
4 |
+
license: cc-by-nc-4.0
|
5 |
+
tags:
|
6 |
+
- image-enhancement
|
7 |
+
- hdr
|
8 |
+
- multi-exposure
|
9 |
+
---
|
10 |
+
|
11 |
# UNICE Dataset Description
|
12 |
|
13 |
+
This is the dataset released with the paper: [UNICE: Training A Universal Image Contrast Enhancer](https://huggingface.co/papers/2507.17157).
|
14 |
|
15 |
+
The UNICE dataset is crucial for training a universal and generalized model for various image contrast enhancement tasks, free of costly human labeling. It comprises HDR raw images used to render multi-exposure sequences (MES) and corresponding pseudo sRGB ground-truths via multi-exposure fusion.
|
16 |
|
17 |
+
**Code:** [https://github.com/RuodaiCui/UNICE](https://github.com/RuodaiCui/UNICE)
|
18 |
|
19 |
## 1. `UNICEdataset.zip`
|
20 |
- **Type**: Multi-Exposure Sequences (MES)
|
|
|
26 |
- **Type**: Pseudo Ground Truths
|
27 |
- **Content**: High-quality sRGB images generated by fusing the MES using an ensemble of multi-exposure fusion (MEF) techniques.
|
28 |
- **Purpose**: Used as the target output (pseudo-GT) for supervised training of enhancement models.
|
29 |
+
|
30 |
+
## Sample Usage
|
31 |
+
|
32 |
+
To download the dataset using Git LFS:
|
33 |
+
|
34 |
+
```bash
|
35 |
+
git lfs install
|
36 |
+
git clone https://huggingface.co/datasets/lahaina/UNICE
|
37 |
+
```
|
38 |
+
|
39 |
+
After downloading, you will find `UNICEdataset.zip` and `pseudoGT.zip`. For model training (e.g., as described in the associated code repository), you would typically extract these files and configure your `dataset_folder` to point to the extracted data. For instance, you might place the extracted contents into a directory like `data/exposure` and use it with the training scripts.
|