Skip to content
Snippets Groups Projects
Commit d495cffc authored by Jaralus's avatar Jaralus
Browse files

update 3 files and create 1 file

parent 496e331f
No related branches found
No related tags found
No related merge requests found
......@@ -35,7 +35,7 @@ def main():
parameters = {
"solver" : ["lbfgs", "sgd", "adam"],
"activation" : ["relu", "logistic", "tanh"],
"learning_rate" : ["cosntant", "invscaling", "adaptive"]
"learning_rate" : ["constant", "invscaling", "adaptive"]
}
search = BayesSearchCV(MLPClassifier(max_iter = 10000), parameters, n_iter = 50, n_jobs = -1, cv = 5, scoring = "accuracy").fit(train_features_scaled, train_labels)
......
......@@ -36,7 +36,7 @@ def main():
parameters = {
"solver" : ["lbfgs", "sgd", "adam"],
"activation" : ["relu", "logistic", "tanh"],
"learning_rate" : ["cosntant", "invscaling", "adaptive"]
"learning_rate" : ["constant", "invscaling", "adaptive"]
}
search = BayesSearchCV(MLPClassifier(max_iter = 10000, solver = "newton-cg"), parameters, n_iter = 50, n_jobs = -1, cv = 5, scoring = "accuracy").fit(train_features_scaled, train_labels)
......
This diff is collapsed.
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment