diff --git a/docs/source/img/evolution_process.gif b/docs/source/img/evolution_process.gif index e62ef90c..d0d1201b 100644 Binary files a/docs/source/img/evolution_process.gif and b/docs/source/img/evolution_process.gif differ diff --git a/golem/visualisation/opt_history/genealogical_path.py b/golem/visualisation/opt_history/genealogical_path.py index 8ed83cf7..1e9a4225 100644 --- a/golem/visualisation/opt_history/genealogical_path.py +++ b/golem/visualisation/opt_history/genealogical_path.py @@ -123,9 +123,9 @@ def trace_genealogical_path(individual: Individual, graph_dist: Callable[[Graph, def plot_fitness_with_axvline(generations: List[int], fitnesses: List[float], ax: plt.Axes, current_fitness: float, axvline_x: int = None): ax.plot(generations, fitnesses) - ax.set_title(f'Metric dynamic,\ncurrent: {current_fitness}', fontsize=22) + ax.set_title(f'Fitness dynamic,\ncurrent: {current_fitness}', fontsize=22) ax.set_xlabel('Generation') - ax.set_ylabel('Metric') + ax.set_ylabel('Fitness') if axvline_x is not None: ax.axvline(x=axvline_x, color='black') return ax