goumsss Claude Opus 4.8 commited on
Commit
47fb1ee
·
1 Parent(s): c80b403

Prep captions for LoRA training: trigger word + content-only

Browse files

- Add TRIGGER='NUMZOO' and split generation prompt (styled) from training
caption (trigger + content, no style words) per BFL style-LoRA guidance
- Add --captions-only to rewrite .txt captions without re-generating images
- Rewrite all 54 captions to "NUMZOO. <content>" format

Trigger word will be prepended by the app at inference once the LoRA is
trained (done at integration time, not now).

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>

This view is limited to 50 files because it contains too many changes.   See raw diff
scripts/generate_dataset.py CHANGED
@@ -128,15 +128,32 @@ SCENES: list[tuple[list[str], list[str], str]] = [
128
  ]
129
 
130
 
 
 
 
 
 
 
 
131
  def _scene_name(idx: int, animals: list[str], places: list[str]) -> str:
132
  """Short readable label for logs, e.g. '03_panda_1a1p'."""
133
  first = ANIMAL_MAP[animals[0]].replace("baby ", "")
134
  return f"{idx:02d}_{first}_{len(animals)}a{len(places)}p"
135
 
136
 
137
- # Build (name, full_prompt) using the SAME prefix builder + STYLE suffix as the app.
138
- PROMPTS: list[tuple[str, str]] = [
139
- (_scene_name(i + 1, a, p), f"{build_subject(a, p)}, {detail}, {STYLE}")
 
 
 
 
 
 
 
 
 
 
140
  for i, (a, p, detail) in enumerate(SCENES)
141
  ]
142
 
@@ -175,12 +192,13 @@ def generate_image(prompt: str) -> "PIL.Image.Image":
175
 
176
  def main():
177
  parser = argparse.ArgumentParser()
178
- parser.add_argument("--start", type=int, default=1, help="Resume from image N (1-based)")
179
- parser.add_argument("--count", type=int, default=None, help="Generate at most N images then stop")
180
- parser.add_argument("--dry-run", action="store_true", help="Print prompts without generating")
 
181
  args = parser.parse_args()
182
 
183
- if not args.dry_run:
184
  if not os.environ.get("HF_TOKEN"):
185
  print("❌ HF_TOKEN not found. Add it to .env")
186
  print(" Get yours at https://huggingface.co/settings/tokens")
@@ -199,7 +217,7 @@ def main():
199
 
200
  generated_this_run = 0
201
 
202
- for i, (name, prompt) in enumerate(PROMPTS):
203
  n = i + 1
204
  if n < args.start:
205
  continue
@@ -209,6 +227,12 @@ def main():
209
  img_path = out_dir / f"image_{n:03d}.jpg"
210
  txt_path = out_dir / f"image_{n:03d}.txt"
211
 
 
 
 
 
 
 
212
  if img_path.exists():
213
  print(f"[{n:02d}/{total}] ⏭ {name} — already exists, skipping")
214
  continue
@@ -216,13 +240,14 @@ def main():
216
  print(f"[{n:02d}/{total}] 🎨 {name}")
217
 
218
  if args.dry_run:
219
- print(f" {prompt[:120]}…")
 
220
  continue
221
 
222
  try:
223
- image = generate_image(prompt)
224
  image.save(img_path, "JPEG", quality=95)
225
- txt_path.write_text(prompt)
226
  generated_this_run += 1
227
  print(f" ✅ saved {img_path.name}")
228
  except Exception as e:
 
128
  ]
129
 
130
 
131
+ # LoRA trigger word — a nonsense token the style LoRA learns to associate with
132
+ # the whole NumZoo aesthetic. The app prepends it at inference once the LoRA is
133
+ # trained. Per BFL guidance, training captions = "TRIGGER. <content only>",
134
+ # WITHOUT spelling out the style (so the trigger alone summons the look).
135
+ TRIGGER = "NUMZOO"
136
+
137
+
138
  def _scene_name(idx: int, animals: list[str], places: list[str]) -> str:
139
  """Short readable label for logs, e.g. '03_panda_1a1p'."""
