چه کسانی این کتاب را می‌خوانند

دانشجوعلاقه‌مند یادگیری
کتابخوان حرفه‌ایلذت مطالعه
نویسندهالهام‌گیری

Ensemble Methods for Machine Learning

Gautam Kunapuli

قیمت نهایی

۴۴٬۰۰۰ تومان۴۹٬۰۰۰ تومان۱۰٪ تخفیف
  • تخفیف زمان‌دار−۵٬۰۰۰ تومان

۵٬۰۰۰ تومان صرفه‌جویی نسبت به قیمت اصلی

نسخه اصلی و اورجینال

بلافاصله پس از خرید، فایل کتاب روی دستگاه شما آمادهٔ دانلود است.

تحویل فوری
پرداخت امن
ضمانت فایل
پشتیبانی

مشخصات کتاب

نویسنده
Gautam Kunapuli
سال انتشار
۲۰۲۳
فرمت
EPUB
زبان
انگلیسی
حجم فایل
۱۶٫۱ مگابایت
شابک
9781617297137، 9781638356707، 1617297135، 163835670X

دربارهٔ کتاب

Ensemble machine learning combines the power of multiple machine learning approaches, working together to deliver models that are highly performant and highly accurate. Inside Ensemble Methods for Machine Learning you will find: • Methods for classification, regression, and recommendations • Sophisticated off-the-shelf ensemble implementations • Random forests, boosting, and gradient boosting • Feature engineering and ensemble diversity • Interpretability and explainability for ensemble methods Ensemble machine learning trains a diverse group of machine learning models to work together, aggregating their output to deliver richer results than a single model. Now in Ensemble Methods for Machine Learning you’ll discover core ensemble methods that have proven records in both data science competitions and real-world applications. Hands-on case studies show you how each algorithm works in production. By the time you're done, you'll know the benefits, limitations, and practical methods of applying ensemble machine learning to real-world data, and be ready to build more explainable ML systems. About the technology Automatically compare, contrast, and blend the output from multiple models to squeeze the best results from your data. Ensemble machine learning applies a “wisdom of crowds” method that dodges the inaccuracies and limitations of a single model. By basing responses on multiple perspectives, this innovative approach can deliver robust predictions even without massive datasets. About the book Ensemble Methods for Machine Learning teaches you practical techniques for applying multiple ML approaches simultaneously. Each chapter contains a unique case study that demonstrates a fully functional ensemble method, with examples including medical diagnosis, sentiment analysis, handwriting classification, and more. There’s no complex math or theory—you’ll learn in a visuals-first manner, with ample code for easy experimentation! What's inside • Bagging, boosting, and gradient boosting • Methods for classification, regression, and retrieval • Interpretability and explainability for ensemble methods • Feature engineering and ensemble diversity About the reader For Python programmers with machine learning experience. About the author Gautam Kunapuli has over 15 years of experience in academia and the machine learning industry. contents front matter preface acknowledgments about this book about the author about the cover illustration Part 1 The basics of ensembles 1 Ensemble methods: Hype or hallelujah? 1.1 Ensemble methods: The wisdom of the crowds 1.2 Why you should care about ensemble learning 1.3 Fit vs. complexity in individual models Regression with decision trees Regression with support vector machines 1.4 Our first ensemble 1.5 Terminology and taxonomy for ensemble methods Part 2 Essential ensemble methods 2 Homogeneous parallel ensembles: Bagging and random forests 2.1 Parallel ensembles 2.2 Bagging: Bootstrap aggregating Intuition: Resampling and model aggregation Implementing bagging Bagging with scikit-learn Faster training with parallelization 2.3 Random forests Randomized decision trees Random forests with scikit-learn Feature importances 2.4 More homogeneous parallel ensembles Pasting Random subspaces and random patches Extra Trees 2.5 Case study: Breast cancer diagnosis Loading and preprocessing Bagging, random forests, and Extra Trees Feature importances with random forests 3 Heterogeneous parallel ensembles: Combining strong learners 3.1 Base estimators for heterogeneous ensembles Fitting base estimators Individual predictions of base estimators 3.2 Combining predictions by weighting Majority vote Accuracy weighting Entropy weighting Dempster-Shafer combination 3.3 Combining predictions by meta-learning Stacking Stacking with cross validation 3.4 Case study: Sentiment analysis Preprocessing Dimensionality reduction Blending classifiers 4 Sequential ensembles: Adaptive boosting 4.1 Sequential ensembles of weak learners 4.2 AdaBoost: Adaptive boosting Intuition: Learning with weighted examples Implementing AdaBoost AdaBoost with scikit-learn 4.3 AdaBoost in practice Learning rate Early stopping and pruning 4.4 Case study: Handwritten digit classification Dimensionality reduction with t-SNE Boosting 4.5 LogitBoost: Boosting with the logistic loss Logistic vs. exponential loss functions Regression as a weak learning algorithm for classification Implementing LogitBoost 5 Sequential ensembles: Gradient boosting 5.1 Gradient descent for minimization Gradient descent with an illustrative example Gradient descent over loss functions for training 5.2 Gradient boosting: Gradient descent + boosting Intuition: Learning with residuals Implementing gradient boosting Gradient boosting with scikit-learn Histogram-based gradient boosting 5.3 LightGBM: A framework for gradient boosting What makes LightGBM “light”? Gradient boosting with LightGBM 5.4 LightGBM in practice Learning rate Early stopping Custom loss functions 5.5 Case study: Document retrieval The LETOR data set Document retrieval with LightGBM 6 Sequential ensembles: Newton boosting 6.1 Newton’s method for minimization Newton’s method with an illustrative example Newton’s descent over loss functions for training 6.2 Newton boosting: Newton’s method + boosting Intuition: Learning with weighted residuals Intuition: Learning with regularized loss functions Implementing Newton boosting 6.3 XGBoost: A framework for Newton boosting What makes XGBoost “extreme”? Newton boosting with XGBoost 6.4 XGBoost in practice Learning rate Early stopping 6.5 Case study redux: Document retrieval The LETOR data set Document retrieval with XGBoost Part 3 Ensembles in the wild: Adapting ensemble methods to your data 7 Learning with continuous and count labels 7.1 A brief review of regression Linear regression for continuous labels Poisson regression for count labels Logistic regression for classification labels Generalized linear models Nonlinear regression 7.2 Parallel ensembles for regression Random forests and Extra Trees Combining regression models Stacking regression models 7.3 Sequential ensembles for regression Loss and likelihood functions for regression Gradient boosting with LightGBM and XGBoost 7.4 Case study: Demand forecasting The UCI Bike Sharing data set GLMs and stacking Random forest and Extra Trees XGBoost and LightGBM 8 Learning with categorical features 8.1 Encoding categorical features Types of categorical features Ordinal and one-hot encoding Encoding with target statistics The category_encoders package 8.2 CatBoost: A framework for ordered boosting Ordered target statistics and ordered boosting Oblivious decision trees CatBoost in practice 8.3 Case study: Income prediction Adult Data Set Creating preprocessing and modeling pipelines Category encoding and ensembling Ordered encoding and boosting with CatBoost 8.4 Encoding high-cardinality string features 9 Explaining your ensembles 9.1 What is interpretability? Black-box vs. glass-box models Decision trees (and decision rules) Generalized linear models 9.2 Case study: Data-driven marketing Bank Marketing data set Training ensembles Feature importances in tree ensembles 9.3 Black-box methods for global explainability Permutation feature importance Partial dependence plots Global surrogate models 9.4 Black-box methods for local explainability Local surrogate models with LIME Local interpretability with SHAP 9.5 Glass-box ensembles: Training for interpretability Explainable boosting machines EBMs in practice epilogue E.1 Further reading Practical ensemble methods Theory and foundations of ensemble methods E.2 A few more advanced topics Ensemble methods for statistical relational learning Ensemble methods for deep learning E.3 Thank you! index Ensemble machine learning combines the power of multiple machine learning approaches, working together to deliver models that are highly performant and highly accurate.Inside Ensemble Methods for Machine Learning you will find: Methods for classification, regression, and recommendations Sophisticated off-the-shelf ensemble implementations Random forests, boosting, and gradient boosting Feature engineering and ensemble diversity Interpretability and explainability for ensemble methods Ensemble machine learning trains a diverse group of machine learning models to work together, aggregating their output to deliver richer results than a single model. Now in Ensemble Methods for Machine Learning you'll discover core ensemble methods that have proven records in both data science competitions and real-world applications. Hands-on case studies show you how each algorithm works in production. By the time you're done, you'll know the benefits, limitations, and practical methods of applying ensemble machine learning to real-world data, and be ready to build more explainable ML systems. About the Technology Automatically compare, contrast, and blend the output from multiple models to squeeze the best results from your data. Ensemble machine learning applies a “wisdom of crowds” method that dodges the inaccuracies and limitations of a single model. By basing responses on multiple perspectives, this innovative approach can deliver robust predictions even without massive datasets. About the Book Ensemble Methods for Machine Learning teaches you practical techniques for applying multiple ML approaches simultaneously. Each chapter contains a unique case study that demonstrates a fully functional ensemble method, with examples including medical diagnosis, sentiment analysis, handwriting classification, and more. There's no complex math or theory—you'll learn in a visuals-first manner, with ample code for easy experimentation! What's Inside Bagging, boosting, and gradient boosting Methods for classification, regression, and retrieval Interpretability and explainability for ensemble methods Feature engineering and ensemble diversity About the Reader For Python programmers with machine learning experience. About the Author Gautam Kunapuli has over 15 years of experience in academia and the machine learning industry. Table of Contents PART 1 - THE BASICS OF ENSEMBLES 1 Ensemble methods: Hype or hallelujah? PART 2 - ESSENTIAL ENSEMBLE METHODS 2 Homogeneous parallel ensembles: Bagging and random forests 3 Heterogeneous parallel ensembles: Combining strong learners 4 Sequential ensembles: Adaptive boosting 5 Sequential ensembles: Gradient boosting 6 Sequential ensembles: Newton boosting PART 3 - ENSEMBLES IN THE WILD: ADAPTING ENSEMBLE METHODS TO YOUR DATA 7 Learning with continuous and count labels 8 Learning with categorical features 9 Explaining your ensembles Ensemble machine learning combines the power of multiple machine learning approaches, working together to deliver models that are highly performant and highly accurate. Inside Ensemble Methods for Machine Learning you will Ensemble machine learning trains a diverse group of machine learning models to work together, aggregating their output to deliver richer results than a single model. Now in Ensemble Methods for Machine Learning youll discover core ensemble methods that have proven records in both data science competitions and real-world applications. Hands-on case studies show you how each algorithm works in production. By the time you're done, you'll know the benefits, limitations, and practical methods of applying ensemble machine learning to real-world data, and be ready to build more explainable ML systems. Purchase of the print book includes a free eBook in PDF, Kindle, and ePub formats from Manning Publications. About the Technology Automatically compare, contrast, and blend the output from multiple models to squeeze the best results from your data. Ensemble machine learning applies a wisdom of crowds method that dodges the inaccuracies and limitations of a single model. By basing responses on multiple perspectives, this innovative approach can deliver robust predictions even without massive datasets. About the Book Ensemble Methods for Machine Learning teaches you practical techniques for applying multiple ML approaches simultaneously. Each chapter contains a unique case study that demonstrates a fully functional ensemble method, with examples including medical diagnosis, sentiment analysis, handwriting classification, and more. Theres no complex math or theoryyoull learn in a visuals-first manner, with ample code for easy experimentation! Whats Inside About the Reader For Python programmers with machine learning experience. About the Author Gautam Kunapuli has over 15 years of experience in academia and the machine learning industry. Table of Contents PART 1 - THE BASICS OF ENSEMBLES 1 Ensemble Hype or hallelujah? PART 2 - ESSENTIAL ENSEMBLE METHODS 2 Homogeneous parallel Bagging and random forests 3 Heterogeneous parallel Combining strong learners 4 Sequential Adaptive boosting 5 Sequential Gradient boosting 6 Sequential Newton boosting PART 3 - ENSEMBLES IN THE ADAPTING ENSEMBLE METHODS TO YOUR DATA 7 Learning with continuous and count labels 8 Learning with categorical features 9 Explaining your ensembles InEnsemble Methods for Machine Learning you'll learn to implement the most important ensemble machine learning methods from scratch. Many machine learning problems are too complex to be resolved by a single model or algorithm. Ensemble machine learning trains a group of diverse machine learning models to work together to solve a problem. By aggregating their output, these ensemble models can flexibly deliver rich and accurate results. Ensemble Methods for Machine Learning is a guide to ensemble methods with proven records in data science competitions and real-world applications. Learning from hands-on case studies, you'll develop an under-the-hood understanding of foundational ensemble learning algorithms to deliver accurate, performant models. Purchase of the print book includes a free eBook in PDF, Kindle, and ePub formats from Manning Publications. In Ensemble Methods for Machine Learning you'll learn to implement the most important ensemble machine learning methods from scratch. Many machine learning problems are too complex to be resolved by a single model or algorithm. Ensemble machine learning trains a group of diverse machine learning models to work together to solve a problem. By aggregating their output, these ensemble models can flexibly deliver rich and accurate results. Ensemble Methods for Machine Learning is a guide to ensemble methods with proven records in data science competitions and real-world applications. Learning from hands-on case studies, you'll develop an under-the-hood understanding of foundational ensemble learning algorithms to deliver accurate, performant models.

قیمت نهایی

۴۴٬۰۰۰ تومان