Harthika2004 commited on
Commit
851e239
·
verified ·
1 Parent(s): 3a27273

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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', 'Hindi', 'Italian'], index=0)
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
- st.markdown('<center style="opacity: 70%">OR</center>', unsafe_allow_html=True)
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