python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
why keras-tuner .get_best_models() only returns untrained model?
Hi so using keras tuner to do gridsearchs on various hyperparameters.
using
tuner.results_summary(5)
returns hyperparameters and scores of the 5 best models.
We can see then that it is saving a recor...
Brandyn Ewanek
Votes: 0
Answers: 0
How to Get the Best Parameters of Cross_val_score?
How can I get the best parameters?
wrapped = KerasClassifier(build_fn=createmodel_batch, epochs=100, batch_size=5, verbose=0)
folds = StratifiedKFold(n_splits=3, shuffle=True, random_state=15)
results...
Rinad Akl
Votes: 0
Answers: 1
Warning that seems a bug in Matthews correlation coefficient computation
The grid search part of my code looks like this:
svc_param_grid={"C":c, "kernel":kernel, "gamma":gamma, "degree":degree}
grid_cv_object = GridSearchCV(
esti...
Caterina
Votes: 0
Answers: 1
UserWarning: One or more of the test scores are non-finite
I'm a relatively new user to python and have question about warning. I have dataframe that has shape of (96350, 156). With that I am building my decison tree model and using grid search cross validati...
leskovecg
Votes: 0
Answers: 0