IA y Machine Learning
Machine learning, generación aumentada por recuperación (RAG), aplicaciones de IA y web crawling.
Lagrangian Duality and the KKT Conditions
The primal view trains SVMs by gradient descent, but it hides two treasures: support vectors appear, and the kernel trick becomes possible. Both emerge when we rewrite the SVM through . This is the most mathematical chap
Leer artículo →The Kernel Trick
Here is the idea that turned a linear classifier into one of the most powerful tools in machine learning. A linear SVM can only draw straight boundaries — useless for data shaped like rings or spirals. The lets the very
Leer artículo →Kernels in Depth
The kernel is where you inject knowledge about your data's structure. Choosing and tuning it is the single most consequential decision in applying an SVM. This chapter surveys the standard kernels, explains the crucial p
Leer artículo →Support Vector Regression
The maximum-margin idea is not limited to classification. flips the logic: instead of keeping points a margin, it tries to keep them a tube around the prediction, ignoring small errors entirely. The result is a flexible,
Leer artículo →Solving SVMs: Optimization Algorithms
An SVM is only as useful as our ability to solve its optimization problem efficiently. The dual is a quadratic program with n variables and a dense n n matrix — naively intractable for large data. This chapter explains t
Leer artículo →Multiclass, Probabilities, and Practical SVMs
An SVM is natively a , classifier. Real problems have many classes and often need probabilities. This chapter covers the multiclass schemes, how to extract calibrated probabilities, and the end-to-end craft — scaling, tu
Leer artículo →Margins, VC Dimension, and Generalization
Why does maximizing the margin actually help on data? The answer is one of the crown jewels of machine learning: , developed largely by Vapnik alongside the SVM. This chapter explains VC dimension, the structural-risk-mi
Leer artículo →SVMs versus the World: When to Use What
When should you reach for an SVM today? This chapter places SVMs honestly in the modern landscape — against logistic regression, tree ensembles, and deep networks — with a clear-eyed account of their strengths, weaknesse
Leer artículo →Support Vector Machines in Machine Learning, Deep Learning, and AI
This capstone gathers the threads. It is tempting to file SVMs under ``what we used before deep learning,'' but that misses the deeper story: the ideas SVMs crystallized — , , , — are woven through modern machine learnin
Leer artículo →Algorithm and Hyperparameter Reference
A compact reference for the formulas, algorithms, and knobs used throughout the book.
Leer artículo →What Are Tree-Based Methods?
A decision tree is the most human of machine-learning models: it is a flowchart of yes/no questions, exactly how a doctor triages a patient or a loan officer screens an application. This chapter introduces the core idea
Leer artículo →Decision Trees for Classification
To grow a classification tree we need a precise answer to one question: The answer is — a good split produces child nodes whose samples are as close to a single class as possible. This chapter defines the two purity meas
Leer artículo →Decision Trees for Regression
Trees predict numbers as easily as labels. A partitions the feature space the same way, but each leaf predicts a — the average target in that region — and splits are chosen to reduce rather than class impurity. The resul
Leer artículo →Growing, Splitting, and Pruning
A tree left to grow freely will keep splitting until every leaf is pure — memorizing the training set, noise and all. The art of a single good tree is : how to grow it, when to stop, and how to cut it back. This chapter
Leer artículo →Strengths, Weaknesses, and the Bias–Variance of Trees
Before we multiply trees into forests and boosters, it pays to understand a single tree's character honestly: what it does brilliantly, where it fails, and — most importantly — the bias–variance behavior that motivates e
Leer artículo →Bagging and Random Forests
We now turn high-variance single trees into one of the most robust models in machine learning. The recipe has two ingredients: (train many trees on bootstrap resamples and average them) and the twist (also randomize the
Leer artículo →Boosting: AdaBoost and Gradient Boosting
Bagging builds trees to cut variance. builds them to cut bias: each new tree focuses on what the ensemble got wrong so far. This chapter develops boosting from AdaBoost (reweight the mistakes) to the more general and pow
Leer artículo →Modern Gradient Boosting: XGBoost, LightGBM, CatBoost
Friedman's gradient boosting is the idea; , , and are the engineering that made it dominate. Each adds algorithmic and systems innovations — regularized objectives, second-order optimization, histogram binning, clever tr
Leer artículo →Feature Importance and Interpretability
A single tree is a readable flowchart, but a forest of hundreds or a thousand boosted trees is a black box. The good news: tree ensembles support some of the best interpretability tools in machine learning. This chapter
Leer artículo →Practical Tree Modeling
Knowing the algorithms is half the battle; the other half is the craft of applying them to messy real data. This chapter is a practitioner's checklist: handling categoricals and missing values, dealing with class imbalan
Leer artículo →Specialized and Advanced Trees
Beyond classification, regression, forests, and boosting lies a rich ecosystem of tree variants tuned for special jobs: detecting anomalies, ranking search results, modeling time-to-event, quantifying uncertainty, and sq
Leer artículo →Trees versus the World: When to Use What
When should you reach for a tree ensemble, and when for something else? This chapter places trees in the broader modeling landscape — against linear models and against deep learning — and explains the that make trees so
Leer artículo →Tree-Based Methods in Machine Learning, Deep Learning, and AI
This capstone gathers the threads. Tree-based methods are not a quaint pre-deep-learning relic — they are a living, dominant branch of modern AI, and increasingly they with deep learning. We tour their reign over tabular
Leer artículo →Preface: how to use this book
There is a quiet truth in applied machine learning: while deep networks dominate images, audio, and text, the workhorse for the that run businesses — spreadsheets of customers, transactions, sensors, and records — is a f
Leer artículo →