Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -82,7 +82,7 @@ def main():
|
|
82 |
"No Shopping Intent",
|
83 |
"Fashion & Style",
|
84 |
"Home & Garden",
|
85 |
-
"
|
86 |
]
|
87 |
|
88 |
for img_url in img_urls:
|
@@ -105,5 +105,15 @@ def main():
|
|
105 |
except Exception as e:
|
106 |
st.write(f"Could not process image {img_url}: {e}")
|
107 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
108 |
if __name__ == "__main__":
|
109 |
main()
|
|
|
82 |
"No Shopping Intent",
|
83 |
"Fashion & Style",
|
84 |
"Home & Garden",
|
85 |
+
"General"
|
86 |
]
|
87 |
|
88 |
for img_url in img_urls:
|
|
|
105 |
except Exception as e:
|
106 |
st.write(f"Could not process image {img_url}: {e}")
|
107 |
|
108 |
+
# Additional information at the end
|
109 |
+
st.markdown("""
|
110 |
+
Multi-label image classification model [extracted from Chrome](https://dejanmarketing.com/product-image-optimisation-with-chromes-convolutional-neural-network/).
|
111 |
+
The model can be deployed in an automated pipeline capable of classifying product images in bulk.
|
112 |
+
|
113 |
+
### Engage Our Team
|
114 |
+
Interested in using this in an automated pipeline for bulk image classification?
|
115 |
+
Please [book an appointment](https://dejanmarketing.com/conference/) to discuss your needs.
|
116 |
+
""")
|
117 |
+
|
118 |
if __name__ == "__main__":
|
119 |
main()
|