Changeset 1140 for framspy/evolalg/examples/niching_novelty.py
- Timestamp:
- 05/08/21 20:10:15 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
framspy/evolalg/examples/niching_novelty.py
r1139 r1140 77 77 parser.add_argument('-max_numconnections', type=int, default=None, help="Maximum number of Neural connections. Default: no limit") 78 78 79 parser.add_argument('-hof_size', type=int, default=10, help="Number of genotypes in Hall of Fame. Default: 10.") 79 80 parser.add_argument('-hof_evaluations', type=int, default=20, help="Number of final evaluations of each genotype in Hall of Fame to obtain reliable (averaged) fitness. Default: 20.") 80 81 parser.add_argument('-checkpoint_path', required=False, default=None, help="Path to the checkpoint file") … … 243 244 # ------------------------------------------------- 244 245 # Statistics 245 hall_of_fame = HallOfFameStatistics( 100, "fitness_raw") # Wrapper for halloffamae246 hall_of_fame = HallOfFameStatistics(parsed_args.hof_size, "fitness_raw") # Wrapper for halloffamae 246 247 replace_with_hof = ReplaceWithHallOfFame(hall_of_fame) 247 248 statistics_deap = StatisticsDeap([
Note: See TracChangeset
for help on using the changeset viewer.