Changeset 1136
- Timestamp:
- 05/01/21 21:07:14 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
framspy/evolalg/examples/niching_novelty.py
r1132 r1136 79 79 80 80 def print_population_count(pop): 81 print("Current :", len(pop))81 print("Current popsize:", len(pop)) 82 82 return pop # Each step must return a population 83 83 … … 230 230 parsed_args = parseArguments() 231 231 232 if os.path.exists(parsed_args.checkpoint_path):232 if parsed_args.checkpoint_path is not None and os.path.exists(parsed_args.checkpoint_path): 233 233 experiment = load_experiment(parsed_args.checkpoint_path) 234 234 FramsticksLib(parsed_args.path, parsed_args.lib,
Note: See TracChangeset
for help on using the changeset viewer.