Carlos-Francisco Méndez-Cruz

Iris dataset for automatic clasification

......@@ -166,7 +166,7 @@ if __name__ == "__main__":
if options.classifier == "MLPClassifier":
oFile.write("Weight matrices\n")
for coef in classifier.coefs_:
oFile.write("coef.shape: {}".format(coef.shape))
oFile.write("coef.shape: {}\n".format(coef.shape))
print(" Saving test report done!")
print("Training and test done in: %fs" % (time() - t0))
......