Adding 1 line comment

master
Aurian JAULT 1 year ago
parent 79faffd3cc
commit 798f4627d2

@ -98,10 +98,12 @@ def plot_columns_hist(columns):
x.hist() x.hist()
plt.show() plt.show()
def printPredictedValues(ypredit,ytest): def printPredictedValues(ypredit,ytest):
for i in range(0,len(ypredit)): for i in range(0,len(ypredit)):
print("✅ Prédit/Réel: ",ypredit[i],ytest[i]) if ypredit[i]==ytest[i] else print("🔴 Prédit/Réel: ",ypredit[i], ytest[i]) print("✅ Prédit/Réel: ",ypredit[i],ytest[i]) if ypredit[i]==ytest[i] else print("🔴 Prédit/Réel: ",ypredit[i], ytest[i])
# Affiche le pourcentage d'apparition dans les résultats faux du modèle pour chacune des classes
def printStatValues(ypredit,ytest): def printStatValues(ypredit,ytest):
galaxyStats = 0 galaxyStats = 0
starStats = 0 starStats = 0

Loading…
Cancel
Save