j-devlog
KO
~/nav

// categories

// tags

filter:[MMD](17)
[MMD]··12min

Probability & Statistics in Practice: Inference Problems from the ML Trenches

From probability fundamentals and Bayes' theorem to distributions, MLE/MAP, confidence intervals, and hypothesis testing — a collection of practice problems grounded in real ML and data analysis scenarios.

#Probability#Statistics#Machine Learning#Assignment#Bayes
[MMD]··18min

Probability & Statistics Coding Assignments: Building ML Statistical Tools in Python

Bayesian updates, distribution simulation, CLT verification, MLE/MAP implementation, confidence intervals, hypothesis testing, and a full A/B test pipeline — implementing probability & statistics chapters 1–4 in code.

#Probability#Statistics#Python#NumPy#scipy
[MMD]··14min

ML Probability & Statistics Chapter 4: Confidence Intervals and Hypothesis Testing

A complete guide to confidence intervals, the t-distribution, hypothesis testing fundamentals (null/alternative hypotheses, p-values, rejection regions, statistical power), various t-tests, and A/B testing.

#Probability#Statistics#Machine Learning#Confidence Interval#Hypothesis Testing
[MMD]··13min

ML Probability & Statistics Chapter 3: Sampling, MLE, and MAP

A concise guide to the core ideas behind ML estimation: populations vs. samples, the Law of Large Numbers, the Central Limit Theorem, Maximum Likelihood Estimation (MLE), Maximum A Posteriori (MAP), and regularization.

#Probability#Statistics#Machine Learning#MLE#Bayes
[MMD]··12min

ML Probability & Statistics Chapter 2: Expected Value, Variance, and Covariance

A guide to descriptive statistics for distributions — expected value, variance, standard deviation, skewness, kurtosis — along with joint distributions, marginal distributions, conditional distributions, covariance, correlation, and the multivariate normal distribution.

#Probability#Statistics#Machine Learning#Expected Value#Covariance
[MMD]··14min

ML Probability & Statistics Chapter 1: Foundations of Probability and Probability Distributions

A comprehensive overview of the probability and statistics essentials for machine learning — from basic probability and conditional probability to Bayes' theorem, and the binomial, normal, and chi-squared distributions.

#Probability#Statistics#Machine Learning#Probability Distribution#Bayes' Theorem
[MMD]··10min

Linear Algebra in Practice: Problems You'll Actually Face in ML

A collection of concept problems applying linear algebra — matrix singularity, rank, eigenvalues, PCA, and more — to real machine learning scenarios. Each problem is grounded in situations you'll commonly encounter in actual ML pipelines.

#Linear Algebra#Machine Learning#Assignment#Practical#Interview Prep
[MMD]··15min

Linear Algebra Coding Practice: Implementing Matrix Operations with NumPy

A hands-on coding practice for implementing matrix operations, Gaussian elimination, eigendecomposition, and PCA from scratch using NumPy. Each problem includes step-by-step hints and complete solution code.

#Linear Algebra#Python#NumPy#Coding Assignment#Machine Learning
[MMD]··15min

Linear Algebra Basics Chapter 4: Eigenvalues, Eigenvectors, and PCA

Wrap up the core of linear algebra: geometric interpretation of determinants, basis and span, eigenvalue/eigenvector computation, how PCA works under the hood with full derivations, and Markov matrices.

#Linear Algebra#Machine Learning#Eigenvalue#PCA#Dimensionality Reduction
[MMD]··13min

Linear Algebra Basics Chapter 3: Vectors, Linear Transformations, Matrix Multiplication, and Inverse Matrices

A comprehensive guide to vector norms, dot products, scalar multiplication, the concept of linear transformations, matrix multiplication, inverse matrix computation, and how all these ideas connect in neural networks (the perceptron).

#Linear Algebra#Machine Learning#Vector#Matrix Multiplication#Neural Network
[MMD]··12min

Linear Algebra Basics Chapter 2: Elimination, Row Echelon Form, and Gaussian Elimination

A clear walkthrough of solving linear systems via elimination, computing Row Echelon Form (REF) and Reduced Row Echelon Form (RREF) through Gaussian elimination, and using Rank to determine the number of solutions.

#Linear Algebra#Machine Learning#Matrix#Mathematics#Gaussian Elimination
[MMD]··10min

Linear Algebra Basics Chapter 1: Systems of Linear Equations and Matrix Singularity

A walkthrough of how systems of linear equations are used in machine learning — covering singular vs. non-singular matrices, linear independence/dependence, and determinant calculation.

#Linear Algebra#Machine Learning#Matrix#Mathematics#Deep Learning
[MMD]··10min

Calculus Concept Practice: Problems You Encounter in ML Optimization

A collection of concept exercises applying differentiation, loss function optimization, gradient descent, and backpropagation to real-world machine learning scenarios. Each problem is grounded in situations you commonly encounter when training models in practice.

#Calculus#Machine Learning#Assignment#Optimization#Backpropagation
[MMD]··16min

Calculus Coding Assignments: Implementing Optimization Algorithms with NumPy

Hands-on coding assignments implementing numerical differentiation, gradient descent, perceptron backpropagation, and Newton's method from scratch with NumPy. Each problem includes step-by-step hints and complete solution code.

#Calculus#Python#NumPy#Coding Assignment#Gradient Descent
[MMD]··13min

ML Calculus Chapter 3: Gradient Descent and Neural Network Optimization

A deep dive into the principles of gradient descent and learning rate, perceptron regression and classification, backpropagation, and Newton's method with the Hessian — the core concepts of neural network optimization.

#Calculus#Machine Learning#Gradient Descent#Backpropagation#Neural Network
[MMD]··11min

ML Calculus Chapter 2: Optimization, Partial Derivatives, and Gradients

A deep dive into the core of machine learning optimization: minimizing loss functions, differentiating squared and log loss, understanding partial derivatives and gradients, and using the gradient to find minima.

#Calculus#Machine Learning#Optimization#Gradient Descent#Gradient
[MMD]··12min

ML Calculus Chapter 1: Derivatives and Key Differentiation Rules

Build an intuitive understanding of derivatives — the engine behind ML optimization — and master the differentiation rules for constants, polynomials, exponentials, logarithms, and trig functions, plus scalar multiplication, sum, product, and chain rules.

#Calculus#Machine Learning#Differentiation#Derivative#Optimization