Reduce chatbox height further
Browse files
app.py
CHANGED
@@ -61,13 +61,13 @@ class ChatBotCheese:
|
|
61 |
return [], []
|
62 |
|
63 |
def main(self):
|
64 |
-
with gr.Blocks(css="#chatbot {height:
|
65 |
gr.Markdown(
|
66 |
"""
|
67 |
-
|
68 |
-
### Grounding Language Models to Images for Multimodal Generation
|
69 |
Jing Yu Koh, Ruslan Salakhutdinov, Daniel Fried <br/>
|
70 |
[Paper](https://arxiv.org/abs/2301.13823) [Github](https://github.com/kohjingyu/fromage) <br/>
|
|
|
71 |
- Instructions (in order):
|
72 |
- [Optional] Upload an image (the button with a photo emoji)
|
73 |
- [Optional] Change the parameters
|
|
|
61 |
return [], []
|
62 |
|
63 |
def main(self):
|
64 |
+
with gr.Blocks(css="#chatbot {height:600px; overflow-y:auto;}") as demo:
|
65 |
gr.Markdown(
|
66 |
"""
|
67 |
+
### FROMAGe: Grounding Language Models to Images for Multimodal Generation
|
|
|
68 |
Jing Yu Koh, Ruslan Salakhutdinov, Daniel Fried <br/>
|
69 |
[Paper](https://arxiv.org/abs/2301.13823) [Github](https://github.com/kohjingyu/fromage) <br/>
|
70 |
+
This is an unofficial Gradio demo for the paper FROMAGe <br/>
|
71 |
- Instructions (in order):
|
72 |
- [Optional] Upload an image (the button with a photo emoji)
|
73 |
- [Optional] Change the parameters
|