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

README corrected #147

Merged
merged 1 commit into from
Aug 4, 2020
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 14.2.4
- `README`:
- File path note for flutter developers added

## 14.2.3
- `README`:
- Kfold constructor renamed to kFold
Expand Down
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,8 @@ read it (of course, you should provide a proper path to your downloaded file):
final samples = await fromCsv('datasets/pima_indians_diabetes_database.csv', headerExists: true);
````

*Regarding the file path - keep in mind that it depends on your entry point: if you run your code from the root of your
project having directory `datasets` in the root, a path like `datasets/pima_indians_diabetes_database.csv` will work
for you, but if you run your code from nested directories, you should add `../` in the beginning of the path as may
times as you need in order to ascend to the project's root.*
*For flutter developers: please, read the official flutter.dev article [Read and write files](https://flutter.dev/docs/cookbook/persistence/reading-writing-files)
before manipulating with file system in order to build a correct path to your dataset*

Data in this file is represented by 768 records and 8 features. 9th column is a label column, it contains either 0 or 1
on each row. This column is our target - we should predict a class label for each observation. The column's name is
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: 14.2.3
version: 14.2.4
homepage: https://github.com/gyrdym/ml_algo

environment:
Expand Down