Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,60 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: cc-by-4.0
|
| 3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
---
|
| 4 |
+
|
| 5 |
+
task_categories:
|
| 6 |
+
- text-to-image
|
| 7 |
+
language:
|
| 8 |
+
- en
|
| 9 |
+
- zh
|
| 10 |
+
- fr
|
| 11 |
+
tags:
|
| 12 |
+
- vision
|
| 13 |
+
- color
|
| 14 |
+
- evaluation
|
| 15 |
+
- diagnostic
|
| 16 |
+
- AI-Obedience
|
| 17 |
+
pretty_name: VIOLIN
|
| 18 |
+
size_categories:
|
| 19 |
+
- 10K<n<100K
|
| 20 |
+
---
|
| 21 |
+
|
| 22 |
+
# VIOLIN: Visual Instruction-based Color Evaluation
|
| 23 |
+
|
| 24 |
+
**VIOLIN** (VIsual Obedience Level-4 EvaluatIoN) is a diagnostic benchmark designed to assess the **Level-4 Instructional Obedience** of text-to-image generative models.
|
| 25 |
+
|
| 26 |
+
While state-of-the-art models can render complex semantic scenes (e.g., "Cyberpunk cityscapes"), they often fail at the most fundamental deterministic tasks: generating a perfectly pure, texture-less color image. VIOLIN provides a rigorous framework to measure this "Paradox of Simplicity."
|
| 27 |
+
|
| 28 |
+
|
| 29 |
+
|
| 30 |
+
## 🧪 Key Scientific Insights
|
| 31 |
+
Our research identifies two primary obstacles in current generative AI:
|
| 32 |
+
- **Aesthetic Inertia**: The tendency of models to prioritize visual richness and textures over strict instructional adherence, even when "pure color" or "no texture" is explicitly requested.
|
| 33 |
+
- **Semantic Gravity**: The bias where models follow instructions better when they align with common visual knowledge but fail when context is random or conflicting.
|
| 34 |
+
|
| 35 |
+
## 📊 Dataset Structure
|
| 36 |
+
The dataset comprises over 42,000 text-image pairs across 6 variations:
|
| 37 |
+
|
| 38 |
+
| Variation | Description | Evaluation Focus |
|
| 39 |
+
| :--- | :--- | :--- |
|
| 40 |
+
| **Variation 1** | Single Color Block | Basic pixel-level precision (ISCC-NBS) |
|
| 41 |
+
| **Variation 2** | Two-block Split | Spatial layout and vertical/horizontal split |
|
| 42 |
+
| **Variation 3** | Four-quadrant Split | Complex spatial reasoning and contrast |
|
| 43 |
+
| **Variation 4** | Fuzzy Color | Bounded constraints and flexibility |
|
| 44 |
+
| **Variation 5** | Multilingual | Robustness across English, Chinese, and French |
|
| 45 |
+
| **Variation 6** | Color Spaces | Cross-format understanding (Hex, RGB, HSL) |
|
| 46 |
+
|
| 47 |
+
|
| 48 |
+
|
| 49 |
+
## 📐 Evaluation Metrics
|
| 50 |
+
We propose a dual-metric approach for evaluating "Minimum Viable Obedience":
|
| 51 |
+
1. **Color Precision**: Measuring the ΔE (CIEDE2000) or Euclidean distance between the generated pixels and the ground truth.
|
| 52 |
+
2. **Color Purity**: Assessing the presence of artifacts, gradients, or unintended textures using variance-based analysis.
|
| 53 |
+
|
| 54 |
+
## 📁 How to Use
|
| 55 |
+
You can load the dataset directly via the Hugging Face `datasets` library:
|
| 56 |
+
|
| 57 |
+
```python
|
| 58 |
+
from datasets import load_dataset
|
| 59 |
+
|
| 60 |
+
dataset = load_dataset("Perkzi/VIOLIN")
|