πŸŽ“How I Study AIHISA
πŸ“–Read
πŸ“„PapersπŸ“°Blogs🎬Courses
πŸ’‘Learn
πŸ›€οΈPathsπŸ“šTopicsπŸ’‘Concepts🎴Shorts
🎯Practice
⏱️Coach🧩Problems🧠Thinking🎯Prompts🧠Review
SearchSettings
How I Study AI - Learn AI Papers & Lectures the Easy Way

🎬AI Lectures17

πŸ“šAllπŸ“LLM🎯PromptsπŸ”RAG🀝Agents🧠Deep LearningπŸ’¬NLPπŸ€–MLπŸ“–Basics
Difficulty:
AllBeginnerIntermediateAdvanced
Stanford CS230 | Autumn 2025 | Lecture 6: AI Project StrategyML

Stanford CS230 | Autumn 2025 | Lecture 6: AI Project Strategy

Beginner
Stanford

This lecture explains decision trees as simple, rule-based models for classification and regression. A decision tree splits data by asking yes/no questions about features until the remaining data in a group is mostly one label (pure). Each leaf makes a final prediction by majority vote for classification or by average value for regression. Trees are powerful, easy to understand, and highly interpretable.

#decision tree#random forest#gini impurity
12
Stanford CS329H: Machine Learning from Human Preferences | Autumn 2024 |  Human-centered DesignML

Stanford CS329H: Machine Learning from Human Preferences | Autumn 2024 | Human-centered Design

Beginner
Stanford

Machine learning means building computer systems that learn patterns from data to make predictions or decisions. Instead of hand-coding rules like β€œif you see whiskers and triangle ears, it’s a cat,” we feed many labeled examples and let algorithms learn the rules. The goal is to generalize from past data to new, unseen cases in the future.

#machine learning#learning from data#prediction
Stanford CS329H: Machine Learning from Human Preferences | Autumn 2024 | IntroductionML

Stanford CS329H: Machine Learning from Human Preferences | Autumn 2024 | Introduction

Beginner
Stanford

This lecture introduces decision trees, a classic machine learning method that makes choices by asking a series of yes/no or small set-of-value questions. Each internal node is a test on a feature (like 'Is it Friday or Saturday?'), each branch is the outcome, and each leaf is a predicted label. You classify by starting at the root, following the test outcomes, and stopping at a leaf.

#decision trees#entropy#information gain
Stanford CS329H: Machine Learning from Human Preferences I Guest Lecture: Joseph Jay WilliamsML

Stanford CS329H: Machine Learning from Human Preferences I Guest Lecture: Joseph Jay Williams

Beginner
Stanford

Machine learning is about computers learning patterns from data instead of being told each rule by a programmer. Rather than hardcoding how to spot a cat in a photo, you show many labeled cat and non-cat images, and the computer learns what features matter. This approach shines when problems are too complex to describe with step-by-step rules.

#machine learning#supervised learning#unsupervised learning
Stanford CS329H: Machine Learning from Human Preferences | Autumn 2024 | Mechanism DesignML

Stanford CS329H: Machine Learning from Human Preferences | Autumn 2024 | Mechanism Design

Beginner
Stanford

This lesson explains the core pieces of machine learning: data (X and Y), models f(x;ΞΈ), loss functions that measure mistakes, and optimizers that adjust ΞΈ to reduce the loss. It divides learning into supervised (with labels), unsupervised (without labels), and reinforcement learning (with rewards). The focus here is on supervised learning, especially regression and classification, plus a short intro to k-means clustering.

#supervised learning#unsupervised learning#regression