Update app.py
Browse files
app.py
CHANGED
@@ -43,12 +43,11 @@ def predict_4(pH: float, EC: float, CCE: float, SOC: float, Sa: float, Si: float
|
|
43 |
input_features_scale = s_c.transform(input_features)
|
44 |
prediction = rf.predict(input_features_scale)[0].round(2)
|
45 |
return prediction
|
46 |
-
|
47 |
# Crear la interfaz Gradio
|
48 |
with gr.Blocks() as demo:
|
49 |
gr.Markdown("""
|
50 |
-
|
51 |
-
<img src="https://www.wycia.com/wp-content/uploads/2016/09/LOGO-PUCP.jpg" width=200px>
|
52 |
""")
|
53 |
|
54 |
gr.Markdown("# Estimaci贸n de la densidad aparente del suelo")
|
|
|
43 |
input_features_scale = s_c.transform(input_features)
|
44 |
prediction = rf.predict(input_features_scale)[0].round(2)
|
45 |
return prediction
|
46 |
+
# <img src="https://www.wycia.com/wp-content/uploads/2016/09/LOGO-PUCP.jpg" width=200px>
|
47 |
# Crear la interfaz Gradio
|
48 |
with gr.Blocks() as demo:
|
49 |
gr.Markdown("""
|
50 |
+
<img src="/file=pucp.png" width=200px>
|
|
|
51 |
""")
|
52 |
|
53 |
gr.Markdown("# Estimaci贸n de la densidad aparente del suelo")
|