From d9c18a3a67c42f4a1ccdc6ae6a261d1f9abb5915 Mon Sep 17 00:00:00 2001 From: Vladyslav Serhiienko Date: Wed, 8 Jun 2022 22:20:08 +0200 Subject: [PATCH] Modyfikacja lepszej pracy algorytmu (populacji, proby) --- genetyczny.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/genetyczny.py b/genetyczny.py index 53419fe..8e8894b 100644 --- a/genetyczny.py +++ b/genetyczny.py @@ -8,7 +8,7 @@ def best_route (lista_paczek): problem_fit = mlrose.TSPOpt(length = 5, fitness_fn = koordynaty_paczek, maximize = False) # Znalesc najlepsza paczke za pomocy algorytmu genetycznego - best_state, best_fitness = mlrose.genetic_alg(problem_fit, mutation_prob = 0.5, max_attempts = 100, random_state = 2) + best_state, best_fitness = mlrose.genetic_alg(problem_fit, mutation_prob = 0.2, max_attempts = 200, random_state = 2) print('Najlepsza sciezka: ', best_state) return best_state \ No newline at end of file