140
  first = ANIMAL_MAP[animals[0]].replace("baby ", "")
141
  return f"{idx:02d}_{first}_{len(animals)}a{len(places)}p"
142
 
143
 
144
+ def _gen_prompt(a: list[str], p: list[str], detail: str) -> str:
145
+ """Full STYLED prompt sent to the image model (needs explicit style cues)."""
146
+ return f"{build_subject(a, p)}, {detail}, {STYLE}"
147
+
148
+
149
+ def _caption(a: list[str], p: list[str], detail: str) -> str:
150
+ """Training caption: trigger word + content only, NO style words (BFL style-LoRA)."""
151
+ return f"{TRIGGER}. {build_subject(a, p)}, {detail}"
152
+
153
+
154
+ # (name, generation_prompt, training_caption) for each scene.
155
+ PROMPTS: list[tuple[str, str, str]] = [
156
+ (_scene_name(i + 1, a, p), _gen_prompt(a, p, detail), _caption(a, p, detail))
157
  for i, (a, p, detail) in enumerate(SCENES)
158
  ]
159
 
 
192
 
193
  def main():
194
  parser = argparse.ArgumentParser()
195
+ parser.add_argument("--start", type=int, default=1, help="Resume from image N (1-based)")
196
+ parser.add_argument("--count", type=int, default=None, help="Generate at most N images then stop")
197
+ parser.add_argument("--dry-run", action="store_true", help="Print prompts without generating")
198
+ parser.add_argument("--captions-only", action="store_true", help="Rewrite .txt captions for existing images (no API calls)")
199
  args = parser.parse_args()
200
 
201
+ if not args.dry_run and not args.captions_only:
202
  if not os.environ.get("HF_TOKEN"):
203
  print("❌ HF_TOKEN not found. Add it to .env")
204
  print(" Get yours at https://huggingface.co/settings/tokens")
 
217
 
218
  generated_this_run = 0
219
 
220
+ for i, (name, gen_prompt, caption) in enumerate(PROMPTS):
221
  n = i + 1
222
  if n < args.start:
223
  continue
 
227
  img_path = out_dir / f"image_{n:03d}.jpg"
228
  txt_path = out_dir / f"image_{n:03d}.txt"
229
 
230
+ # Rewrite captions for existing images, no image generation
231
+ if args.captions_only:
232
+ txt_path.write_text(caption)
233
+ print(f"[{n:02d}/{total}] 📝 {name} — caption updated")
234
+ continue
235
+
236
  if img_path.exists():
237
  print(f"[{n:02d}/{total}] ⏭ {name} — already exists, skipping")
238
  continue
 
240
  print(f"[{n:02d}/{total}] 🎨 {name}")
241
 
242
  if args.dry_run:
243
+ print(f" gen: {gen_prompt[:90]}…")
244
+ print(f" caption: {caption[:90]}…")
245
  continue
246
 
247
  try:
248
+ image = generate_image(gen_prompt)
249
  image.save(img_path, "JPEG", quality=95)
250
+ txt_path.write_text(caption)
251
  generated_this_run += 1
252
  print(f" ✅ saved {img_path.name}")
253
  except Exception as e:
