Community Articles
These articles, tutorials, and walkthroughs are written outside the official project documentation by people using or contributing to sklearn-genetic-opt.
If you publish an article about the project, open a pull request adding it to the bottom of this list. Entries are kept in submission order so the page recognizes contributors fairly without ranking articles.
Please include:
- the article title
- the author name or GitHub handle
- the publication platform
- a short description of what the article teaches
Links should be relevant to sklearn-genetic-opt, respectful, and not primarily promotional.
Articles
Hyperparameters Tuning: From Grid Search to Optimization
Rodrigo Arenas on Medium. Introduces hyperparameter tuning workflows and the motivation for moving beyond exhaustive grid search.Evolutionary Feature Selection for Machine Learning
Rodrigo Arenas on Medium. Explains how evolutionary search can be used for wrapper-based feature selection in machine learning projects.sklearn-genetic-opt 0.13: What Five Years of Genetic Search Taught Me
Rodrigo Arenas on Medium. Shares lessons from the 0.13 release and the evolution of the project over several years.GASearchCV vs RandomizedSearchCV: When Evolutionary Search Pays Off
Andrian Balanescu (@andrianbalanesq) on GitHub. ComparesGASearchCVagainstRandomizedSearchCVon a noisy XGBoost task with a runnable notebook.From Scratch to Streamlined: Comparing My Hand-Built Genetic Algorithm with sklearn-genetic
William on William's Data Science Blog. Walks through building a genetic feature-selection algorithm from scratch, then shows howsklearn-genetic-optreplaces over a hundred lines of custom code with a single library call.Hyperparameter Tuning with GASearchCV on a Real Dataset
Saadgi Puniwala on dev.to. A hands-on comparison ofGASearchCVagainstGridSearchCVon the UCI Student Performance dataset, including fitness evolution and search-space visualizations.