Update README.md
Browse files
README.md
CHANGED
@@ -83,18 +83,18 @@ configs:
|
|
83 |
path: data/validation-*
|
84 |
---
|
85 |
|
86 |
-
#
|
87 |
|
88 |
-
![
|
89 |
|
90 |
## Dataset Summary
|
91 |
|
92 |
-
The
|
93 |
|
94 |
-
Each image includes multi-tier human annotations and semantic segmentation masks. Generously contributed to the community by the GuruShots photography platform, where users engage in themed competitions, the
|
95 |
|
96 |
-
* **Technical Report** - Discover the methodology and technical details behind the
|
97 |
-
* **Github Repo** - Access the complete weights and code which were used to evaluate the
|
98 |
|
99 |
This dataset is ready for commercial/non-commercial use.
|
100 |
|
@@ -140,11 +140,11 @@ This dataset is ready for commercial/non-commercial use.
|
|
140 |
from datasets import load_dataset
|
141 |
|
142 |
# Load the entire dataset
|
143 |
-
dataset = load_dataset("Dataseeds/
|
144 |
|
145 |
# Load specific split
|
146 |
-
train_data = load_dataset("Dataseeds/
|
147 |
-
val_data = load_dataset("Dataseeds/
|
148 |
|
149 |
# Access images and annotations
|
150 |
sample = dataset["train"][0]
|
@@ -167,7 +167,7 @@ from torch.utils.data import DataLoader
|
|
167 |
import torch
|
168 |
|
169 |
# Load dataset
|
170 |
-
dataset = load_dataset("Dataseeds/
|
171 |
|
172 |
# Convert to PyTorch format
|
173 |
dataset.set_format(type="torch", columns=["image", "image_title", "segmentation_masks"])
|
@@ -183,7 +183,7 @@ import tensorflow as tf
|
|
183 |
from datasets import load_dataset
|
184 |
|
185 |
# Load dataset
|
186 |
-
dataset = load_dataset("Dataseeds/
|
187 |
|
188 |
# Convert to TensorFlow Dataset
|
189 |
tf_dataset = dataset.to_tf_dataset(
|
@@ -201,7 +201,7 @@ tf_dataset = dataset.to_tf_dataset(
|
|
201 |
|
202 |
## Benchmark Results
|
203 |
|
204 |
-
To validate the impact of data quality, we fine-tuned two state-of-the-art vision-language models—**LLaVA-NEXT** and **BLIP2**—on the
|
205 |
|
206 |
### LLaVA-NEXT Results
|
207 |
|
@@ -223,7 +223,7 @@ These improvements demonstrate the dataset's value in improving scene understand
|
|
223 |
|
224 |
## Use Cases
|
225 |
|
226 |
-
The
|
227 |
|
228 |
* **Image captioning** - Rich human-written descriptions
|
229 |
* **Scene description** - Technical photography analysis
|
@@ -234,7 +234,7 @@ The GSD is perfect for fine-tuning multimodal models for:
|
|
234 |
|
235 |
## Commercial Dataset Access & On-Demand Licensing
|
236 |
|
237 |
-
While the
|
238 |
|
239 |
GuruShots operates a live, ongoing photography game that has amassed over 100 million images in its catalog, sourced from both amateur and professional photographers participating in thousands of themed challenges across diverse geographic and stylistic contexts. Unlike most public datasets, this corpus is:
|
240 |
|
|
|
83 |
path: data/validation-*
|
84 |
---
|
85 |
|
86 |
+
# DataSeeds Sample Dataset (DSD)
|
87 |
|
88 |
+

|
89 |
|
90 |
## Dataset Summary
|
91 |
|
92 |
+
The DataSeeds Sample Dataset (DSD) is a high-fidelity, human-curated computer vision-ready dataset comprised of 7,840 peer-ranked, fully annotated photographic images, 350,000+ words of descriptive text, and comprehensive metadata. While the DSD is being released under an open source license, a sister dataset of over 10,000 fully annotated and segmented images is available for immediate commercial licensing, and the broader GuruShots ecosystem contains over 100 million images in its catalog.
|
93 |
|
94 |
+
Each image includes multi-tier human annotations and semantic segmentation masks. Generously contributed to the community by the GuruShots photography platform, where users engage in themed competitions, the DSD uniquely captures aesthetic preference signals and high-quality technical metadata (EXIF) across an expansive diversity of photographic styles, camera types, and subject matter. The dataset is optimized for fine-tuning and evaluating multimodal vision-language models, especially in scene description and stylistic comprehension tasks.
|
95 |
|
96 |
+
* **Technical Report** - Discover the methodology and technical details behind the DSD.
|
97 |
+
* **Github Repo** - Access the complete weights and code which were used to evaluate the DSD.
|
98 |
|
99 |
This dataset is ready for commercial/non-commercial use.
|
100 |
|
|
|
140 |
from datasets import load_dataset
|
141 |
|
142 |
# Load the entire dataset
|
143 |
+
dataset = load_dataset("Dataseeds/DataSeeds-Sample-Dataset-DSD")
|
144 |
|
145 |
# Load specific split
|
146 |
+
train_data = load_dataset("Dataseeds/DataSeeds-Sample-Dataset-DSD", split="train")
|
147 |
+
val_data = load_dataset("Dataseeds/DataSeeds-Sample-Dataset-DSD", split="validation")
|
148 |
|
149 |
# Access images and annotations
|
150 |
sample = dataset["train"][0]
|
|
|
167 |
import torch
|
168 |
|
169 |
# Load dataset
|
170 |
+
dataset = load_dataset("Dataseeds/DataSeeds-Sample-Dataset-DSD", split="train")
|
171 |
|
172 |
# Convert to PyTorch format
|
173 |
dataset.set_format(type="torch", columns=["image", "image_title", "segmentation_masks"])
|
|
|
183 |
from datasets import load_dataset
|
184 |
|
185 |
# Load dataset
|
186 |
+
dataset = load_dataset("Dataseeds/DataSeeds-Sample-Dataset-DSD", split="train")
|
187 |
|
188 |
# Convert to TensorFlow Dataset
|
189 |
tf_dataset = dataset.to_tf_dataset(
|
|
|
201 |
|
202 |
## Benchmark Results
|
203 |
|
204 |
+
To validate the impact of data quality, we fine-tuned two state-of-the-art vision-language models—**LLaVA-NEXT** and **BLIP2**—on the DSD scene description task. We observed consistent and measurable improvements over base models:
|
205 |
|
206 |
### LLaVA-NEXT Results
|
207 |
|
|
|
223 |
|
224 |
## Use Cases
|
225 |
|
226 |
+
The DSD is perfect for fine-tuning multimodal models for:
|
227 |
|
228 |
* **Image captioning** - Rich human-written descriptions
|
229 |
* **Scene description** - Technical photography analysis
|
|
|
234 |
|
235 |
## Commercial Dataset Access & On-Demand Licensing
|
236 |
|
237 |
+
While the DSD is being released under an open source license, it represents only a small fraction of the broader commercial capabilities of the GuruShots ecosystem.
|
238 |
|
239 |
GuruShots operates a live, ongoing photography game that has amassed over 100 million images in its catalog, sourced from both amateur and professional photographers participating in thousands of themed challenges across diverse geographic and stylistic contexts. Unlike most public datasets, this corpus is:
|
240 |
|