Explorez tous les épisodes du podcast Daily AI Wizard
| Titre | Date | Durée | |
|---|---|---|---|
| Day 10: Training, Testing, and Validation Data—Crack the ML Code, 007 Style! | DailyAIWizard | 24 Mar 2026 | 00:15:22 | |
Welcome to Day 10 of DailyAIWizard, where we’re cracking the ML code, 007 style! I’m Anastasia, your MI6-inspired AI guide, and today we’re on a thrilling mission to master Training, Testing, and Validation Data—the secret agents of Machine Learning success! We’ll uncover their roles, learn how to split data like pros, avoid deadly traps like overfitting, and watch Agent Sophia execute a high-stakes demo using Python and scikit-learn to split a customer dataset. Whether you’re new to AI or following along from Days 1-9, this 26-minute operation will leave you in awe. Let’s decode this mystery together! Task of the Day: Split a dataset into training, testing, and validation sets using Python (like in the demo) and share your split sizes in the comments! Let’s see how you prep your mission! Subscribe for Daily Lessons: Don’t miss Day 11, where we’ll explore Introduction to Deep Learning Applications. Hit the bell to stay updated! Watch Previous Lessons: Day 1: What is AI? Day 2: Types of AI Day 3: Machine Learning vs. Deep Learning vs. AI Day 4: How Does Machine Learning Work? Day 5: Supervised Learning Explained Day 6: Unsupervised Learning Explained Day 7: Reinforcement Learning Basics Day 8: Data in AI: Why It Matters Day 9: Features and Labels in Machine Learning#aiforbeginners #DataSplitting #MachineLearning #ArtificialIntelligence #DailyAIWizard #PythonDemo #ScikitLearnDemo | |||
| Day 09: Features and Labels in Machine Learning—Unlock ML’s Magic! | DailyAIWizard | 23 Mar 2026 | 00:14:09 | |
Welcome to Day 9 of DailyAIWizard, where the magic of Machine Learning comes alive! I’m Anastasia, your super excited AI guide, and today we’re diving into Features and Labels—the heart and soul of ML! We’ll uncover what they are, why they’re crucial, and how to select and engineer them to make models shine. Sophia joins me with an awesome demo using Python and scikit-learn to select features for churn prediction—it’s pure magic! Whether you’re new to AI or following along from Days 1-8, this 25-minute lesson will spark your curiosity. Let’s unlock ML’s secrets together! Task of the Day: Select features from a dataset using Python (like in the demo) and share your top features in the comments! Let’s see what powers your predictions! Subscribe for Daily Lessons: Don’t miss Day 10, where we’ll explore Introduction to Deep Learning. Hit the bell to stay updated! Watch Previous Lessons: Day 1: What is AI? Day 2: Types of AI Day 3: Machine Learning vs. Deep Learning vs. AI Day 4: How Does Machine Learning Work? Day 5: Supervised Learning Explained Day 6: Unsupervised Learning Explained Day 7: Reinforcement Learning Basics Day 8: Data in AI: Why It Matters#AIForBeginners #FeaturesAndLabels #MachineLearning #ArtificialIntelligence #DailyAIWizard #PythonDemo #ScikitLearnDemo | |||
| Day 08: Data in AI: Why It Matters—Unlock AI’s Secret Sauce! | DailyAIWizard | 22 Mar 2026 | 00:13:59 | |
Welcome to Day 8 of DailyAIWizard, where we’re peeling back the curtain on AI’s biggest secret: data! I’m Anastasia, your AI guide, and today we’ll explore why data is the heart of AI, from types and collection to preprocessing and ethics. Sophia joins me with a super cool demo using Python and Pandas to preprocess a customer dataset, getting it AI-ready! Whether you’re new to AI or following along from Days 1-7, this 24-minute lesson will show you how data powers AI magic. Let’s dive in and unlock the secret sauce! Task of the Day: Preprocess a dataset using Pandas (like in the demo) and share your steps in the comments! Let’s see how you prep your data for AI! Subscribe for Daily Lessons: Don’t miss Day 9, where we’ll explore Neural Networks in Action. Hit the bell to stay updated! Watch Previous Lessons: Day 1: What is AI? Day 2: Types of AI Day 3: Machine Learning vs. Deep Learning vs. AI Day 4: How Does Machine Learning Work? Day 5: Supervised Learning Explained Day 6: Unsupervised Learning Explained Day 7: Reinforcement Learning Basics#AIForBeginners #DataInAI #MachineLearning #ArtificialIntelligence #DailyAIWizard #PythonDemo #PandasDemo | |||
| Day 07: Reinforcement Learning Basics—Let’s Get That Pole Balanced! | DailyAIWizard | 22 Mar 2026 | 00:14:40 | |
Welcome to Day 7 of DailyAIWizard, where we make AI learning so easy you’ll wonder why you didn’t start sooner! I’m Anastasia, your AI guide, and today we’re diving into Reinforcement Learning Basics—where machines learn through trial and error, just like us (but hopefully faster, right? ). Sophia steals the show with an amazing demo using OpenAI Gym’s CartPole game, showing an agent learning to balance a pole like a pro! Whether you’re new to AI or catching up from Days 1-6, this 23-minute lesson will blow your mind. Let’s dive into the RL magic! Task of the Day: Try the CartPole demo on your machine (instructions below) and share how long your agent balanced the pole in the comments! Don’t be that person who skips the fun—join in! Run the CartPole Demo on Your Machine:Want to see the CartPole magic yourself? Here’s how to set it up on your local machine—don’t worry, it’s easier than balancing a real pole! Install Python: Make sure you have Python 3.7+ (download from python.org if you don’t). Install Gymnasium: Open your terminal and run pip install "gymnasium[classic-control]" (zsh users, don’t let those brackets trip you up—quote them!). This gets you CartPole and rendering tools like Pygame. Install Stable Baselines3: For an easy RL agent, run pip install stable-baselines3. No excuses—you’ve got this! Run the Script: Copy this code into a file (e.g., cartpole_demo.py):pythonimport gymnasium as gymfrom stable_baselines3 import DQNimport timeenv = gym.make("CartPole-v1", render_mode="human")model = DQN("MlpPolicy", env, verbose=1)model.learn(total_timesteps=5000)obs, _ = env.reset()total_reward = 0for _ in range(1000): action, _ = model.predict(obs, deterministic=True) obs, reward, done, truncated, info = env.step(action) total_reward += reward env.render() time.sleep(0.02) if done or truncated: print(f"Episode finished with total reward: {total_reward}") total_reward = 0 obs, _ = env.reset()env.close()Execute and Watch: Run python cartpole_demo.py and watch the agent learn to balance the pole—first it’s clueless, then it’s a pro!Troubleshooting: If rendering fails, install Pygame (pip install pygame) or ensure you have a graphical environment (Linux users, you might need xvfb).Subscribe for Daily Lessons: Day 8 is coming with an Introduction to Neural Networks—don’t miss it! Hit the bell to stay updated! Watch Previous Lessons: Day 1: What is AI? Day 2: Types of AI Day 3: Machine Learning vs. Deep Learning vs. AI Day 4: How Does Machine Learning Work? Day 5: Supervised Learning Explained Day 6: Unsupervised Learning Explained#AIForBeginners #ReinforcementLearning #MachineLearning #ArtificialIntelligence #DailyAIWizard #OpenAIGym #CartPoleDemo | |||
| Day 06: Unsupervised Learning Explained | DailyAIWizard | 22 Mar 2026 | 00:14:16 | |
Welcome to Day 6 of DailyAIWizard, your journey to mastering AI! In this beginner-friendly lecture, I’m Anastasia, your AI guide, and we’ll take a deep dive into Unsupervised Learning—a fascinating part of Machine Learning that uncovers hidden patterns. Sophia joins us for a demo using Orange to cluster customers with K-Means, showing how Unsupervised Learning groups data without labels! Whether you're new to AI or following along from Days 1-5, this series will guide you from the fundamentals to Python programming in 17 minutes. Let’s dive in! Task of the Day: Try Orange with K-Means on a dataset and share your clusters in the comments! Orange is on: https://orangedatamining.com/download/Subscribe for Daily Lessons: Don’t miss Day 7, where we’ll explore Reinforcement Learning Explained. Hit the bell to stay updated! Watch Previous Lessons: Day 1: What is AI? Day 2: Types of AI Day 3: Machine Learning vs. Deep Learning vs. AI Day 4: How Does Machine Learning Work? Day 5: Supervised Learning Explained#AIForBeginners #UnsupervisedLearning #MachineLearning #ArtificialIntelligence #DailyAIWizard #KMeansClustering #OrangeDemo | |||
| Day 05: Supervised Learning Explained | DailyAIWizard | 21 Mar 2026 | 00:13:52 | |
Welcome to Day 5 of DailyAIWizard, your journey to mastering AI!  In this beginner-friendly lesson, I’m Anastasia, your AI guide, and we’ll take a deep dive into Supervised Learning—a key part of Machine Learning. Sophia joins us for a demo using Weka to predict credit risk, showing Classification in action! Whether you're new to AI or following along from Days 1-4, this series will guide you from the fundamentals to Python programming in 22 minutes. Let’s dive in! Task of the Day: Try Weka with a dataset of your choice and share your prediction results in the comments! Link: https://sourceforge.net/projects/weka/Subscribe for Daily Lessons: Don’t miss Day 6, where we’ll explore Unsupervised Learning Explained. Hit the bell  to stay updated!Watch Previous Lessons: • Day 1: What is AI? • Day 2: Types of AI • Day 3: Machine Learning vs. Deep Learning vs. AI • Day 4: How Does Machine Learning Work?#AIForBeginners #SupervisedLearning #MachineLearning #ArtificialIntelligence #DailyAIWizard | |||
| Day 04: How Does Machine Learning Work? The Basics | DailyAIWizard | 21 Mar 2026 | 00:12:24 | |
Welcome to Day 4 of DailyAIWizard, your 20-minute journey to mastering AI! In this beginner-friendly lesson, I’m Anastasia, your AI guide, and we’ll explore the basics of how Machine Learning works—the foundation of many AI systems. Sophia joins us for a demo using Orange to predict flower types with the Iris dataset, showing Supervised Learning in action! Whether you're new to AI or following along from Days 1-3, this series will guide you from the fundamentals to Python programming. Let’s dive in! Task of the Day: Try Orange with the Iris dataset yourself and share your prediction results in the comments! Link: http://orangedatamining.com/ Subscribe for Daily Lessons: Don’t miss Day 5, where we’ll dive deeper into Supervised Learning Explained. Hit the bell to stay updated! #AIForBeginners #MachineLearning #HowMachineLearningWorks #ArtificialIntelligence #DailyAIWizard | |||
| Day 03: Machine Learning vs. Deep Learning vs. AI | DailyAIWizard | 21 Mar 2026 | 00:10:51 | |
Welcome to Day 3 of DailyAIWizard, your 20-minute journey to mastering AI! In this beginner-friendly lesson, I’m Anastasia, your AI guide, and we’ll explore the differences between Artificial Intelligence, Machine Learning, and Deep Learning. Sophia joins us for a demo using Google’s Teachable Machine to classify cats and dogs, showing Machine Learning in action! Whether you're new to AI or building on Days 1 and 2, this series will guide you from the fundamentals to Python programming. Let’s dive in! Task of the Day: Try Google’s Teachable Machine yourself—train it to classify something simple (like cats and dogs) and share your results in the comments! Google Teachable Machine: teachablemachine.withgoogle.com/ Learn More: Visit wisdomacademy.ai for additional resources and to join our AI learning community. Subscribe for Daily Lessons: Don’t miss Day 4, where we’ll dive into How Machine Learning Works. Hit the bell to stay updated! #AIForBeginners #MachineLearning #DeepLearning #ArtificialIntelligence #DailyAIWizard | |||
| Day 02: Types of AI—Narrow, General, Superintelligent | DailyAIWizard | 21 Mar 2026 | 00:08:51 | |
Welcome to Day 2 of DailyAIWizard, your 20-minute journey to mastering AI! In this beginner-friendly lesson, I’m Anastasia, your AI guide, and we’ll explore the three types of AI—Narrow, General, and Superintelligent. Sophia joins us for a demo showing how ChatGPT, a Narrow AI, answers questions. Learn the differences, examples, and implications of each AI type! Task of the Day: Which type of AI excites you most? Comment below! Subscribe: Don’t miss Day 3—How Does Machine Learning Work? #AIForBeginners #TypesOfAI #ArtificialIntelligence #LearnAI #DailyAIWizard | |||
| Day 01: What is AI? Beginner's Guide to Artificial Intelligence | DailyAIWizard | 21 Mar 2026 | 00:07:31 | |
Welcome to Day 1 of DailyAIWizard, your 20-minute journey to mastering AI! In this beginner-friendly lesson, I’m Anastasia, your AI guide, and we’ll explore the basics of Artificial Intelligence—what it is, its fascinating history, and how it powers tools like Siri and Netflix. Sophia also joins us for a fun demo showing how Craiyon creates AI-generated art! Whether you're new to AI or just curious, this series will guide you from the fundamentals to Python programming. Let’s start your AI adventure! Work with AI Creativity: http://www.craiyon.com/ Task of the Day: List 3 AI tools you use daily in the comments below! For example, do you use Google Maps for navigation? That’s AI at work. Subscribe for Daily Lessons: Don’t miss Day 2, where we’ll dive into the Types of AI—narrow, general, and superintelligent. Hit the bell to stay updated! #AIForBeginners #WhatIsAI #ArtificialIntelligence #LearnAI #DailyAIWizard | |||