Add boat + space shuttle places (18 total → 3 rows of 6)
Browse filesBrings the place picker to a clean 3×6 grid. Both PLACE_EMOJIS (app.py) and
PLACE_MAP (image_generator) updated in sync — verified 18/18, order matches.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
- app.py +2 -2
- image_generator.py +2 -0
app.py
CHANGED
|
@@ -26,9 +26,9 @@ ANIMAL_EMOJIS = [
|
|
| 26 |
"🐮", "🐴", "🐔", "🐸", "🦦", "🐧",
|
| 27 |
"🐙", "🦋", "🐝", "🐞", "🦄", "🐉",
|
| 28 |
]
|
| 29 |
-
PLACE_EMOJIS = [
|
| 30 |
"🌊", "🏔️", "🌸", "🌈", "🌙", "⭐", "🌴", "🏡", "🌺", "🍄",
|
| 31 |
-
"🏜️", "🏰", "🎢", "⛺", "🪩", "🎪",
|
| 32 |
]
|
| 33 |
|
| 34 |
MATH_LEVEL_NAMES = {1: "Additions", 2: "Subtractions", 3: "Multiplications", 4: "Mix", 5: "Mix +"}
|
|
|
|
| 26 |
"🐮", "🐴", "🐔", "🐸", "🦦", "🐧",
|
| 27 |
"🐙", "🦋", "🐝", "🐞", "🦄", "🐉",
|
| 28 |
]
|
| 29 |
+
PLACE_EMOJIS = [ # 18 places → renders as 3 rows of 6
|
| 30 |
"🌊", "🏔️", "🌸", "🌈", "🌙", "⭐", "🌴", "🏡", "🌺", "🍄",
|
| 31 |
+
"🏜️", "🏰", "🎢", "⛺", "🪩", "🎪", "⛵", "🚀",
|
| 32 |
]
|
| 33 |
|
| 34 |
MATH_LEVEL_NAMES = {1: "Additions", 2: "Subtractions", 3: "Multiplications", 4: "Mix", 5: "Mix +"}
|
image_generator.py
CHANGED
|
@@ -193,6 +193,8 @@ PLACE_MAP: dict[str, str] = {
|
|
| 193 |
"⛺": "in a cosy camping tent",
|
| 194 |
"🪩": "under a sparkling disco ball",
|
| 195 |
"🎪": "at a colourful circus",
|
|
|
|
|
|
|
| 196 |
}
|
| 197 |
|
| 198 |
# Shared style suffix — must stay in sync with STYLE in scripts/generate_dataset.py.
|
|
|
|
| 193 |
"⛺": "in a cosy camping tent",
|
| 194 |
"🪩": "under a sparkling disco ball",
|
| 195 |
"🎪": "at a colourful circus",
|
| 196 |
+
"⛵": "in a little boat on calm water",
|
| 197 |
+
"🚀": "aboard a space rocket among the stars",
|
| 198 |
}
|
| 199 |
|
| 200 |
# Shared style suffix — must stay in sync with STYLE in scripts/generate_dataset.py.
|