Crates.io | optimal-pbil |
lib.rs | optimal-pbil |
version | 0.0.0 |
source | src |
created_at | 2023-09-27 19:45:35.07621 |
updated_at | 2023-09-27 19:45:35.07621 |
description | Implementation of population-based incremental learning (PBIL) |
homepage | |
repository | https://github.com/justinlovinger/optimal-rs/tree/master/optimal-pbil |
max_upload_size | |
id | 985126 |
size | 42,342 |
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