File tree Expand file tree Collapse file tree 3 files changed +12
-7
lines changed Expand file tree Collapse file tree 3 files changed +12
-7
lines changed Original file line number Diff line number Diff line change 11# Changelog  
22
3+ ## 16.17.12  
4+ -  update in README 
5+     -  mention that web is possible
6+     -  fix the getIrisDataFrame and Pipeline example
7+ 
38## 16.17.11  
49-  Update contacts in README
510
Original file line number Diff line number Diff line change @@ -29,8 +29,8 @@ The library is a part of the ecosystem:
2929## What is ml_algo for?  
3030
3131The 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 .
3434
3535## The library content  
3636
@@ -618,13 +618,13 @@ import 'package:ml_dataframe/ml_dataframe.dart';
618618import 'package:ml_preprocessing/ml_preprocessing.dart'; 
619619
620620void main() async { 
621-     final samples = getIrisDataset () 
621+     final samples = getIrisDataFrame () 
622622      .shuffle() 
623-       .dropSeries(seriesNames : ['Id']); 
623+       .dropSeries(names : ['Id']); 
624624     
625625    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 
628628      ), 
629629    ]); 
630630} 
Original file line number Diff line number Diff line change 11name : ml_algo 
22description : Machine learning algorithms, Machine learning models performance evaluation functionality 
3- version : 16.17.11  
3+ version : 16.17.12  
44homepage : https://github.com/gyrdym/ml_algo 
55
66environment :
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments