Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Smoren committed Jan 26, 2025
1 parent 1f3154b commit 0b9451b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scripts/actions/clusters-grade-maximize.ts
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ function parseArgs(argsParser: ArgsParser) {
const composedFinalPopulation = useComposedAlgo ? argsParser.getInt('composedFinalPopulation', 10) : 0;
const genomeAgeWeight = useCache ? 0 : argsParser.getFloat('genomeAgeWeight', 0.5);

const genomeMaxAge = useScheduler ? argsParser.getInt('genomeMaxAge', 5) : undefined;
const genomeMaxAge = useScheduler ? argsParser.getInt('genomeMaxAge', 10) : undefined;
const useDropout = useScheduler ? argsParser.getBool('useDropout', true) : false;

const useAnsiCursor = argsParser.getBool('useAnsiCursor', true);
Expand Down

0 comments on commit 0b9451b

Please sign in to comment.