Update app.py
Browse files
app.py
CHANGED
@@ -75,6 +75,15 @@ with gr.Blocks(css=css) as demo:
|
|
75 |
with gr.Column(elem_id="col-container"):
|
76 |
gr.Markdown(" # NotoGen Text to Image")
|
77 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
78 |
with gr.Row():
|
79 |
prompt = gr.Text(
|
80 |
label="Prompt",
|
|
|
75 |
with gr.Column(elem_id="col-container"):
|
76 |
gr.Markdown(" # NotoGen Text to Image")
|
77 |
|
78 |
+
# Add the blurb for demo and GPU instructions
|
79 |
+
gr.Markdown(
|
80 |
+
"""
|
81 |
+
**Note**: This is a demo application. For faster performance,
|
82 |
+
duplicate this project and enable GPU in the settings. This will allow you
|
83 |
+
to run the application more efficiently.
|
84 |
+
"""
|
85 |
+
)
|
86 |
+
|
87 |
with gr.Row():
|
88 |
prompt = gr.Text(
|
89 |
label="Prompt",
|