You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
print("Predicted output based on the best solution : {prediction}".format(prediction=prediction))
212
+
print(f"Predicted output based on the best solution : {prediction}")
213
213
214
214
if ga_instance.best_solution_generation !=-1:
215
-
print("Best fitness value reached after {best_solution_generation} generations.".format(best_solution_generation=ga_instance.best_solution_generation))
215
+
print(g"Best fitness value reached after {ga_instance.best_solution_generation} generations.")
216
216
217
217
# Saving the GA instance.
218
218
filename ='genetic'# The filename to which the instance is saved. The name is without extension.
0 commit comments