Alexis Galvis commited on
Commit
b249bda
1 Parent(s): 0d788d0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -4
app.py CHANGED
@@ -62,10 +62,6 @@ total_monthly_debt = st.sidebar.number_input(
62
  dti = calculate_dti(annual_inc, total_monthly_debt)
63
  st.sidebar.write(f"DTI Calculado: {dti}%")
64
 
65
- # Footer con enlace a GitHub
66
- st.sidebar.markdown(
67
- "Reporte T茅cnico: [Reporte](https://lying-kiwi-8e8.notion.site/Trabajo-2-Redes-neuronales-y-Algoritmos-bioinspirados-17de8a118671805fac9be354a9fdf490)"
68
- )
69
 
70
  if st.sidebar.button("Predecir"):
71
  # Crear el DataFrame con los datos de entrada
@@ -101,3 +97,8 @@ if st.sidebar.button("Predecir"):
101
  buffer.close()
102
 
103
  st.image(image_data, caption="Distribuci贸n de Puntajes de Cr茅dito", use_container_width=True)
 
 
 
 
 
 
62
  dti = calculate_dti(annual_inc, total_monthly_debt)
63
  st.sidebar.write(f"DTI Calculado: {dti}%")
64
 
 
 
 
 
65
 
66
  if st.sidebar.button("Predecir"):
67
  # Crear el DataFrame con los datos de entrada
 
97
  buffer.close()
98
 
99
  st.image(image_data, caption="Distribuci贸n de Puntajes de Cr茅dito", use_container_width=True)
100
+
101
+ # Footer con enlace a GitHub
102
+ st.sidebar.markdown(
103
+ "Reporte T茅cnico: [Reporte](https://lying-kiwi-8e8.notion.site/Trabajo-2-Redes-neuronales-y-Algoritmos-bioinspirados-17de8a118671805fac9be354a9fdf490)"
104
+ )