GMARTINEZMILLA commited on
Commit
8f035fa
1 Parent(s): 78b679a

feat: generate the filtering by manufacturer not complete

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py CHANGED
@@ -719,7 +719,12 @@ elif page == "🕵️ Análisis de Cliente":
719
  st.warning(f"No predicted or actual data found for customer {customer_code} for 2024.")
720
 
721
  else:
 
 
 
 
722
  with st.spinner(f"Mostrando datos para el fabricante {fabricante_seleccionado}..."):
 
723
  # Mostrar el cliente y el fabricante seleccionados
724
  st.write(f"**Cliente seleccionado:** {customer_code}")
725
  st.write(f"**Fabricante seleccionado:** {fabricante_seleccionado}")
 
719
  st.warning(f"No predicted or actual data found for customer {customer_code} for 2024.")
720
 
721
  else:
722
+ with st.spinner(f"Seleccionando el modelo predictivo..."):
723
+ # Load the Corresponding Model
724
+ model_path = f'models/modelo_cluster_{cluster}.txt'
725
+ gbm = lgb.Booster(model_file=model_path)
726
  with st.spinner(f"Mostrando datos para el fabricante {fabricante_seleccionado}..."):
727
+
728
  # Mostrar el cliente y el fabricante seleccionados
729
  st.write(f"**Cliente seleccionado:** {customer_code}")
730
  st.write(f"**Fabricante seleccionado:** {fabricante_seleccionado}")