File tree 3 files changed +12
-7
lines changed 3 files changed +12
-7
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 16.17.12
4
+ - update in README
5
+ - mention that web is possible
6
+ - fix the getIrisDataFrame and Pipeline example
7
+
3
8
## 16.17.11
4
9
- Update contacts in README
5
10
Original file line number Diff line number Diff line change @@ -29,8 +29,8 @@ The library is a part of the ecosystem:
29
29
## What is ml_algo for?
30
30
31
31
The main purpose of the library is to give native Dart implementation of machine learning algorithms to those who are
32
- interested both in Dart language and data science. This library aims at Dart VM and Flutter, it's impossible to use
33
- it in web applications.
32
+ interested both in Dart language and data science. This library aims at Dart VM and Flutter. It is also possible to use
33
+ its core features in web applications using web assembly .
34
34
35
35
## The library content
36
36
@@ -618,13 +618,13 @@ import 'package:ml_dataframe/ml_dataframe.dart';
618
618
import 'package:ml_preprocessing/ml_preprocessing.dart';
619
619
620
620
void main() async {
621
- final samples = getIrisDataset ()
621
+ final samples = getIrisDataFrame ()
622
622
.shuffle()
623
- .dropSeries(seriesNames : ['Id']);
623
+ .dropSeries(names : ['Id']);
624
624
625
625
final pipeline = Pipeline(samples, [
626
- encodeAsIntegerLabels (
627
- featureNames : ['Species'], // Here we convert strings from 'Species' column into numbers
626
+ toIntegerLabels (
627
+ columnNames : ['Species'], // Here we convert strings from 'Species' column into numbers
628
628
),
629
629
]);
630
630
}
Original file line number Diff line number Diff line change 1
1
name : ml_algo
2
2
description : Machine learning algorithms, Machine learning models performance evaluation functionality
3
- version : 16.17.11
3
+ version : 16.17.12
4
4
homepage : https://github.com/gyrdym/ml_algo
5
5
6
6
environment :
You can’t perform that action at this time.
0 commit comments