Update app.py
Browse files
app.py
CHANGED
@@ -60,12 +60,14 @@ examples=[
|
|
60 |
interface = gr.Interface(
|
61 |
fn=generate_image,
|
62 |
inputs=[
|
63 |
-
gr.Textbox(label="Type here your imagination:", placeholder="
|
64 |
gr.Slider(minimum=0, maximum=10000, step=1, label="Seed (optional)")
|
65 |
],
|
66 |
outputs=gr.Image(label="Generated Image"),
|
|
|
67 |
examples=examples,
|
68 |
theme="NoCrypt/miku",
|
|
|
69 |
description="Sorry for the inconvenience. The model is currently running on the CPU, which might affect performance. We appreciate your understanding.",
|
70 |
)
|
71 |
|
|
|
60 |
interface = gr.Interface(
|
61 |
fn=generate_image,
|
62 |
inputs=[
|
63 |
+
gr.Textbox(label="Type here your imagination:", placeholder="Dzongkha text..."),
|
64 |
gr.Slider(minimum=0, maximum=10000, step=1, label="Seed (optional)")
|
65 |
],
|
66 |
outputs=gr.Image(label="Generated Image"),
|
67 |
+
title="Dzongkha Text to Image Generation",
|
68 |
examples=examples,
|
69 |
theme="NoCrypt/miku",
|
70 |
+
article="<h1>Created By:</h1>Mr. Karma Wangchuk<br>Lecturer<br>Information Technology Department<br>College of Science and Technology<br>Rinchending Phuentsholing<br>Chhukha Bhutan<br>",
|
71 |
description="Sorry for the inconvenience. The model is currently running on the CPU, which might affect performance. We appreciate your understanding.",
|
72 |
)
|
73 |
|