Signal archive

Signal

Issue 5 · August 4, 2026 · 4 min read

Edge Computing for Robotics Is Where ML Careers Are Going

IDC sees edge spend racing toward $380B by 2028 while factories install half a million robots a year. The career edge is quantization and on-device deployment, not another cloud demo.

"AI itself is only software. It needs a body to do anything in the real world." - International Federation of Robotics

Cloud models can wait a second for an answer. A warehouse robot cannot.

This week we're talking about the rise of edge computing for robotics and physical AI, and yes, this can get you a very comfortable job.

Here's the idea: more of the valuable ML work in robotics is moving onto the machine itself, under hard limits on latency, power, and memory. According to IDC, global spending on edge computing is about $261 billion in 2025 and is projected to reach nearly $380 billion by 2028 (a 13.8% CAGR). The International Federation of Robotics separately reports 542,076 industrial robots installed in 2024, the second-highest year on record, and lists edge AI as a top 2025 technology trend for real-time response, energy efficiency, and privacy.

That spending is showing up in hiring and tooling. Market research on edge AI for robotics puts the segment around $4.2 billion in 2025 and growing toward the mid-tens of billions by 2034. NVIDIA says more than 2 million developers now use its robotics stack, with Jetson powering edge AI for over 7,000 customers. Teams are short on people who can ship perception and control models that stay accurate on a board attached to a moving machine.

To see why this matters in practice, look at Diligent Robotics. Their hospital robot Moxi has saved clinicians more than half a million hours by ferrying meds, samples, and supplies through real hospitals. The team trained a vision-language model on hundreds of terabytes of data, then distilled it down to about 90 million parameters so it could run onboard NVIDIA Jetson modules. A cloud round trip every time a hallway fills with people would make that robot useless on a nursing floor.

Edge robotics forces a different scoring function: milliseconds, watts, and megabytes matter as much as accuracy on a clean test set.

Now I'm going to explain what this means for you:

The Skill Employers EXPECT

Learn real-time perception under constraints. Most ML courses train models on GPUs with unlimited patience. Robotics teams hire people who can:

  • Profile inference latency and throughput
  • Work within power and thermal budgets
  • Handle camera / lidar streams in real time
  • Fail safely when sensors drop or lighting changes
  • Measure accuracy after the model is compressed

A model that is accurate but 200ms late still fails on a robot.

The Skill That Separates You

Learn model quantization and edge deployment.

Exporting a checkpoint is the easy part. The hard part is taking a cloud-trained model and making it run on-device with TensorRT, ONNX Runtime, or similar tools. You should know how to:

  • Convert models to ONNX
  • Apply FP16 and INT8 quantization
  • Use calibration datasets so accuracy does not collapse
  • Benchmark FPS, latency percentiles, model size, and power draw
  • Pick the smallest model that still meets the robot's safety and accuracy bar

The Project To Learn These Skills This Week

Deploy an object detector under an edge budget.

Dataset: COCO subset, or any small custom object-detection set you can label quickly (warehouse boxes, hospital carts, or street obstacles all work)

Requirements:

  • Train or fine-tune a baseline detector (YOLO-class or equivalent) and record mAP, mean latency, and model size on a desktop GPU
  • Export the model to ONNX and run it with ONNX Runtime (or TensorRT if you have a Jetson / NVIDIA GPU)
  • Quantize to FP16 and INT8. Recalibrate with a held-out calibration set
  • Hit a hard budget: p95 latency under 30ms per frame, model under 50MB, and mAP drop under 3 points vs the FP32 baseline
  • Plot latency vs accuracy for FP32, FP16, and INT8 on one chart
  • Write a short ship / no-ship memo: which precision you would put on a robot, what fails when the camera is dark or motion-blurred, and how you would monitor drift after deployment

This project teaches a practical lesson for physical AI:

A robot model has to keep working when the cloud is unreachable, which usually means a smaller, faster model with an honest accuracy tradeoff.

If you want to sharpen your machine learning skills even more, I also selected a challenge problem for you this week:

If you learned something from this newsletter, make sure to forward it to a friend.

Welford Online Mean and Variance

Easy · ~20 min

Concept: distributed data

Ready to practice?

Turn weekly insights into hands-on ML skills on GRADuateML.