Sumbal Akram

Results 1 comments of Sumbal Akram

``` import pygad import time def mean(IQM): mean_dict = {} for key in IQM[0].keys(): mean_dict[key] = sum(d[key] for d in IQM) / len(IQM) return mean_dict def fitness_func(ga_instance, solution, solution_idx): #cal...