From 5826a624f6c15479cfec7ca11ca39a3dbb5f0ae7 Mon Sep 17 00:00:00 2001 From: Ilya Gyrdymov Date: Sun, 21 Jun 2020 14:55:50 +0300 Subject: [PATCH] Cross validator entity: evaluate method now returns Future instead of double --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 27ef2bdb..892ad8f5 100644 --- a/README.md +++ b/README.md @@ -86,7 +86,7 @@ final targetColumnName = 'class variable (0 or 1)'; ```` Then we should create an instance of `CrossValidator` class to fit [hyperparameters](https://en.wikipedia.org/wiki/Hyperparameter_(machine_learning)) -our model. We should pass training data (our `samples` variable), a list of target column names (in our case it's +of our model. We should pass training data (our `samples` variable), a list of target column names (in our case it's just a name stored in `targetColumnName` variable) and a number of folds into CrossValidator constructor. ````dart