Modern AI systems require efficient training workflows, scalable data pipelines, and deployment strategies that meet real-world performance constraints. In this course, you'll learn how to optimize machine learning workflows and deploy AI models in production environments, including edge devices.
You'll begin by working with PyTorch to implement neural network components using tensor operations and automatic differentiation. You'll analyze GPU utilization and training performance to identify computational bottlenecks and improve throughput.
Next, you'll explore tools and techniques used to visualize and evaluate machine learning experiments. You'll learn how to compare model variants using performance metrics and design standardized workflows that improve experiment reproducibility.
The course also covers building efficient data pipelines that maximize hardware utilization during model training. Finally, you'll evaluate model robustness across data slices and learn how to prepare optimized models for deployment on edge devices where latency and resource constraints matter.
By the end of the course, you'll be able to design efficient ML pipelines, analyze performance bottlenecks, and deploy optimized AI models in real-world environments.
You will move beyond the standard “out-of-the-box” components in PyTorch by building your own custom building block called Squeeze-and-Excite. You will understand why these custom components matter for real-world problems, and you will create one step by step while ensuring it behaves correctly. You will see how data flows through this custom block, how its parameters are stored and updated during learning, and how to verify that everything is connected properly. By the end, you will understand a general pattern you can reuse to build many other custom components for your neural networks.
涵盖的内容
3个视频1篇阅读材料2个作业
显示有关单元内容的信息
3个视频•总计12分钟
Why Custom Layers Matter in PyTorch•5分钟
Tensor Operations & Autograd: How PyTorch Tracks Your Computations•4分钟
Coding a Squeeze-and-Excite Layer in Pytorch•3分钟
1篇阅读材料•总计10分钟
How PyTorch Tracks Your Computations•10分钟
2个作业•总计27分钟
Hands-On Activity: Design a Custom PyTorch Layer with Autograd in Mind•20分钟
Practice Quiz: Core PyTorch & Deep Learning Concepts Check•7分钟
Optimize PyTorch: Build and Accelerate Layers: Speed Up Your AI Training: Double Your GPU Power
第 2 单元•小时 后完成
单元详情
You will learn how to find and fix slowdowns in your AI training code, improving performance from data processing to model training. You will use built-in tools to identify issues such as slow data loading, then apply two practical techniques: one that makes mathematical computations faster while using less memory, and another that allows you to train with larger batches of data without running out of memory. Through quizzes, ready-to-copy code examples, and clear explanations, you will see how to keep your GPU working at full speed instead of sitting idle. By the end, you will be able to streamline complex training workflows into efficient processes that support business success.
涵盖的内容
2个视频1篇阅读材料3个作业
显示有关单元内容的信息
2个视频•总计16分钟
Profiling Your Training Loop with PyTorch •7分钟
Accelerating Training with FP16 and Gradient Accumulation•9分钟
1篇阅读材料•总计8分钟
Diagnosing GPU Bottlenecks: Improving PyTorch Training Throughput •8分钟
3个作业•总计52分钟
Graded Quiz: PyTorch Autograd, Custom Layers, and Training Performance•20分钟
Hands-On Activity: Boost Training Throughput with Profiling, FP16, and Gradient Accumulation•25分钟
Practice Quiz: Training Performance and Optimization Fundamentals •7分钟
Evaluate and Create ML Workflows Visually: Visualizing and Evaluating ML Experiments
第 3 单元•小时 后完成
单元详情
You will explore how visual dashboards help you understand model behavior and compare different training runs. You will learn how to interpret accuracy curves, loss trajectories, and compute trade-offs so you can choose the model variant that is best for the task. By the end, you will know how to evaluate experiments using clear visual evidence rather than guesswork.
涵盖的内容
2个视频1篇阅读材料1个作业
显示有关单元内容的信息
2个视频•总计12分钟
Introductory Video: Why Visual Metrics Matter in ML Evaluation•5分钟
Comparing Model Variants: A Practical Look at ResNet-50 vs. EfficientNet•7分钟
1篇阅读材料•总计8分钟
Understanding Learning Curves in Maching Learning•8分钟
1个作业•总计15分钟
Hands-On Activity: Analyze Experiment Runs in a Visual Dashboard•15分钟
Evaluate and Create ML Workflows Visually: Build Better: Creating Reusable and Standardized ML Workflows
第 4 单元•小时 后完成
单元详情
You will practice structuring reusable ML workflows using modular components. You will explore LightningModule and DataModule patterns, strengthen your documentation habits, and understand how structured templates reduce errors.
涵盖的内容
2个视频1篇阅读材料2个作业
显示有关单元内容的信息
2个视频•总计12分钟
Why Workflow Standardization Saves You Time•7分钟
LightningModule and DataModule: Turning Prototypes Into Pipelines•6分钟
1篇阅读材料•总计8分钟
Building Repeatable and Reusable Machine Learning Workflows •8分钟
2个作业•总计35分钟
Graded Quiz: Evaluate and Create ML Workflows Visually•20分钟
Hands-On Activity: Refactor a Prototype into a Reusable Workflow Template•15分钟
Optimize AI: Build Fast Efficient Pipelines: Build High-Throughput Data Pipelines
第 5 单元•小时 后完成
单元详情
You will explore how data loading, batching, caching, and prefetching impact training speed. You will learn how frameworks like tf.data and PyTorch DataLoader parallelize input operations to keep GPUs busy.
涵盖的内容
3个视频1篇阅读材料1个作业
显示有关单元内容的信息
3个视频•总计12分钟
Introduction and Welcome•4分钟
Why Data Pipelines Determine Training Speed•4分钟
Walkthrough: Composing an Efficient tf.data Pipeline•4分钟
1篇阅读材料•总计10分钟
Parallel Data Loading: Map, Cache, Batch, Prefetch Explained•10分钟
1个作业•总计15分钟
Hands-On Activity: Build and Test a High-Throughput Data Pipeline•15分钟
Optimize AI: Build Fast Efficient Pipelines: Analyze & Prune Model Computational Graphs
第 6 单元•小时 后完成
单元详情
You will explore how computational graphs work, why redundant operations exist, and how pruning them improves model inference latency. You will analyze a model graph, identify unnecessary reshape and identity operations, prune them, re-export the SavedModel, and measure the resulting latency improvements.
涵盖的内容
1个视频1篇阅读材料2个作业
显示有关单元内容的信息
1个视频•总计4分钟
Understanding Model Pruning and Re-export for Efficient Pipelines•4分钟
1篇阅读材料•总计10分钟
Inside a Model’s Computational Graph: Finding Waste•10分钟
2个作业•总计35分钟
Graded Quiz: Optimize AI: Build Fast Efficient Pipelines•20分钟
Hands-On Activity: Reduce Model Latency by Pruning Redundant Ops•15分钟
Optimize and Deploy Edge AI Models: Evaluating Model Robustness on Real-World Data Slices
第 7 单元•小时 后完成
单元详情
You will explore how to evaluate ML models using slice-based performance analysis. You will discover how different environments, devices, and usage-context slices can expose hidden weaknesses in an otherwise accurate model. Through TFMA workflows and hands-on exploration, you will identify a real 5% drop in performance on low-light smartphone images and generate actionable recommendations to improve data quality and fairness. This lesson emphasizes practical robustness evaluation rather than purely theoretical metrics.
涵盖的内容
2个视频1篇阅读材料1个作业
显示有关单元内容的信息
2个视频•总计10分钟
Evaluating Model Robustness on Real-World Data Slices•3分钟
Why Slice-Based Evaluation Matters for Real-World ML•6分钟
1篇阅读材料•总计10分钟
Understanding TFMA and Data Slices in Practice•10分钟
1个作业•总计15分钟
Hands-On Activity: Slice-Based Evaluation with TFMA•15分钟
Optimize and Deploy Edge AI Models: Optimizing and Deploying Models on Edge Devices with TensorFlow Lite
第 8 单元•小时 后完成
单元详情
You will optimize and deploy models to edge hardware using TensorFlow Lite. You will convert a SavedModel into a quantized TFLite model, explore weight and integer quantization options, and deploy the optimized model on a Jetson Nano. You will measure changes in file size, inference speed (FPS), and accuracy, then summarize your results in a reproducible hand-off guide. By the end, you will understand the practical trade-offs between speed, footprint, and accuracy in real edge deployments.
涵盖的内容
1个视频1篇阅读材料2个作业
显示有关单元内容的信息
1个视频•总计5分钟
Deploying the Model to Jetson Nano and Profiling FPS & Size•5分钟
1篇阅读材料•总计10分钟
How TFLite Optimizes Models: Conversion, Quantization, and Deployment Constraints •10分钟
2个作业•总计35分钟
Graded Quiz: Slice-Based Evaluation and Edge Deployment Trade-Offs•20分钟
Hands-On Activity: Edge Deployment with TensorFlow Lite•15分钟
Project: Optimization and Edge Deployment Strategy Brief
第 9 单元•小时 后完成
单元详情
Real-world computer vision systems move through several stages before they are ready for deployment. Engineers must evaluate model experiments, diagnose workflow inefficiencies, improve training pipelines, and ensure that models can operate reliably under real-world and device constraints. These activities require combining performance analysis with practical engineering decisions about system design and deployment readiness. In this integration project, you will act as a machine learning engineer preparing a computer vision model for deployment on edge devices in a resource-constrained environment. You will analyze experiment results, identify performance bottlenecks, evaluate slice-level robustness, and propose workflow and deployment optimizations. The project integrates key engineering activities involved in preparing vision systems for production, including GPU performance diagnosis, experiment visualization and comparison, data pipeline optimization, workflow standardization, and edge deployment trade-off analysis. Rather than focusing on isolated techniques, you will evaluate the full machine learning workflow—from training inefficiencies and experiment interpretation to robustness risks and deployment feasibility. Your final deliverable will be an Optimization and Edge Deployment Strategy Brief, a structured technical report that identifies workflow bottlenecks, proposes targeted optimization strategies, evaluates slice-level risks, and presents a justified edge-deployment recommendation. The project reflects real-world ML engineering responsibilities where professionals must balance accuracy, speed, maintainability, and hardware constraints before approving production deployment.
涵盖的内容
2篇阅读材料1个作业
显示有关单元内容的信息
2篇阅读材料•总计10分钟
Why This Project Matters•5分钟
Project Requirements•5分钟
1个作业•总计60分钟
Optimization and Edge Deployment Strategy Brief •60分钟
Coursera brings together a diverse network of subject matter experts who have demonstrated their expertise through professional industry experience or strong academic backgrounds. These instructors design and teach courses that make practical, career-relevant skills accessible to learners worldwide.
Is Optimizing AI Workflows and Deploying Edge Models suitable for beginners?
This course is designed for learners who already understand machine learning fundamentals. Familiarity with neural networks and model training concepts will help you follow the optimization and deployment topics.
What tools will I learn to use in Optimizing AI Workflows and Deploying Edge Models?
You'll explore tools and frameworks used for modern ML workflows, including PyTorch for model implementation, visualization tools for monitoring experiments, and pipeline techniques for efficient training and deployment.
What practical skills will I gain in Optimizing AI Workflows and Deploying Edge Models?
You’ll learn how to diagnose performance bottlenecks, design efficient machine learning pipelines, evaluate model robustness, and deploy optimized AI models in edge computing environments.
When will I have access to the lectures and assignments?
To access the course materials, assignments and to earn a Certificate, you will need to purchase the Certificate experience when you enroll in a course. You can try a Free Trial instead, or apply for Financial Aid. The course may offer 'Full Course, No Certificate' instead. This option lets you see all course materials, submit required assessments, and get a final grade. This also means that you will not be able to purchase a Certificate experience.
What will I get if I subscribe to this Certificate?
When you enroll in the course, you get access to all of the courses in the Certificate, and you earn a certificate when you complete the work. Your electronic Certificate will be added to your Accomplishments page - from there, you can print your Certificate or add it to your LinkedIn profile.