Machine Learning from Scratch Book

The “Machine Learning from Scratch Book” delves into the fundamentals of building machine learning models without relying on pre-existing libraries. It covers topics such as data augmentation, deterministic bridge engineering, and the challenges of generative AI in enterprise settings. The book emphasizes understanding the core concepts of machine learning, including vector embeddings, multi-tenancy architecture, and retrieval-augmented generation. By exploring real-world applications and practical examples, it aims to provide readers with a comprehensive understanding of machine learning principles and techniques.

Implementation

 Machine Learning from Scratch Book

This section demonstrates how to fit a regression model in Python in practice. The two most common packages for fitting regression models in Python are scikit-learn and statsmodels . Both methods are...

📚 Read more at Machine Learning from Scratch Book
🔎 Find similar documents

Construction

 Machine Learning from Scratch Book

This section demonstrates constructions of bagging models, random forests, and boosting for classification and regression. Each of these relies on the decision tree constructions from the last chapte...

📚 Read more at Machine Learning from Scratch Book
🔎 Find similar documents

Table of Contents

 Machine Learning from Scratch Book

Ordinary Linear Regression The Loss-Minimization Perspective The Likelihood-Maximization Perspective Linear Regression Extensions Regularized Regression (Ridge and Lasso) Bayesian Regression Generali...

📚 Read more at Machine Learning from Scratch Book
🔎 Find similar documents

Conventions and Notation

 Machine Learning from Scratch Book

\[ \newcommand{\sumN}{\sum_{n = 1}^N} \newcommand{\sumn}{\sum_n} \newcommand{\prodN}{\prod_{n = 1}^N} \newcommand{\by}{\mathbf{y}} \newcommand{\bX}{\mathbf{X}} \newcommand{\bx}{\mathbf{x}} \newcomman...

📚 Read more at Machine Learning from Scratch Book
🔎 Find similar documents

Concept

 Machine Learning from Scratch Book

\[ \newcommand{\sumN}{\sum_{n = 1}^N} \newcommand{\sumn}{\sum_n} \newcommand{\bx}{\mathbf{x}} \newcommand{\bbeta}{\boldsymbol{\beta}} \newcommand{\btheta}{\boldsymbol{\theta}} \newcommand{\bbetahat}{...

📚 Read more at Machine Learning from Scratch Book
🔎 Find similar documents

Math

 Machine Learning from Scratch Book

\[ \newcommand{\sumN}{\sum_{n = 1}^N} \newcommand{\sumn}{\sum_n} \newcommand{\prodN}{\prod_{n = 1}^N} \newcommand{\by}{\mathbf{y}} \newcommand{\bX}{\mathbf{X}} \newcommand{\bx}{\mathbf{x}} \newcomman...

📚 Read more at Machine Learning from Scratch Book
🔎 Find similar documents

Probability

 Machine Learning from Scratch Book

Many machine learning methods are rooted in probability theory. Probabilistic methods in this book include linear regression , Bayesian regression , and generative classifiers . This section covers t...

📚 Read more at Machine Learning from Scratch Book
🔎 Find similar documents

Common Methods

 Machine Learning from Scratch Book

\[ \newcommand{\sumN}{\sum_{n = 1}^N} \newcommand{\sumn}{\sum_n} \newcommand{\prodN}{\prod_{n = 1}^N} \newcommand{\by}{\mathbf{y}} \newcommand{\bX}{\mathbf{X}} \newcommand{\bx}{\mathbf{x}} \newcomman...

📚 Read more at Machine Learning from Scratch Book
🔎 Find similar documents

Datasets

 Machine Learning from Scratch Book

The examples in this book use several datasets that are available either through scikit-learn or seaboarn . Those datasets are described briefly below. Boston Housing The Boston housing dataset conta...

📚 Read more at Machine Learning from Scratch Book
🔎 Find similar documents