diff --git a/CHANGELOG.md b/CHANGELOG.md index 0bcea690..ea382c6e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index e5404615..086f7229 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/pubspec.yaml b/pubspec.yaml index a3bf6b86..5cc79403 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -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: