Skip to content

Commit

Permalink
Tweak a bit rosomaxa hyper params
Browse files Browse the repository at this point in the history
  • Loading branch information
reinterpretcat committed Jan 20, 2025
1 parent 1dd07b1 commit 62bb2ae
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rosomaxa/src/population/rosomaxa.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ impl RosomaxaConfig {
/// account data parallelism settings.
pub fn new_with_defaults(selection_size: usize) -> Self {
Self {
initial_size: 32,
initial_size: 16,
selection_size,
elite_size: 2,
node_size: 2,
spread_factor: 0.75,
distribution_factor: 0.75,
distribution_factor: 0.9,
rebalance_memory: 100,
exploration_ratio: 0.9,
}
Expand Down Expand Up @@ -357,7 +357,7 @@ where
node_size: config.node_size,
spread_factor: config.spread_factor,
distribution_factor: config.distribution_factor,
learning_rate: 0.1,
learning_rate: 0.3,
rebalance_memory: config.rebalance_memory,
has_initial_error: true,
},
Expand Down

0 comments on commit 62bb2ae

Please sign in to comment.