scottgeng00 commited on
Commit
ce3887a
·
verified ·
1 Parent(s): 46a6641

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +84 -0
README.md CHANGED
@@ -102,3 +102,87 @@ configs:
102
  - split: train
103
  path: story/train-*
104
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
102
  - split: train
103
  path: story/train-*
104
  ---
105
+
106
+ # Qwen3.5-27B diverse-sampling — qualitative examples
107
+
108
+ Side-by-side qualitative outputs from **`Qwen/Qwen3.5-27B`** under several
109
+ prompting methods for diverse sampling, in two domains. One row per prompt; one
110
+ column per method holding that method's list of outputs **for the same prompt**,
111
+ so a row is a direct method-vs-method comparison.
112
+
113
+ | config | rows (prompts) | methods | outputs per cell |
114
+ |---|---|---|---|
115
+ | `story` | 52 | naive, plan, idea, verbalized_k8, verbalized_k16, gacha | up to 128 stories |
116
+ | `image` | 50 | naive, persona, plan, verbalized_k8, verbalized_k16, gacha | 128 images + expanded captions |
117
+
118
+ These are the **complete** n=128 cells — not a benchmark, and not curated. No
119
+ filtering, ranking, or cherry-picking: outputs appear in generation order.
120
+
121
+ Two story cells are ragged rather than exactly 128: `verbalized_k8` (93–128 per
122
+ prompt) and `verbalized_k16` (67–128), because the model returns fewer than `k`
123
+ items in some list calls. Image `gacha` is missing a single render (6,399 of
124
+ 6,400).
125
+
126
+ `persona` is present on `image` but **deliberately absent from `story`** — that
127
+ cell was bad and was dropped.
128
+
129
+ ## Schema
130
+
131
+ `story` and `image` are separate **configs** (their columns are shaped
132
+ differently, so they cannot be splits of one dataset):
133
+
134
+ ```python
135
+ from datasets import load_dataset
136
+ story = load_dataset("scottgeng00/gacha_examples_test", "story")["train"]
137
+ image = load_dataset("scottgeng00/gacha_examples_test", "image")["train"]
138
+
139
+ row = story[0]
140
+ row["prompt"] # 'Write a story titled "It". You decide everything else about it.'
141
+ row["gacha"] # list[str] — the stories
142
+ row["naive"][0] # the same prompt, sampled IID
143
+
144
+ row = image[0]
145
+ row["prompt"] # original caption the image must depict
146
+ row["caption_instruction"] # what the LLM was asked to expand ("Write a detailed image generation caption for: ...")
147
+ row["gacha"][0]["image"] # PIL.Image, 768x768
148
+ row["gacha"][0]["caption"] # the expanded caption that produced that image
149
+ row["gacha"][0]["sample_idx"]
150
+ ```
151
+
152
+ Shared columns: `prompt_id`, `prompt`, `category` (+ `tier` on story,
153
+ `caption_instruction` on image).
154
+
155
+ ## Provenance
156
+
157
+ - **Generator:** `Qwen/Qwen3.5-27B`, thinking ON, temperature 1.0, top_p 0.95,
158
+ top_k 20, min_p 0, presence_penalty 1.5.
159
+ - **Prompts:** story = 52 open-ended creative-writing prompts; image = 50 OneIG
160
+ captions across 3 categories.
161
+ - **Renderer:** `Qwen/Qwen-Image-2512`, 30 steps, `true_cfg_scale` 4.0,
162
+ 1328×1328, captions anchored to the original caption. Downscaled to 768×768
163
+ (Lanczos) for this dataset; the 1328² originals are not included.
164
+
165
+ ## Methods
166
+
167
+ - **naive** — n IID samples of the bare prompt.
168
+ - **persona** — a distinct sampled persona (Nemotron-Personas-USA) per sample as
169
+ the system turn.
170
+ - **plan** — intent-factored: a plan sampled hot (temperature 1.2), then executed
171
+ at normal temperature.
172
+ - **idea** — k=64 numbered "creative angles" in one call, one execute call each.
173
+ - **verbalized_k8 / verbalized_k16** — k responses with self-estimated
174
+ probabilities in one call, repeated to cover n.
175
+ - **gacha** — per sample, compile a schema of decision points from the task, get
176
+ an options menu per question, roll each choice with a seeded external RNG, then
177
+ render the rolled brief in one fresh call.
178
+
179
+ ## Known quirk: `naive` image captions
180
+
181
+ Asked to "write a detailed image generation caption for X", `Qwen3.5-27B`
182
+ sampled directly answers with a **markdown menu of 2–4 alternative prompts**
183
+ ("### Option 1: The Cinematic Masterpiece…") in the large majority of cases,
184
+ mean ~2,900 characters. That entire blob was passed to the renderer verbatim,
185
+ exactly as it was in the run. So `naive` images are conditioned on a
186
+ multi-option document rather than a single caption — worth knowing before
187
+ reading the `naive` column as a clean IID image baseline. Other methods emit a
188
+ single caption (mean 195–1,337 chars).