Strategies for Hyperparameter Search (Grid Search, Random Search)
Was this section helpful?
Random Search for Hyper-Parameter Optimization, James Bergstra and Yoshua Bengio, 2012Journal of Machine Learning Research, Vol. 13DOI: 10.5555/2188385.2188395 - The foundational paper introducing and demonstrating the effectiveness of random search over grid search for hyperparameter optimization.
Deep Learning, Ian Goodfellow, Yoshua Bengio, and Aaron Courville, 2016 (MIT Press) - A comprehensive textbook covering fundamental concepts of deep learning, including detailed discussions on hyperparameter selection and optimization.
Neural Networks Part 3: Learning and Evaluation, Andrej Karpathy, Justin Johnson, and Fei-Fei Li, 2023Stanford CS231n Convolutional Neural Networks for Visual Recognition course notes - Provides an accessible introduction to neural network training practices, including practical advice on hyperparameter tuning and evaluation strategies.
Tuning the hyper-parameters of an estimator, scikit-learn developers, 2024 - Official documentation explaining how to use GridSearchCV and RandomizedSearchCV for hyperparameter tuning with practical examples.