Spaces:
Running on Zero
Running on Zero
Update app.py
Browse files
app.py
CHANGED
|
@@ -99,7 +99,11 @@ with gr.Blocks(css=css, theme=gr.themes.Soft(primary_hue="violet")) as demo:
|
|
| 99 |
|
| 100 |
|
| 101 |
|
| 102 |
-
gr.Markdown("## FIBO", elem_id="app-title")
|
|
|
|
|
|
|
|
|
|
|
|
|
| 103 |
|
| 104 |
with gr.Row(elem_id="col-container"):
|
| 105 |
with gr.Column(scale=1):
|
|
@@ -121,6 +125,7 @@ with gr.Blocks(css=css, theme=gr.themes.Soft(primary_hue="violet")) as demo:
|
|
| 121 |
with gr.Tab("inspire") as tab_inspire:
|
| 122 |
prompt_inspire_image = gr.Image(
|
| 123 |
label="Inspiration Image",
|
|
|
|
| 124 |
type="pil",
|
| 125 |
)
|
| 126 |
|
|
|
|
| 99 |
|
| 100 |
|
| 101 |
|
| 102 |
+
gr.Markdown("## FIBO", elem_id="app-title")
|
| 103 |
+
gr.Markdown(f"""# FIBO
|
| 104 |
+
8B param text-to-image model trained on structured JSON captions up to 1,000+ words.
|
| 105 |
+
[[non-commercial license]()] [[arxiv](https://arxiv.org/)] [[model](https://huggingface.co/briaai/FIBO)] [[code](https://github.com/Bria-AI/FIBO)]
|
| 106 |
+
""")
|
| 107 |
|
| 108 |
with gr.Row(elem_id="col-container"):
|
| 109 |
with gr.Column(scale=1):
|
|
|
|
| 125 |
with gr.Tab("inspire") as tab_inspire:
|
| 126 |
prompt_inspire_image = gr.Image(
|
| 127 |
label="Inspiration Image",
|
| 128 |
+
info="upload an image input to inspire a text prompt for generation"
|
| 129 |
type="pil",
|
| 130 |
)
|
| 131 |
|