Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #258

Merged
merged 2 commits into from
Aug 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 16.17.12
- update in README
- mention that web is possible
- fix the getIrisDataFrame and Pipeline example

## 16.17.11
- Update contacts in README

Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ The library is a part of the ecosystem:
## What is ml_algo for?

The main purpose of the library is to give native Dart implementation of machine learning algorithms to those who are
interested both in Dart language and data science. This library aims at Dart VM and Flutter, it's impossible to use
it in web applications.
interested both in Dart language and data science. This library aims at Dart VM and Flutter. It is also possible to use
its core features in web applications using web assembly.

## The library content

Expand Down Expand Up @@ -618,13 +618,13 @@ import 'package:ml_dataframe/ml_dataframe.dart';
import 'package:ml_preprocessing/ml_preprocessing.dart';

void main() async {
final samples = getIrisDataset()
final samples = getIrisDataFrame()
.shuffle()
.dropSeries(seriesNames: ['Id']);
.dropSeries(names: ['Id']);

final pipeline = Pipeline(samples, [
encodeAsIntegerLabels(
featureNames: ['Species'], // Here we convert strings from 'Species' column into numbers
toIntegerLabels(
columnNames: ['Species'], // Here we convert strings from 'Species' column into numbers
),
]);
}
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: ml_algo
description: Machine learning algorithms, Machine learning models performance evaluation functionality
version: 16.17.11
version: 16.17.12
homepage: https://github.com/gyrdym/ml_algo

environment:
Expand Down
Loading