Make verbose an argument for the fit function

This commit is contained in:
2022-06-07 16:04:04 +02:00
parent b01193779d
commit e879377980
8 changed files with 12 additions and 14 deletions

View File

@@ -23,5 +23,5 @@ fn binary_1() {
model.observe(&["benjamin"], &["audrey"], 6.0);
model.observe(&["benjamin"], &["audrey"], 7.0);
model.fit();
model.fit(true);
}