Skip to content

Commit

Permalink
README corrected (#147)
Browse files Browse the repository at this point in the history
file path note for flutter developers added
  • Loading branch information
gyrdym committed Aug 4, 2020
1 parent 810602c commit 60391f3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
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

0 comments on commit 60391f3

Please sign in to comment.