aqibsaeed / Genetic-CNN

CNN architecture exploration using Genetic Algorithm
Apache License 2.0
215 stars 98 forks source link

I can't see the print results at last ! #2

Closed Marryli closed 7 years ago

Marryli commented 7 years ago

I can't see the print results at last !

print top-3 optimal solutions

best_individuals = tools.selBest(popl, k = 3) for bi in best_individuals: print(bi) when I run it ,the result is nothing. I need your help.Thanks.

aqibsaeed commented 7 years ago

Execution will take some time, as for each iteration of GA a CNN model will be trained from scratch. Make sure that all the steps execution complete before you print optimal solution.