More progress.

This commit is contained in:
2020-02-13 10:17:20 +01:00
parent a54bb70138
commit dd5667d82c
8 changed files with 171 additions and 8 deletions

View File

@@ -32,7 +32,7 @@ fn main() {
model.observe(&["Jerry"], &["Tom"], 3.0);
model.observe(&["Jerry"], &["Tom", "Spike"], 3.5);
model.fit(true);
model.fit();
// We can predict a future outcome...
let (p_win, _p_los) = model.probabilities(&[&"Jerry"], &[&"Tom"], 4.0);