Update app.py
Browse files
app.py
CHANGED
|
@@ -94,7 +94,7 @@ if predict_clicked:
|
|
| 94 |
for i in np.argsort(-y_pred[0])[:TOP_N]:
|
| 95 |
st.write(f"{GO[i]} : {y_pred[0][i]:.4f}")
|
| 96 |
|
| 97 |
-
mostrar("ProtBERT (MLP)", y_pb)
|
| 98 |
-
mostrar("ProtBERT-BFD (MLP)", y_bfd)
|
| 99 |
-
mostrar("ESM-2 (MLP)", y_esm)
|
| 100 |
mostrar("Ensemble (Stacking)", y_ens)
|
|
|
|
| 94 |
for i in np.argsort(-y_pred[0])[:TOP_N]:
|
| 95 |
st.write(f"{GO[i]} : {y_pred[0][i]:.4f}")
|
| 96 |
|
| 97 |
+
#mostrar("ProtBERT (MLP)", y_pb)
|
| 98 |
+
#mostrar("ProtBERT-BFD (MLP)", y_bfd)
|
| 99 |
+
#mostrar("ESM-2 (MLP)", y_esm)
|
| 100 |
mostrar("Ensemble (Stacking)", y_ens)
|