Update instructions
Browse files
app.py
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
|
2 |
os.environ["HF_HUB_ENABLE_HF_TRANSFER"] = "False"
|
3 |
|
4 |
from PIL import Image
|
@@ -77,8 +77,10 @@ class ChatBotCheese:
|
|
77 |
### Grounding Language Models to Images for Multimodal Generation
|
78 |
Jing Yu Koh, Ruslan Salakhutdinov, Daniel Fried <br/>
|
79 |
[Paper](https://arxiv.org/abs/2301.13823) [Github](https://github.com/kohjingyu/fromage) <br/>
|
80 |
-
-
|
81 |
-
|
|
|
|
|
82 |
- Check out the examples at the bottom!
|
83 |
"""
|
84 |
)
|
|
|
1 |
+
import os, time, copy
|
2 |
os.environ["HF_HUB_ENABLE_HF_TRANSFER"] = "False"
|
3 |
|
4 |
from PIL import Image
|
|
|
77 |
### Grounding Language Models to Images for Multimodal Generation
|
78 |
Jing Yu Koh, Ruslan Salakhutdinov, Daniel Fried <br/>
|
79 |
[Paper](https://arxiv.org/abs/2301.13823) [Github](https://github.com/kohjingyu/fromage) <br/>
|
80 |
+
- Instructions:
|
81 |
+
- [Optional] Upload an image
|
82 |
+
- [Optional] Change the parameters
|
83 |
+
- Send a message by typing into the box and pressing Enter on your keyboard
|
84 |
- Check out the examples at the bottom!
|
85 |
"""
|
86 |
)
|