From 05fa220d61860707693830403f5b36bc5bdd9d57 Mon Sep 17 00:00:00 2001 From: danielwilczak101 <44122838+danielwilczak101@users.noreply.github.com> Date: Fri, 4 Dec 2020 03:34:03 -0500 Subject: [PATCH] Changed back adapt and changed generation goal to 100 so its looks normal grpahing --- src/attributes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/attributes.py b/src/attributes.py index b18484f..50d64c7 100644 --- a/src/attributes.py +++ b/src/attributes.py @@ -60,13 +60,13 @@ class Attributes: tournament_size_ratio = 0.10, current_generation = 0, current_fitness = 0, - generation_goal = 15, + generation_goal = 100, fitness_goal = None, tolerance_goal = None, percent_converged = 0.50, chromosome_mutation_rate = 0.15, gene_mutation_rate = 0.05, - adapt_rate = 0.0, + adapt_rate = 0.20, adapt_probability_rate = 0.15, adapt_population_flag = True, max_selection_probability = 0.99,