Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -173,9 +173,9 @@ def generate_svg(input_ids, attention_mask, pixel_values=None, image_grid_thw=No
|
|
173 |
#Text-to-SVG configuration
|
174 |
gen_config = dict(
|
175 |
do_sample=True,
|
176 |
-
temperature=0.
|
177 |
-
top_p=0.
|
178 |
-
top_k=
|
179 |
repetition_penalty=1.05,
|
180 |
early_stopping=True,
|
181 |
)
|
@@ -261,12 +261,18 @@ def gradio_text_to_svg(text_description):
|
|
261 |
def create_interface():
|
262 |
# Example texts
|
263 |
example_texts = [
|
264 |
-
"A
|
265 |
-
"A
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
266 |
"Cloud icon with an upward arrow symbolizes uploading or cloud storage.",
|
267 |
"A brown chocolate bar is depicted in four square segments with a shiny glossy finish.",
|
268 |
"A colorful moving truck icon with a red and orange cargo container.",
|
269 |
-
"A gray padlock icon symbolizes security and protection.",
|
270 |
"A light blue T-shirt icon is outlined with a bold blue border.",
|
271 |
"A person in a blue shirt and dark pants stands with one hand in a pocket gesturing outward.",
|
272 |
]
|
|
|
173 |
#Text-to-SVG configuration
|
174 |
gen_config = dict(
|
175 |
do_sample=True,
|
176 |
+
temperature=0.8,
|
177 |
+
top_p=0.95,
|
178 |
+
top_k=50,
|
179 |
repetition_penalty=1.05,
|
180 |
early_stopping=True,
|
181 |
)
|
|
|
261 |
def create_interface():
|
262 |
# Example texts
|
263 |
example_texts = [
|
264 |
+
"A sad wilted flower with pink petals slumps over an orange cloud with a blue striped background.",
|
265 |
+
"A cartoon character with dark blue hair and a mustache wears a blue suit against a light blue circular background.",
|
266 |
+
"A blue bookmark icon with a white plus sign in the center.",
|
267 |
+
"A computer monitor displays a bar graph with yellow orange and green bars.",
|
268 |
+
"A blue and gray database icon is overlaid with a yellow star in the bottom right corner.",
|
269 |
+
"An orange thermometer with a circular base represents temperature measurement.",
|
270 |
+
"A green delivery truck icon with a checkmark symbolizing a completed delivery.",
|
271 |
+
"A yellow t-shirt with a heart design represents love and positivity.",
|
272 |
+
"A blue and gray microphone icon symbolizes audio recording or voice input.",
|
273 |
"Cloud icon with an upward arrow symbolizes uploading or cloud storage.",
|
274 |
"A brown chocolate bar is depicted in four square segments with a shiny glossy finish.",
|
275 |
"A colorful moving truck icon with a red and orange cargo container.",
|
|
|
276 |
"A light blue T-shirt icon is outlined with a bold blue border.",
|
277 |
"A person in a blue shirt and dark pants stands with one hand in a pocket gesturing outward.",
|
278 |
]
|