Datasets:
image_1 imagewidth (px) 2.25k 7.68k | image_2 imagewidth (px) 1.5k 7.68k | image_1_name stringlengths 4 8 | image_2_name stringlengths 4 8 | category_1 stringclasses 6
values | category_2 stringclasses 6
values |
|---|---|---|---|---|---|
arch6 | fashion1 | arch | fashion | ||
arch1 | fashion6 | arch | fashion | ||
arch3 | food2 | arch | food | ||
arch2 | food2 | arch | food | ||
arch6 | nature2 | arch | nature | ||
arch5 | other4 | arch | other | ||
arch1 | other1 | arch | other | ||
arch1 | sea4 | arch | sea | ||
arch2 | sea9 | arch | sea | ||
fashion5 | food1 | fashion | food | ||
fashion5 | food2 | fashion | food | ||
fashion6 | nature7 | fashion | nature | ||
fashion2 | nature8 | fashion | nature | ||
fashion5 | other3 | fashion | other | ||
fashion1 | other2 | fashion | other | ||
fashion6 | sea7 | fashion | sea | ||
fashion3 | sea5 | fashion | sea | ||
food2 | nature4 | food | nature | ||
food7 | nature6 | food | nature | ||
food1 | other1 | food | other | ||
food4 | other1 | food | other | ||
food3 | sea6 | food | sea | ||
food5 | sea5 | food | sea | ||
nature1 | other4 | nature | other | ||
nature2 | other4 | nature | other | ||
nature2 | sea9 | nature | sea | ||
nature5 | sea6 | nature | sea | ||
other2 | sea2 | other | sea | ||
other1 | sea4 | other | sea | ||
arch4 | nature2 | arch | nature | ||
arch7 | food7 | arch | food | ||
fashion4 | arch4 | fashion | arch | ||
food6 | nature8 | food | nature | ||
nature3 | food2 | nature | food | ||
sea1 | food3 | sea | food | ||
sea3 | fashion6 | sea | fashion | ||
sea8 | food6 | sea | food | ||
fashion1 | sea7 | fashion | sea | ||
arch2 | nature3 | arch | nature | ||
fashion3 | nature6 | fashion | nature | ||
food5 | other3 | food | other | ||
arch2 | sea7 | arch | sea | ||
arch6 | food2 | arch | food | ||
arch5 | food2 | arch | food | ||
fashion3 | nature7 | fashion | nature | ||
fashion3 | food5 | fashion | food | ||
food1 | nature2 | food | nature | ||
fashion6 | other3 | fashion | other | ||
fashion2 | sea5 | fashion | sea | ||
fashion3 | nature8 | fashion | nature | ||
arch5 | other2 | arch | other | ||
food3 | nature3 | food | nature | ||
food1 | sea4 | food | sea | ||
fashion1 | sea8 | fashion | sea | ||
food7 | other3 | food | other | ||
arch1 | food5 | arch | food | ||
fashion4 | food6 | fashion | food | ||
other1 | sea3 | other | sea | ||
arch7 | sea8 | arch | sea | ||
arch2 | nature5 | arch | nature | ||
fashion4 | food5 | fashion | food | ||
nature4 | sea8 | nature | sea | ||
nature6 | other1 | nature | other | ||
arch1 | other3 | arch | other | ||
fashion3 | sea6 | fashion | sea | ||
fashion6 | other2 | fashion | other | ||
fashion6 | nature6 | fashion | nature | ||
arch1 | sea6 | arch | sea | ||
food7 | nature1 | food | nature | ||
food4 | other2 | food | other | ||
arch5 | fashion1 | arch | fashion | ||
arch3 | sea6 | arch | sea | ||
arch2 | sea8 | arch | sea | ||
food2 | nature2 | food | nature | ||
arch7 | other3 | arch | other | ||
nature7 | sea8 | nature | sea | ||
food4 | sea9 | food | sea | ||
fashion1 | sea3 | fashion | sea | ||
fashion2 | food7 | fashion | food | ||
arch6 | sea9 | arch | sea | ||
nature3 | sea3 | nature | sea | ||
fashion1 | food4 | fashion | food | ||
nature3 | sea7 | nature | sea | ||
food2 | other2 | food | other | ||
arch3 | fashion2 | arch | fashion | ||
arch7 | fashion1 | arch | fashion | ||
nature3 | other4 | nature | other | ||
arch1 | food1 | arch | food | ||
food2 | sea9 | food | sea | ||
arch4 | food2 | arch | food | ||
fashion3 | sea4 | fashion | sea | ||
arch2 | fashion4 | arch | fashion | ||
fashion4 | sea9 | fashion | sea | ||
arch4 | other1 | arch | other | ||
other3 | sea8 | other | sea | ||
fashion4 | sea3 | fashion | sea | ||
nature4 | sea6 | nature | sea | ||
food5 | other4 | food | other | ||
arch5 | food5 | arch | food |
Inspiration Seeds Benchmark
This is the evaluation benchmark for the paper "Inspiration Seeds: Learning Non-Literal Visual Combinations for Generative Exploration".
It contains 99 unique image pairs drawn from 6 visual categories (architecture, fashion, food, nature, other, sea), used to evaluate non-literal visual combination models.
[Paper] | [Project Page] | [GitHub]
Authors
- Kfir Goldberg
- Elad Richardson
- Yael Vinker
Abstract
While generative models have become powerful tools for image synthesis, they are typically optimized for executing carefully crafted textual prompts, offering limited support for the open-ended visual exploration that often precedes idea formation. In contrast, designers frequently draw inspiration from loosely connected visual references, seeking emergent connections that spark new ideas. We propose Inspiration Seeds, a generative framework that shifts image generation from final execution to exploratory ideation. Given two input images, our model produces diverse, visually coherent compositions that reveal latent relationships between inputs, without relying on user-specified text prompts. Our approach is feed-forward, trained on synthetic triplets of decomposed visual aspects derived entirely through visual means: we use CLIP Sparse Autoencoders to extract editing directions in CLIP latent space and isolate concept pairs. By removing the reliance on language and enabling fast, intuitive recombination, our method supports visual ideation at the early and ambiguous stages of creative work.
Dataset Structure
Each row contains an image pair and associated metadata:
| Column | Type | Description |
|---|---|---|
image_1 |
Image |
First input image |
image_2 |
Image |
Second input image |
image_1_name |
string |
Name of the first image (e.g. arch6) |
image_2_name |
string |
Name of the second image (e.g. fashion1) |
category_1 |
string |
Category of the first image |
category_2 |
string |
Category of the second image |
Categories: arch, fashion, food, nature, other, sea
Usage
from datasets import load_dataset
ds = load_dataset("kfirgold99/Inspiration-Seeds-Benchmark", split="test")
pair = ds[0]
pair["image_1"].show() # PIL Image
pair["image_2"].show()
Citation
@misc{goldberg2026inspirationseedslearningnonliteral,
title={Inspiration Seeds: Learning Non-Literal Visual Combinations for Generative Exploration},
author={Kfir Goldberg and Elad Richardson and Yael Vinker},
year={2026},
eprint={2602.08615},
archivePrefix={arXiv},
primaryClass={cs.CV},
url={https://arxiv.org/abs/2602.08615},
}
- Downloads last month
- 25