Skip to content

Commit

Permalink
Cross validator entity: evaluate method now returns Future<Vector> in…
Browse files Browse the repository at this point in the history
…stead of double
  • Loading branch information
gyrdym committed Jun 21, 2020
1 parent 3c1e3cc commit 7378928
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -2,7 +2,8 @@

## 14.0.0
- Breaking change:
- `CrossValidator`: `evalute` method's api changed, it returns a Future resolving with scores Vector now
- `CrossValidator`: `evalute` method's api changed, it returns a Future resolving with scores Vector now instead
of a double value

## 13.10.0
- `LinearRegressor`:
Expand Down
@@ -1,6 +1,6 @@
class InvalidTrainDataColumnsNumberException implements Exception {
InvalidTrainDataColumnsNumberException(int expected, int received) :
message = 'Unexpected columns number in training data, '
message = 'Unexpected columns number in train data, '
'expected $expected, received ${received}';

final String message;
Expand Down

0 comments on commit 7378928

Please sign in to comment.