training/image_001.txt CHANGED
@@ -1 +1 @@
1
- A cute bunny in an enchanted mushroom forest, sitting on a polka-dot toadstool, fireflies and floating spores drifting around, soft lantern glow, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute bunny in an enchanted mushroom forest, sitting on a polka-dot toadstool, fireflies and floating spores drifting around, soft lantern glow
training/image_002.txt CHANGED
@@ -1 +1 @@
1
- A cute kitten on a sunny beach with ocean waves, building a tiny sandcastle with a bucket and shells, gentle waves lapping, warm sunset sky, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute kitten on a sunny beach with ocean waves, building a tiny sandcastle with a bucket and shells, gentle waves lapping, warm sunset sky
training/image_003.txt CHANGED
@@ -1 +1 @@
1
- A cute puppy in a cosy cottage garden, napping in a flower-filled wheelbarrow, watering can and butterflies nearby, golden afternoon light, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute puppy in a cosy cottage garden, napping in a flower-filled wheelbarrow, watering can and butterflies nearby, golden afternoon light
training/image_004.txt CHANGED
@@ -1 +1 @@
1
- A cute baby fox surrounded by sparkling stars, curled up on a fluffy cloud cradling a tiny glowing star, glittering night sky, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute baby fox surrounded by sparkling stars, curled up on a fluffy cloud cradling a tiny glowing star, glittering night sky
training/image_005.txt CHANGED
@@ -1 +1 @@
1
- A cute baby panda in a cherry blossom garden, nibbling a dango skewer as petals fall, paper lanterns strung above, soft pink light, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute baby panda in a cherry blossom garden, nibbling a dango skewer as petals fall, paper lanterns strung above, soft pink light
training/image_006.txt CHANGED
@@ -1 +1 @@
1
- A cute baby koala on a tropical island, hugging a palm trunk with a coconut drink, striped hammock and a parrot, turquoise sea behind, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute baby koala on a tropical island, hugging a palm trunk with a coconut drink, striped hammock and a parrot, turquoise sea behind
training/image_007.txt CHANGED
@@ -1 +1 @@
1
- A cute baby lion under a rainbow, wearing a tiny crown at the end of a rainbow, pastel clouds and floating sparkles, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute baby lion under a rainbow, wearing a tiny crown at the end of a rainbow, pastel clouds and floating sparkles
training/image_008.txt CHANGED
@@ -1 +1 @@
1
- A cute baby tiger on a snowy mountain top, bundled in a knitted scarf on a snowy peak planting a tiny flag, sparkling snow and faint aurora, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute baby tiger on a snowy mountain top, bundled in a knitted scarf on a snowy peak planting a tiny flag, sparkling snow and faint aurora
training/image_009.txt CHANGED
@@ -1 +1 @@
1
- A cute baby frog in a field of tropical flowers, perched on a giant hibiscus bloom, dewdrops glistening, big tropical leaves and warm bokeh, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute baby frog in a field of tropical flowers, perched on a giant hibiscus bloom, dewdrops glistening, big tropical leaves and warm bokeh
training/image_010.txt CHANGED
@@ -1 +1 @@
1
- A cute baby penguin on a glowing crescent moon, sitting on the curve of a glowing crescent moon in a knitted hat, scattered twinkling stars, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute baby penguin on a glowing crescent moon, sitting on the curve of a glowing crescent moon in a knitted hat, scattered twinkling stars
training/image_011.txt CHANGED
@@ -1 +1 @@
1
- A cute butterfly in a cherry blossom garden, fluttering through cherry blossoms trailing sparkles, pastel petals swirling in the breeze, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute butterfly in a cherry blossom garden, fluttering through cherry blossoms trailing sparkles, pastel petals swirling in the breeze
training/image_012.txt CHANGED
@@ -1 +1 @@
1
- A cute unicorn surrounded by sparkling stars, galloping across a starry sky, rainbow mane glowing, a trail of sparkles behind, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute unicorn surrounded by sparkling stars, galloping across a starry sky, rainbow mane glowing, a trail of sparkles behind
training/image_013.txt CHANGED
@@ -1 +1 @@
1
- A cute puppy in an enchanted mushroom forest, exploring beneath a giant mushroom with a tiny lantern, glowing toadstools and soft moss, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute puppy in an enchanted mushroom forest, exploring beneath a giant mushroom with a tiny lantern, glowing toadstools and soft moss
training/image_014.txt CHANGED
@@ -1 +1 @@
1
- A cute kitten on a glowing crescent moon, curled asleep on a crescent moon wearing a nightcap, twinkling stars all around, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute kitten on a glowing crescent moon, curled asleep on a crescent moon wearing a nightcap, twinkling stars all around
training/image_015.txt CHANGED
@@ -1 +1 @@
1
- A cute bunny on a sunny beach with ocean waves, splashing in shallow waves beside a starfish friend, beach pail and spade, pink sunset, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute bunny on a sunny beach with ocean waves, splashing in shallow waves beside a starfish friend, beach pail and spade, pink sunset
training/image_016.txt CHANGED
@@ -1 +1 @@
1
- A cute baby panda in a cosy cottage garden, tending a vegetable patch in a straw hat, bees and tall sunflowers, warm sun, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute baby panda in a cosy cottage garden, tending a vegetable patch in a straw hat, bees and tall sunflowers, warm sun
training/image_017.txt CHANGED
@@ -1 +1 @@
1
- A cute baby penguin on a snowy mountain top, sliding down a snowy slope on its belly, scarf flying, sparkling powder snow, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute baby penguin on a snowy mountain top, sliding down a snowy slope on its belly, scarf flying, sparkling powder snow
training/image_018.txt CHANGED
@@ -1 +1 @@
1
- A cute baby fox on a tropical island, lounging in a hammock between two palms with sunglasses, coconuts and calm ocean, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute baby fox on a tropical island, lounging in a hammock between two palms with sunglasses, coconuts and calm ocean
training/image_019.txt CHANGED
@@ -1 +1 @@
1
- A cute baby lion in a field of tropical flowers, snoozing in a field of tropical flowers, a butterfly on its nose, dappled golden light, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute baby lion in a field of tropical flowers, snoozing in a field of tropical flowers, a butterfly on its nose, dappled golden light
training/image_020.txt CHANGED
@@ -1 +1 @@
1
- A cute baby tiger in a cherry blossom garden, chasing falling cherry petals, paper lanterns above, soft pink and lilac tones, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute baby tiger in a cherry blossom garden, chasing falling cherry petals, paper lanterns above, soft pink and lilac tones
training/image_021.txt CHANGED
@@ -1 +1 @@
1
- A cute baby frog in an enchanted mushroom forest, playing a tiny flute on a lily pad among glowing mushrooms, fireflies and reeds, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute baby frog in an enchanted mushroom forest, playing a tiny flute on a lily pad among glowing mushrooms, fireflies and reeds
training/image_022.txt CHANGED
@@ -1 +1 @@
1
- A cute unicorn under a rainbow, standing proudly under a rainbow, flower garland around its neck, pastel clouds, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute unicorn under a rainbow, standing proudly under a rainbow, flower garland around its neck, pastel clouds
training/image_023.txt CHANGED
@@ -1 +1 @@
1
- A cute bunny and kitten in an enchanted mushroom forest, roasting marshmallows over a tiny campfire, fireflies and glowing mushrooms, cozy night, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute bunny and kitten in an enchanted mushroom forest, roasting marshmallows over a tiny campfire, fireflies and glowing mushrooms, cozy night
training/image_024.txt CHANGED
@@ -1 +1 @@
1
- A cute puppy and baby fox on a sunny beach with ocean waves, building a sandcastle together with shell flags, gentle waves at golden hour, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute puppy and baby fox on a sunny beach with ocean waves, building a sandcastle together with shell flags, gentle waves at golden hour
training/image_025.txt CHANGED
@@ -1 +1 @@
1
- A cute baby panda and baby koala in a cherry blossom garden, sharing tea under a blooming cherry tree, paper lanterns, drifting petals, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute baby panda and baby koala in a cherry blossom garden, sharing tea under a blooming cherry tree, paper lanterns, drifting petals
training/image_026.txt CHANGED
@@ -1 +1 @@
1
- A cute baby lion and baby tiger in a cosy cottage garden, tumbling over a ball of yarn in a cottage garden, picket fence and butterflies, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute baby lion and baby tiger in a cosy cottage garden, tumbling over a ball of yarn in a cottage garden, picket fence and butterflies
training/image_027.txt CHANGED
@@ -1 +1 @@
1
- A cute baby penguin and bunny on a snowy mountain top, ice skating on a frozen pond atop a snowy mountain, fairy lights, gentle snowfall, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute baby penguin and bunny on a snowy mountain top, ice skating on a frozen pond atop a snowy mountain, fairy lights, gentle snowfall
training/image_028.txt CHANGED
@@ -1 +1 @@
1
- A cute baby frog and butterfly in a field of tropical flowers, resting together on lily pads among tropical flowers, dragonflies and warm bokeh, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute baby frog and butterfly in a field of tropical flowers, resting together on lily pads among tropical flowers, dragonflies and warm bokeh
training/image_029.txt CHANGED
@@ -1 +1 @@
1
- A cute kitten and puppy on a glowing crescent moon, stargazing from a crescent moon with a tiny brass telescope, soft constellations, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute kitten and puppy on a glowing crescent moon, stargazing from a crescent moon with a tiny brass telescope, soft constellations
training/image_030.txt CHANGED
@@ -1 +1 @@
1
- A cute unicorn and bunny under a rainbow, trotting side by side under a rainbow, flower garlands and floating sparkles, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute unicorn and bunny under a rainbow, trotting side by side under a rainbow, flower garlands and floating sparkles
training/image_031.txt CHANGED
@@ -1 +1 @@
1
- A cute baby fox and baby panda in an enchanted mushroom forest, reading a glowing storybook under a toadstool, a lantern and curious fireflies, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute baby fox and baby panda in an enchanted mushroom forest, reading a glowing storybook under a toadstool, a lantern and curious fireflies
training/image_032.txt CHANGED
@@ -1 +1 @@
1
- A cute baby koala and baby penguin on a tropical island, sipping coconut drinks on a tropical island, beach umbrella and gentle surf, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute baby koala and baby penguin on a tropical island, sipping coconut drinks on a tropical island, beach umbrella and gentle surf
training/image_033.txt CHANGED
@@ -1 +1 @@
1
- A cute bunny and unicorn surrounded by sparkling stars, swinging on a swing hung from the stars, sparkles raining down, deep blue night, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute bunny and unicorn surrounded by sparkling stars, swinging on a swing hung from the stars, sparkles raining down, deep blue night
training/image_034.txt CHANGED
@@ -1 +1 @@
1
- A cute kitten and baby frog on a sunny beach with ocean waves, collecting shells in tide pools at low tide, a little net and a pastel sunset, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute kitten and baby frog on a sunny beach with ocean waves, collecting shells in tide pools at low tide, a little net and a pastel sunset
training/image_035.txt CHANGED
@@ -1 +1 @@
1
- A cute bunny, kitten and puppy in an enchanted mushroom forest, having a picnic on a checkered blanket among glowing mushrooms, lanterns and fireflies, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute bunny, kitten and puppy in an enchanted mushroom forest, having a picnic on a checkered blanket among glowing mushrooms, lanterns and fireflies
training/image_036.txt CHANGED
@@ -1 +1 @@
1
- A cute baby fox, baby panda and baby koala in a cherry blossom garden, a tea party under cherry blossoms with tiny cups, paper lanterns and drifting petals, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute baby fox, baby panda and baby koala in a cherry blossom garden, a tea party under cherry blossoms with tiny cups, paper lanterns and drifting petals
training/image_037.txt CHANGED
@@ -1 +1 @@
1
- A cute baby lion, baby tiger and baby frog in a cosy cottage garden, playing tag through flower beds in a cottage garden, butterflies and warm sun, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute baby lion, baby tiger and baby frog in a cosy cottage garden, playing tag through flower beds in a cottage garden, butterflies and warm sun
training/image_038.txt CHANGED
@@ -1 +1 @@
1
- A cute baby penguin, bunny and kitten on a snowy mountain top, building a snowman on a snowy peak in matching scarves, sparkling snow, aurora above, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute baby penguin, bunny and kitten on a snowy mountain top, building a snowman on a snowy peak in matching scarves, sparkling snow, aurora above
training/image_039.txt CHANGED
@@ -1 +1 @@
1
- A cute unicorn, butterfly and bunny under a rainbow, dancing under a rainbow amid sparkles and flower petals, pastel sky, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute unicorn, butterfly and bunny under a rainbow, dancing under a rainbow amid sparkles and flower petals, pastel sky
training/image_040.txt CHANGED
@@ -1 +1 @@
1
- A cute puppy, baby fox and baby panda on a sunny beach with ocean waves, surfing tiny waves together with a beach ball, palm trees and sunset glow, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute puppy, baby fox and baby panda on a sunny beach with ocean waves, surfing tiny waves together with a beach ball, palm trees and sunset glow
training/image_041.txt CHANGED
@@ -1 +1 @@
1
- A cute kitten, baby koala and baby frog in a field of tropical flowers, weaving flower crowns in a field of tropical flowers, butterflies and golden bokeh, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute kitten, baby koala and baby frog in a field of tropical flowers, weaving flower crowns in a field of tropical flowers, butterflies and golden bokeh
training/image_042.txt CHANGED
@@ -1 +1 @@
1
- A cute baby lion, baby tiger and bunny surrounded by sparkling stars, huddled on a cloud counting sparkling stars under a shared blanket, soft glow, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute baby lion, baby tiger and bunny surrounded by sparkling stars, huddled on a cloud counting sparkling stars under a shared blanket, soft glow
training/image_043.txt CHANGED
@@ -1 +1 @@
1
- A cute bunny in an enchanted mushroom forest and under a rainbow, hopping from a mushroom grove toward a rainbow, sparkles bridging the two, pastel light, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute bunny in an enchanted mushroom forest and under a rainbow, hopping from a mushroom grove toward a rainbow, sparkles bridging the two, pastel light
training/image_044.txt CHANGED
@@ -1 +1 @@
1
- A cute kitten and puppy on a sunny beach with ocean waves and on a tropical island, a beach day between ocean waves and a tropical island, palm shade and scattered shells, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute kitten and puppy on a sunny beach with ocean waves and on a tropical island, a beach day between ocean waves and a tropical island, palm shade and scattered shells
training/image_045.txt CHANGED
@@ -1 +1 @@
1
- A cute unicorn surrounded by sparkling stars and on a glowing crescent moon, soaring past sparkling stars toward a crescent moon, a glowing rainbow trail, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute unicorn surrounded by sparkling stars and on a glowing crescent moon, soaring past sparkling stars toward a crescent moon, a glowing rainbow trail
training/image_046.txt CHANGED
@@ -1 +1 @@
1
- A cute baby panda in a cherry blossom garden and in a cosy cottage garden, wandering from cherry blossoms into a cosy cottage garden, petals and busy bees, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute baby panda in a cherry blossom garden and in a cosy cottage garden, wandering from cherry blossoms into a cosy cottage garden, petals and busy bees
training/image_047.txt CHANGED
@@ -1 +1 @@
1
- A cute baby penguin and bunny on a snowy mountain top and surrounded by sparkling stars, watching sparkling stars from a snowy mountain top, fairy lights and soft snow, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute baby penguin and bunny on a snowy mountain top and surrounded by sparkling stars, watching sparkling stars from a snowy mountain top, fairy lights and soft snow
training/image_048.txt CHANGED
@@ -1 +1 @@
1
- A cute baby fox in a field of tropical flowers and on a tropical island, exploring tropical flowers along a tropical island shore, parrots and warm bokeh, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute baby fox in a field of tropical flowers and on a tropical island, exploring tropical flowers along a tropical island shore, parrots and warm bokeh
training/image_049.txt CHANGED
@@ -1 +1 @@
1
- A cute baby frog and butterfly in a cherry blossom garden and in a field of tropical flowers, drifting between cherry blossoms and tropical flowers, dewdrops and floating petals, kawaii children's book illustration, pastel anime art style, soft painterly lighting, detailed rich background with warm fairy lights, cozy magical atmosphere, cute chibi character with big sparkling eyes, soft pastel color palette, highly detailed scene, no text
 
1
+ NUMZOO. A cute baby frog and butterfly in a cherry blossom garden and in a field of tropical flowers, drifting between cherry blossoms and tropical flowers, dewdrops and floating petals