Skip to content

Commit f02c7bb

Browse files
authored
Fix link to black friday dataset (#32)
1 parent 920b394 commit f02c7bb

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 7.0.2
4+
- `README.md`:
5+
- Fixed link to `black_friday` dataset
6+
37
## 7.0.1
48
- Added code formatting checking step to CI pipline
59
- Corrected `README` examples

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ dependencies:
5555

5656
### Getting started
5757

58-
Let's download some data from [Kaggle](https://www.kaggle.com) - let it be amazing [black friday](https://www.kaggle.com/mehdidag/black-friday)
58+
Let's download some data from [Kaggle](https://www.kaggle.com) - let it be amazing [black friday](https://www.kaggle.com/datasets/sdolezel/black-friday)
5959
dataset. It's pretty interesting data with huge amount of observations (approx. 538000 rows) and a good number of
6060
categorical features.
6161

@@ -90,8 +90,8 @@ Why should we fit it? Categorical data encoder fitting - a process, when all the
9090
searched for in order to create an encoded labels list. After the fitting is complete, one may use the fitted encoder for
9191
the new data of the same source.
9292

93-
In order to fit the encoder, it's needed to create the entity and pass the fitting data as an argument to the
94-
constructor, along with the features to be encoded:
93+
In order to fit the encoder, it's needed to create the instance of the `Encoder` class and pass the fitting data as an
94+
argument to the constructor, along with the features to be encoded:
9595

9696

9797
````dart

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: ml_preprocessing
22
description: Popular data preprocessing algorithms for machine learning
3-
version: 7.0.1
3+
version: 7.0.2
44
homepage: https://github.com/gyrdym/ml_preprocessing
55

66
environment:

0 commit comments

Comments
 (0)