optimal-pbil

Crates.iooptimal-pbil
lib.rsoptimal-pbil
version0.0.0
sourcesrc
created_at2023-09-27 19:45:35.07621
updated_at2023-09-27 19:45:35.07621
descriptionImplementation of population-based incremental learning (PBIL)
homepage
repositoryhttps://github.com/justinlovinger/optimal-rs/tree/master/optimal-pbil
max_upload_size
id985126
size42,342
Justin Lovinger (justinlovinger)

documentation

README

Workflow Status

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 optimal_pbil::*;

println!(
    "{:?}",
    UntilProbabilitiesConvergedConfig::default()
        .start(Config::start_default_for(16, |point| point.iter().filter(|x| **x).count()))
        .argmin()
);

License: MIT

Commit count: 163

cargo fmt