Skip to content

Commit 90abccd

Browse files
authored
Update AutoML_Batch_Learning_Dataset_1.ipynb
1 parent 23a4534 commit 90abccd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

AutoML_Batch_Learning_Dataset_1.ipynb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -581,7 +581,8 @@
581581
" alpha = 0.05\n",
582582
" numeric_features = df.drop(['Label'],axis = 1).dtypes[df.dtypes != 'object'].index\n",
583583
" \n",
584-
" # check if the data distribution follows a Gaussian/normal distribution\n",
584+
" # The selection strategy is based on the article: https://medium.com/@kumarvaishnav17/standardization-vs-normalization-in-machine-learning-3e132a19c8bf\n",
585+
" # Check if the data distribution follows a Gaussian/normal distribution\n",
585586
" # If so, select the Z-score normalization method; otherwise, select the min-max normalization\n",
586587
" # Details are in the paper\n",
587588
" if p > alpha:\n",

0 commit comments

Comments
 (0)