frncscp commited on
Commit
c701071
·
1 Parent(s): a9b3c4d

Update pages/Entorno de Ejecución.py

Browse files
Files changed (1) hide show
  1. pages/Entorno de Ejecución.py +1 -1
pages/Entorno de Ejecución.py CHANGED
@@ -175,7 +175,7 @@ with vit:
175
  elif uploaded_file is not None:
176
  with st.spinner('Cargando predicción...'):
177
 
178
- api_result = query(uploaded_file.read(), model_choice[0])
179
  st.write(api_result)
180
 
181
  classifiers = [pipeline("image-classification", model= model_dict[model_choice[i]]) for i in range(len(model_choice))]
 
175
  elif uploaded_file is not None:
176
  with st.spinner('Cargando predicción...'):
177
 
178
+ api_result = query(uploaded_file.read(), model_dict[model_choice[0]])
179
  st.write(api_result)
180
 
181
  classifiers = [pipeline("image-classification", model= model_dict[model_choice[i]]) for i in range(len(model_choice))]