updated app and req
Browse files- app.py +1 -1
- requirements.txt +2 -1
app.py
CHANGED
@@ -3,7 +3,7 @@ from transformers import pipeline
|
|
3 |
from PIL import Image
|
4 |
|
5 |
|
6 |
-
st.header("Character Captions")
|
7 |
st.write("Have a character caption any image you upload!")
|
8 |
character = st.selectbox("Choose a character", ["rapper", "monkey", "shrek", "unintelligible"])
|
9 |
|
|
|
3 |
from PIL import Image
|
4 |
|
5 |
|
6 |
+
st.header("Character Captions (IN PROGRESS!)")
|
7 |
st.write("Have a character caption any image you upload!")
|
8 |
character = st.selectbox("Choose a character", ["rapper", "monkey", "shrek", "unintelligible"])
|
9 |
|
requirements.txt
CHANGED
@@ -1,3 +1,4 @@
|
|
1 |
streamlit
|
2 |
transformers
|
3 |
-
Pillow
|
|
|
|
1 |
streamlit
|
2 |
transformers
|
3 |
+
Pillow
|
4 |
+
tensorflow>=2.0
|