🎓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 Lectures15

📚All📝LLM🎯Prompts🔍RAG🤝Agents🧠Deep Learning💬NLP🤖ML📖Basics
Difficulty:
AllBeginnerIntermediateAdvanced
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
12
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