The document outlines key concepts in machine learning, including classification, linear and logistic regression, polynomial regression, gradient descent, regularization, dimensionality reduction, and PageRank. Each section provides definitions, equations, and relevant metrics or methods associated with the topic. The content serves as a concise reference for understanding fundamental machine learning algorithms and techniques.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
19 views2 pages
Mod B Concise Summary
The document outlines key concepts in machine learning, including classification, linear and logistic regression, polynomial regression, gradient descent, regularization, dimensionality reduction, and PageRank. Each section provides definitions, equations, and relevant metrics or methods associated with the topic. The content serves as a concise reference for understanding fundamental machine learning algorithms and techniques.
Definition: Prevent overfitting by penalizing large coefficients.
Types: o L1 (Lasso): Shrinks some coefficients to zero (feature selection). o L2 (Ridge): Shrinks coefficients but none to zero. Equation (Ridge): J=MSE+λ∑β2J = MSE + \lambda \sum \beta^2J=MSE+λ∑β2
7. Dimensionality Reduction
Goal: Reduce features while preserving info.
Methods: o PCA (Principal Component Analysis): Projects data onto top variance directions. o t-SNE: For visualizing high-dim data in 2D/3D (not for prediction). Benefits: Faster models, removes multicollinearity, better visualization.
8. PageRank
Definition: Algorithm by Google to rank web pages.
Concept: A page is important if linked by other important pages. Equation (simplified): PR(A)=(1−d)+d(∑PR(B)L(B))PR(A) = (1 - d) + d (\sum \frac{PR(B)}{L(B)})PR(A)=(1−d)+d(∑L(B)PR(B)) where d is damping factor (~0.85), L(B) is number of outbound links from B.