Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -56,7 +56,7 @@ def generate_hashtags(image_file):
|
|
| 56 |
top_hashtags = [tag for tag in sorted(set(hashtags), key=hashtags.count, reverse=True) if tag != "#"]
|
| 57 |
return [top_hashtags[:10], output_text]
|
| 58 |
|
| 59 |
-
st.title("
|
| 60 |
|
| 61 |
image_file = st.file_uploader("Upload an image", type=["jpg", "jpeg", "png"])
|
| 62 |
|
|
|
|
| 56 |
top_hashtags = [tag for tag in sorted(set(hashtags), key=hashtags.count, reverse=True) if tag != "#"]
|
| 57 |
return [top_hashtags[:10], output_text]
|
| 58 |
|
| 59 |
+
st.title("HashTag Recommender")
|
| 60 |
|
| 61 |
image_file = st.file_uploader("Upload an image", type=["jpg", "jpeg", "png"])
|
| 62 |
|