πŸŽ“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 Lectures6

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

Stanford CS230 | Autumn 2025 | Lecture 8: Agents, Prompts, and RAG

Beginner
Stanford

This session sets up course logistics and introduces core machine learning ideas. You learn when and how class meets, where to find materials, how grading works, and why MATLAB is used. It also sets expectations: the course is challenging, homeworks are crucial, and live attendance is encouraged.

#machine learning#supervised learning#unsupervised learning
Stanford CS230 | Autumn 2025 | Lecture 4: Adversarial Robustness and Generative Models
Basics

Stanford CS230 | Autumn 2025 | Lecture 4: Adversarial Robustness and Generative Models

Beginner
Stanford

The lecture explains why we use machine learning instead of writing step-by-step rules. Many real problems, like finding cats in photos, are too messy for hand-written rules because there are too many exceptions. With machine learning, we give the computer lots of examples and it discovers patterns on its own. This approach lets computers handle tasks we can’t easily explain in code.

#machine learning#supervised learning#unsupervised learning
Stanford CME295 Transformers & LLMs | Autumn 2025 | Lecture 3 - Tranformers & Large Language ModelsBasics

Stanford CME295 Transformers & LLMs | Autumn 2025 | Lecture 3 - Tranformers & Large Language Models

Beginner
Stanford

Artificial Intelligence (AI) is the science of making machines do tasks that would need intelligence if a person did them. Today’s AI mostly focuses on specific tasks like recognizing faces or recommending products, which is called narrow AI. A future goal is general AI, which would do any thinking task a human can, but it does not exist yet.

#artificial intelligence#narrow ai#general ai
Stanford CS329H: Machine Learning from Human Preferences | Autumn 2024 | EthicsBasics

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

Beginner
Stanford

The lecture explains regularization, a method to reduce overfitting by adding a penalty to the cost (loss) function that discourages overly complex models. Overfitting is when a model memorizes noise in the training data and fails to generalize. Regularization keeps model parameters (weights) from growing too large, which helps models generalize better to new data.

#regularization#l1#l2
Stanford CS329H: Machine Learning from Human Preferences | Autumn 2024 | VotingBasics

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

Beginner
Stanford

This lecture kicks off an Introduction to Machine Learning course by explaining how the class will run and what you will learn. The instructor, Byron Wallace, introduces the TAs (Max and Zohair), office hours, and where to find all materials (Piazza/Canvas). The course has weekly graded homework, a midterm, and a group final project with a proposal, report, and presentation. Lectures are mostly theory and recorded; hands-on coding happens in homework.

#supervised learning#classification#regression
Stanford CS329H: ML from Human Preferences | Autumn 2024 | Model-based Preference OptimizationBasics

Stanford CS329H: ML from Human Preferences | Autumn 2024 | Model-based Preference Optimization

Beginner
Stanford

Decision trees are flowchart-like models used to predict a class (like yes/no) by asking a series of questions about features. You start at the root and follow branches based on answers until you reach a leaf with a class label. Each internal node tests one attribute, each branch is an outcome of that test, and each leaf gives the prediction.

#decision tree#entropy#information gain