This package is experimental. Expect frequent updates to the repository with breaking changes and infrequent releases.
optimal-pbil
Population-based incremental learning (PBIL).
Examples
use *;
println!;
License: MIT
This package is experimental. Expect frequent updates to the repository with breaking changes and infrequent releases.
Population-based incremental learning (PBIL).
use optimal_pbil::*;
println!(
"{:?}",
UntilProbabilitiesConvergedConfig::default()
.start(Config::start_default_for(16, |point| point.iter().filter(|x| **x).count()))
.argmin()
);
License: MIT