Update app.py
Browse files
app.py
CHANGED
@@ -183,7 +183,7 @@ def generate_caption_section():
|
|
183 |
# Language selection dropdown
|
184 |
|
185 |
|
186 |
-
target_language = st.selectbox('Select Target Language', ['English', 'Spanish'
|
187 |
|
188 |
# Process image and generate captions
|
189 |
if img_url:
|
@@ -192,7 +192,7 @@ def generate_caption_section():
|
|
192 |
col1.image(img, caption="Input Image", use_column_width=True)
|
193 |
predict(col2, img, target_language)
|
194 |
|
195 |
-
|
196 |
|
197 |
|
198 |
|
|
|
183 |
# Language selection dropdown
|
184 |
|
185 |
|
186 |
+
target_language = st.selectbox('Select Target Language', ['English', 'Spanish'], index=0)
|
187 |
|
188 |
# Process image and generate captions
|
189 |
if img_url:
|
|
|
192 |
col1.image(img, caption="Input Image", use_column_width=True)
|
193 |
predict(col2, img, target_language)
|
194 |
|
195 |
+
|
196 |
|
197 |
|
198 |
|