Complete source comments

Change docstring type to numpy
update hyperameters table and explanation
This commit is contained in:
2021-01-18 14:07:43 +01:00
parent 9b3c7ccdfa
commit 0340584c52
9 changed files with 944 additions and 894 deletions

View File

@@ -8,7 +8,7 @@ random_state = 1
X, y = load_iris(return_X_y=True)
Xtrain, Xtest, ytrain, ytest = train_test_split(
X, y, test_size=0.2, random_state=random_state
X, y, test_size=0.3, random_state=random_state
)
now = time.time()