Complete source comments (#22)

* Add Hyperparameters description to README
Comment get_subspace method
Add environment info for binder (runtime.txt)

* Complete source comments
Change docstring type to numpy
update hyperameters table and explanation

* Update Jupyter notebooks
This commit is contained in:
Ricardo Montañana Gómez
2021-01-19 10:44:59 +01:00
committed by GitHub
parent e4ac5075e5
commit 3bdac9bd60
10 changed files with 958 additions and 875 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()