Python Forum
'module' object is not callable
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
'module' object is not callable
#1
Hello, I have for files AllOnesGA.py with the main(), GeneticAlgorithm.py,Population.py and Individual.py
My problem is that when I try to run the program with pycharm an error message happens:
'module' object is not callable

the AllOnesGA.py is:
(thanks)

import GeneticAlgorithm
def main():
    ga = GeneticAlgorithm(100, 0.001, 0.95, 0)
    population = ga.initPopulation(50)
    ga.evalPopulation(population)
    generation = 1
    while ga.isTerminationConditionMet(population) == false:
        print("Best solution", population.getFittest(0).toString())
        population = ga.crossoverPopulation(population)
        population = ga.mutatePopulation(population)
        ga.evalPopulation(population)
        generation += 1
    print("Found solution in ", generation, " generations")
    print("Best solution:", population.getFittest(0).toString())
if __name__ == "__main__":
    main()
ps: the wrong lines are 3 and 16
Reply


Messages In This Thread
'module' object is not callable - by psosmol - Apr-15-2019, 04:26 PM
RE: 'module' object is not callable - by Yoriz - Apr-15-2019, 05:01 PM
RE: 'module' object is not callable - by psosmol - Apr-15-2019, 05:26 PM
RE: 'module' object is not callable - by Yoriz - Apr-15-2019, 06:18 PM
RE: 'module' object is not callable - by psosmol - Apr-15-2019, 07:02 PM
RE: 'module' object is not callable - by Yoriz - Apr-15-2019, 07:16 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  error in class: TypeError: 'str' object is not callable akbarza 2 655 Dec-30-2023, 04:35 PM
Last Post: deanhystad
  TypeError: 'NoneType' object is not callable akbarza 4 1,224 Aug-24-2023, 05:14 PM
Last Post: snippsat
  [NEW CODER] TypeError: Object is not callable iwantyoursec 5 1,604 Aug-23-2023, 06:21 PM
Last Post: deanhystad
  Need help with 'str' object is not callable error. Fare 4 968 Jul-23-2023, 02:25 PM
Last Post: Fare
  working with TLV module Object Jennifer_Jone 3 1,268 Mar-14-2023, 07:54 PM
Last Post: Jennifer_Jone
  TypeError: 'float' object is not callable #1 isdito2001 1 1,174 Jan-21-2023, 12:43 AM
Last Post: Yoriz
  'SSHClient' object is not callable 3lnyn0 1 1,257 Dec-15-2022, 03:40 AM
Last Post: deanhystad
  TypeError: 'float' object is not callable TimofeyKolpakov 3 1,662 Dec-04-2022, 04:58 PM
Last Post: TimofeyKolpakov
  API Post issue "TypeError: 'str' object is not callable" makeeley 2 2,086 Oct-30-2022, 12:53 PM
Last Post: makeeley
  Merge htm files with shutil library (TypeError: 'module' object is not callable) Melcu54 5 1,741 Aug-28-2022, 07:11 AM
Last Post: Melcu54

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020