Datasets:
File size: 2,643 Bytes
d8e9b27 b052f11 d8e9b27 b052f11 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 | ---
license: mit
task_categories:
- image-to-text
language:
- en
tags:
- dense-captioning
- joycaption
- laion
- archenix
- exodus
size_categories:
- 100K<n<1M
---
# Exodus v1
**504,504 image-text pairs** combining original LAION images with detailed ~260-word descriptions generated by [JoyCaption Beta One](https://huggingface.co/fancyfeast/llama-joycaption-beta-one-hf-llava).
## Dataset Statistics
| Metric | Value |
|--------|-------|
| Total images | 504,504 |
| Dense captions | 504,504 |
| Coverage | 100.0% |
| Avg dense caption | 223 words |
| Median dense caption | 223 words |
| Dense range | 127-360 words |
| IQR (25th-75th) | 216-230 words |
| Avg original caption | 11 words |
### Word Count Distribution

### Caption Length Buckets
| Range | Count | Percentage |
|-------|-------|-----------|
| <50 | 0 | 0.0% |
| 50-100 | 0 | 0.0% |
| 100-150 | 14 | 0.0% |
| 150-200 | 3,736 | 0.7% |
| 200-250 | 497,393 | 98.6% |
| 250-300 | 3,293 | 0.7% |
| 300+ | 68 | 0.0% |
### Word Cloud Comparison

*Left: Dense captions (rich, descriptive vocabulary). Right: Original LAION captions (short, keyword-style).*
## Columns
| Column | Type | Description |
|--------|------|-------------|
| `image` | PIL Image | Original image from LAION |
| `original_caption` | string | Short original LAION caption |
| `dense_caption` | string | Detailed ~260 word JoyCaption description |
## Usage
```python
from datasets import load_dataset
ds = load_dataset("deadbear34/Exodus_v1", split="train")
# Access a sample
print(ds[0]["dense_caption"])
ds[0]["image"].show()
# Filter by caption length
long_captions = ds.filter(lambda x: len(x["dense_caption"].split()) > 200)
```
## Generation Details
| Parameter | Value |
|-----------|-------|
| Source dataset | [deadbear34/laion-exodus-500k](https://huggingface.co/datasets/deadbear34/laion-exodus-500k) |
| Captioning model | [JoyCaption Beta One](https://huggingface.co/fancyfeast/llama-joycaption-beta-one-hf-llava) |
| Caption type | Descriptive |
| Max words | 260 |
| Temperature | 0.6 |
| Top-p | 0.9 |
| Max tokens | 512 |
| Hardware | NVIDIA A100-80GB |
| Generation time | ~16 hours |
| Speed | ~8.8 images/second |
## Citation
If you use this dataset, please cite:
```bibtex
@misc{exodus_v1_2026,
title={Exodus v1: LAION Images with Dense JoyCaption Descriptions},
author={Archenix Team},
year={2026},
url={https://huggingface.co/datasets/deadbear34/Exodus_v1}
}
```
## License
MIT License. Images are sourced from LAION and may be subject to their original copyright.
|