---
title: "Datameister #1 in Intrinsic's robotic-manipulation challenge qualifier"
description: "Datameister ranked #1 of ~160 teams in the Intrinsic AI for Industry Challenge qualifier, a robotic cable-insertion benchmark judged by Google DeepMind and NVIDIA."
author: "Ruben Verhack"
published: 2026-06-11
tags: ["Lab", "Models & Infrastructure"]
canonical: https://datameister.ai/blog/intrinsic-ai-for-industry-challenge-qualifying-first/
---

# Datameister #1 in Intrinsic's robotic-manipulation challenge qualifier

![Datameister #1 in Intrinsic's robotic-manipulation challenge qualifier](https://datameister.ai/blog/intrinsic-ai-for-industry-challenge-qualifying-first/thumbnail_lab_datameister_1_in_intrinsic_s_robotic_manipulation_qualifier_dm_website.png)

> **TL;DR** Datameister is first on the [Intrinsic AI for Industry Challenge](https://www.intrinsic.ai/events/ai-for-industry-challenge) qualifying leaderboard with a score of 293.38, out of roughly 160 teams. The challenge is a cable-insertion benchmark in simulation, run by Intrinsic with Open Robotics, Google DeepMind, and NVIDIA on the evaluation committee. The qualifying window was two and a half months. We landed first place in three weeks.
>
> The skill on test is **precision cable insertion** for electronics assembly: a Universal Robots UR5e cobot with three wrist-mounted cameras and a force-torque sensor picks flexible cables and inserts connectors into a server-tray workcell. Our entry composes a sequence of step-specific policies on top of production-grade perception and 3D-AI primitives from the DM Library. Each step uses the tool that performs best on that specific sub-problem, evaluated empirically.
>
> Result: first on the qualifying leaderboard of roughly 160 teams, ahead of a field that includes well-funded competitors with millions in venture funding.
>
> Applications: cable assembly and connector insertion for electronics manufacturing, deformable-object manipulation, server-tray wiring, manipulation skill catalog for industrial robotics integrators.

![Cover: a UR5e arm with a Robotiq gripper holds an orange-jacketed cable connector above a server-tray fixture in the simulation used by the Intrinsic AI for Industry Challenge.](https://datameister.ai/blog/intrinsic-ai-for-industry-challenge-qualifying-first/cable-insertion-gazebo-thumb.png)
*Our entry to the AIC: a Universal Robots UR5e inserting cables into a server-tray fixture, scored on success, precision, safety, and cycle time. (source: Datameister)*

Electronics manufacturing has been one of the last big holdouts against full robotic assembly. Most steps on a modern line are automated. Cables and connectors are not. Server trays, network gear, and consumer electronics still end up with people handling the wiring step by step, because the physics of flexible cables and the tolerances of connector insertion are genuinely hard for a robot to get right. Intrinsic ran the AI for Industry Challenge to attack exactly that bottleneck, with a $180,000 prize pool and a benchmark that anyone could enter. Datameister is first on the qualifying leaderboard. This post walks through what the challenge is, the skill on test, how we approached it, and what comes next.

## What the AI for Industry Challenge is

The [AI for Industry Challenge](https://www.intrinsic.ai/events/ai-for-industry-challenge) is an open competition run by [Intrinsic](https://www.intrinsic.ai/) (an Alphabet company) together with [Open Robotics](https://www.openrobotics.org/). The evaluation committee includes Francesco Nori (Director of Robotics, Google DeepMind), Amit Goel (Director of Product Management, NVIDIA), Geoffrey Biggs (CTO, Open Robotics), Susanne Nördinger (Universal Robots), Zhe Shi (Foxconn), and Wendy Tan White (CEO, Intrinsic). $180,000 in prizes, three phases:

* **Qualification (March 2 to mid-May 2026):** train and submit a cable-insertion model evaluated in simulation. Roughly 2.5 months. Around 160 teams entered. We just passed this phase.
* **Phase 1 (mid-May to August 2026):** the top 30 teams get access to Intrinsic Flowstate and the Intrinsic Vision Model to build out a full cable-handling solution.
* **Phase 2 (August to September 2026):** the top 10 teams deploy their solutions remotely to a physical workcell at Intrinsic's HQ in California for real-world evaluation.

We were one of the 30 teams that advanced to Phase 1, with the highest score on the qualifying leaderboard.

## The skill on test: precision cable insertion

The skill the AIC measures is what Datameister calls **precision cable insertion** for electronics assembly. The participant toolkit specifies the hardware: a [Universal Robots UR5e](https://www.universal-robots.com/products/ur5e/) cobot, a [Robotiq Hand-E](https://robotiq.com/products/hand-e-adaptive-robot-gripper) gripper, an Axia80 force-torque sensor on the wrist, and three wrist-mounted Basler cameras streaming uncompressed RGB at 20 fps. The task is to pick flexible cables and insert their connectors into a server-tray fixture, generalising across plug types and port configurations.

![Animation: the simulation of our entry. The UR5e arm picks a cable from the workcell and inserts the connector into the server-tray fixture, with the wrist cameras streaming the scene that drives perception.](https://datameister.ai/blog/intrinsic-ai-for-industry-challenge-qualifying-first/cable-insertion-gazebo.gif)
*Our entry running the precision cable-insertion task end to end. The arm relies on the wrist-mounted cameras and the F/T sensor; ground-truth poses are off during scored evaluation. (source: Datameister)*

Submissions are scored by an automated pipeline on four criteria, per [the challenge rules](https://www.intrinsic.ai/events/ai-for-industry-challenge): task success (a binary per insertion), precision (how close the connector lands to its target), safety (penalties for collisions, excessive forces, and excessive jerk on cables or connectors), and efficiency (cycle time for the full set of inserts). The single qualifying score is the weighted combination.

## How we approached precision cable insertion

The harder a robotics problem looks end-to-end, the more it rewards being decomposed. Cable insertion is genuinely a collection of distinct sub-problems, each with its own properties and its own active state of the art.

Our entry composed a sequence of step-specific policies on top of the DM Library, with each step picking the right tool for that step. What runs underneath each step is whatever performs best on that specific sub-problem, evaluated empirically. The composition is what makes the skill, not any one policy choice underneath it.

Four things made three weeks possible:

* **We started from production-grade primitives.** The perception and 3D-AI building blocks in our DM Library have been live and battle-tested across customer projects for years. We did not have to build a perception stack from scratch under tournament time pressure. We composed on top of one.
* **We picked the right tool per sub-problem rather than committing to one stack.** Each sub-problem gets evaluated on its own merits, and the policy that wins on that sub-problem is what runs there.
* **We had the internal process to move research into a working primitive on a short timeline.** Fresh-from-arXiv research moves fast and is rough around the edges. The way we work in our monorepo (see [The Monorepo as AI Factory](https://datameister.ai/blog/the-monorepo-as-ai-factory)) lets us bring new ideas into the library quickly while keeping the existing primitives stable. New techniques get evaluated per sub-problem and only land in the library when they earn their place.
* **We evaluated step by step.** Each sub-problem had its own metric and its own bar. That is the discipline that beats throwing a single monolithic model at the whole task and hoping.

The underlying point: skills are what the buyer talks about, primitives are implementation, and the right move is to compose skills out of primitives where each primitive is the best available tool for its job. The AIC is the first public test that confirms it.

## The result: first on the qualifying leaderboard

![Leaderboard: the Intrinsic AI for Industry Challenge qualifying ranking, with Datameister first at 293.38, ahead of Kinetic Nomads, Out of Control, Robotics@FTN and the rest of the top ten.](https://datameister.ai/blog/intrinsic-ai-for-industry-challenge-qualifying-first/intrinsic-leaderboard.png)
*Qualifying-phase leaderboard, top ten of roughly 160 teams. (leaderboard data: Intrinsic AI for Industry Challenge; chart: Datameister)*

First place at 293.38 on the qualifying leaderboard. Roughly 160 teams entered qualifying; the top 30 advance to Phase 1, and we go in with the highest score. Three weeks of focused work against a two-and-a-half-month window, in a field that includes well-funded competitors with millions of euros in venture funding.

The score margin to second is small (about one point), which we read as a signal that the other top teams are doing serious work too. The standing matters mostly for the next phase; what matters more is how this composes-on-top-of-primitives approach extends to the physical workcell.

## What's next: Phase 1 and the physical workcell

Phase 1 starts immediately. Top 30 teams gain access to [Intrinsic Flowstate](https://www.intrinsic.ai/flowstate) and the [Intrinsic Vision Model](https://www.intrinsic.ai/intrinsic-vision-model) to build out a complete cable-handling solution on top of their qualifying models. Phase 1 winners are announced by August 4, 2026. The top 10 from there move to Phase 2, where solutions are remotely deployed to a real UR5e workcell at Intrinsic's HQ in California, with the final results announced by September 8, 2026.

We will write up the full technical story once the challenge concludes.

## Working with us

Precision cable insertion is one skill in a growing catalog we build for European robotics integrators, on standardized off-the-shelf hardware (the UR5e here, Franka and AGIBOT elsewhere). We take on the hard part between a fresh model and a manipulation skill that runs reliably on a real line, so an integrator can put cognitive robots to work without standing up an in-house AI research team. The integrator keeps the IP for whatever is specific to their use case and data.

If you are an integrator, OEM, or manufacturer trying to get AI-driven manipulation running on real hardware, and the path from research to a reliable deployed skill is your bottleneck, we are glad to talk.
