Workspace IndexKnowledge Notes › π0.7 — Physical Intelligence's claim: robotics gets its GPT moment, one model, out of the box, across bodies

#99PoC2026-09-19chat

π0.7 — Physical Intelligence's claim: robotics gets its GPT moment, one model, out of the box, across bodies

Chelsea Finn, a Stanford professor and co-founder of Physical Intelligence (PI), gave a talk at a Y Combinator event titled "This is the State of the Art in Robotics" (YouTube, about an hour including Q&A: https://www.youtube.com/watch?v=cRZNwgvcWUg). Her central claim: robotics is moving past an era of policies fine-tuned per task into single general-purpose models that run out of the box and generalize to environments and robot bodies never seen in training — what she calls robotics' GPT/DALL-E moment (23:08, 37:58). The talk is a walk through PI's path there: why physical AI needs a different reliability bar than a chatbot or a coding assistant, two tricks that make robot RL affordable despite the cost of a real rollout, a memory scheme for tasks that run minutes rather than seconds, and PI's general foundation model, named in the summary as π0.7.

For Jayverse this is not a system jay will run, it's a reference case for two things he does have: an interview story about evaluating an embodied agent (Eng), and a cheap real body — a small arm, or the Microduck/Game platform — for running an open-weights policy model like π0 himself.

Why

A recommender, a chatbot, or a coding assistant is advisory: a human reads the output and decides, so a bad suggestion is an inconvenience, not an incident (04:12, 04:26). A robot decides and acts directly in the physical world, often with nobody watching each step, so it needs a much higher reliability bar — Finn puts it above 99% — plus long-horizon autonomy before it is worth deploying at all (04:50, 06:04, 07:55). Waymo's scale, over 250,000 driverless rides a week by the summary's figure, is cited as the existence proof that physical-environment ML can clear that bar (05:18). The rest of the talk is essentially the engineering required to get a manipulation model anywhere close, without the "just run more rollouts" luxury that LLM post-training has.

How it works

An RL recipe that survives real robot hardware

LLM post-training (PPO, GRPO) can afford tens of millions of rollouts because a datacenter can run them in parallel. A real robot can't: rollouts cost wall-clock and hardware time, and by the summary's figure a million trajectories would take roughly 700 days (08:13, 08:47). PI's fix is two changes to where the compute goes, not a new algorithm:

  • Human interventions instead of wasted failure rollouts. When a policy drifts into a bad state — the example given is two boxes grabbed overlapping, then forced into a fold that can't work — a teleoperator steps in, injects a recovery trajectory, or ends the episode early, instead of letting the robot burn time inside a failure it can't recover from on its own (09:44, 10:22).
  • A general-purpose value function instead of many attempts per task. Rather than sampling 50 attempts at one prompt to find out which one worked, PI pretrains a value model on video of many different tasks — folding shirts, taking things out of a fridge — to predict how much progress remains until success. That progress signal is reused across tasks, which is where the efficiency gain comes from (11:10, 12:28).

The result claimed for espresso and latte making: over 90% success across a 13-hour continuous run, covering extraction, steaming milk, and carrying a full, sloshing cup without spilling (13:44, 14:29, 16:35). For Dandelion Chocolate box assembly and for folding laundry in homes the model had never seen, RL post-training alone is credited with roughly doubling throughput (15:07, 16:22).

Multi-scale memory for tasks longer than a few seconds

Most current robot policies are memoryless — they react to the current observation only (17:49). That's a real constraint: feeding raw video frames directly would mean hundreds of thousands of tokens for just ten seconds of footage, far past what a real-time control loop can afford (18:46, 19:01). PI's answer is two time scales: a short-term channel that compresses roughly the last ten seconds of video heavily, and a long-term channel that keeps minutes-to-hours of prior actions as text summaries instead of raw frames (19:39, 19:52). With that, the demo is a 10-15 minute, non-repetitive, multi-step kitchen cleanup — wipe the counter, throw away the paper towel, put the sauce in the fridge, put away and wash dishes — run fully autonomously (20:22, 21:04).

π0.7: one pretrained model, heterogeneous data, compositional transfer

Finn frames this as robotics leaving its BERT era (a base model, then fine-tuned per task) for its GPT/DALL-E era: one model, immediately capable, no task-specific fine-tuning required (25:02, 29:48). The training data is deliberately heterogeneous — not just clean demonstrations, but low-quality demos, failed rollouts, and web video (27:24). Two mechanisms are said to make that low-quality data still helpful rather than harmful: prompting the model with episode-quality and episode-length metadata, and conditioning it on a sub-goal image — a world-model-style guess at a future state — during training (28:41, 36:07, 36:39). The headline result: the single pretrained π0.7, with no task-specific RL, matches or beats π0.6 checkpoints that were separately RL-fine-tuned just for espresso or just for box assembly (30:42).

Two generalization claims follow from that: compositional generalization, where the model opens an air fryer and places a sweet potato inside despite barely any such data in training (31:36, 32:11); and cross-embodiment transfer, where laundry-folding behavior learned only from a small bimanual robot carries over, with no additional training, to a large industrial bi-arm robot with different size, joints, and link lengths (32:50, 33:29).

Q&A: timeline, control level, and how a software engineer gets in

Asked directly whether this is robotics' ChatGPT moment, Finn's answer is qualified: hardware deployment is the slow part, so diffusion of any given model will be gradual, but she expects the underlying model capability to be useful in real work within a few years (39:55, 40:46). On control granularity, she says outputting a target joint angle or a 3D gripper coordinate, tracked by a conventional low-level PD controller, is more stable than having the model output raw motor voltage or torque directly (50:00). One anecdote of emergent behavior: during pinwheel assembly, the robot's usual right-hand pattern was disrupted, and it inserted a pin with its left hand instead — a left/right equivariance nobody explicitly trained (55:10, 55:29). Her advice to a software engineer wanting in: robotics needs the same broad software stack as any product — infrastructure, reliability engineering, data pipelines — and a cheap robot arm running an open-weights model like π0 directly is an effective way to get hands-on with the field (41:25, 57:27).

Where it lands in Jayverse

  • Game/Microduck: the cheap body to run an open model on. If jay wants to try any of this hands-on rather than read about it, a low-cost arm running π0 or a similar open-weights checkpoint is the entry point Finn recommends for engineers; it pairs with Tech #100 (Microduck as jay's physical-AI body) and with the GEN-1.5 item (gen-1-5-one-shot-physical-prompting) as the one-shot cousin of this multi-hour RL story.
  • Theory: value functions, off-policy data, and memory as compression. The general-purpose value function is a progress estimator learned off-policy from heterogeneous video, and the short/long memory split is a lossy-compression design choice under a real-time budget — both are live examples for the Theory notes on value functions and on memory-as-compression, not robotics-specific ideas.
  • Auditor: the checkable claims are the 13-hour run and the 90% figure. Neither number means anything without knowing the task set, the failure definition, and whether "success" was scored by the same model doing the value estimation; before citing this item as evidence of anything, the Auditor's rule should ask "which task set, judged by whom."
  • Eng: an interview question worth keeping. "How would you evaluate a physical agent's reliability before deployment?" is a genuinely good interview prompt, and this talk is the concrete answer key — reliability bar, tail behavior, and the human-intervention loop as a training-time device, not just a safety afterthought.
  • Dark Horse: a data point for the robotics track. If jay ever seriously scopes a robotics side project, this talk's two claims — that RL post-training compute is the real bottleneck, and that cross-embodiment transfer already works for at least one task class — are the two facts to check first before betting a project on either.

Verified and unverified

Verified on 2026-09-19: Chelsea Finn is a Stanford faculty member and a co-founder of Physical Intelligence; PI has publicly released π0 as an open-weights robotics foundation model and has continued to publish successor checkpoints; Waymo operates fully driverless rides at meaningful scale; PPO and GRPO are real reinforcement-learning algorithms used in LLM post-training; a low-level PD (proportional-derivative) controller tracking a higher-level target is a standard robotics control pattern. Taken from the summary and not independently checked: the exact name "π0.7" and its relationship to π0.6, and every specific figure — the >99% reliability bar, Waymo's 250,000+ rides/week, the 700-day estimate for a million trajectories, the 13-hour/90%+ espresso run, the roughly 2x throughput gain from RL post-training, and all timestamps. The video's exact publish date is not given in the summary.

Sources: YouTube — Chelsea Finn, "This is the State of the Art in Robotics" (Y Combinator) · related items: Tech #100 (Microduck as jay's physical-AI body), the GEN-1.5 item gen-1-5-one-shot-physical-prompting (one-shot physical prompting), Tech #63 (a model is weights plus an objective), Tech #62 (agentic engineering writes the boundaries).

Key expressions

Words and phrases from this page worth keeping, with the Korean meaning and the sentence they come from.

Expression뜻 · 쓰이는 자리
out of the box별도 설정·파인튜닝 없이 바로 동작 · 이 항목의 핵심 주장을 표현하는 구. "run out of the box and generalize to environments and robot bodies never seen in training"
PIPhysical Intelligence(첼시 핀이 공동창업한 로보틱스 회사) · 이 항목의 모델 제작사. "PI's path there"
RLReinforcement Learning(강화학습) · 로봇이 시행착오로 정책을 개선하는 학습 방식. "an RL recipe that survives real robot hardware"
rollout롤아웃(정책을 한 번 끝까지 실행해 얻는 궤적 하나) · RL 비용을 셀 때 쓰는 단위. "a real rollout"
PPOProximal Policy Optimization(근접 정책 최적화) · LLM·로봇 RL에서 널리 쓰이는 정책 최적화 알고리즘. "LLM post-training (PPO, GRPO)"
GRPOGroup Relative Policy Optimization(그룹 상대 정책 최적화) · PPO의 최근 변형, 동일 문맥의 롤아웃을 서로 비교. "LLM post-training (PPO, GRPO)"
post-training사후학습(사전학습 이후 정책을 다듬는 단계) · 대규모 사전학습과 구분되는 개념. "the compute goes, not a new algorithm"
teleoperator원격조종자(사람이 원격으로 로봇을 조작) · 실패 복구를 위한 개입 주체. "a teleoperator steps in"
value function가치 함수(현재 상태에서 목표까지 남은 거리를 추정하는 모델) · 이 항목의 두 번째 효율화 장치. "a general-purpose value function instead of many attempts per task"
progress signal진행률 신호(성공까지 얼마나 남았는지를 나타내는 값) · 가치 함수가 만들어 내는 것. "That progress signal is reused across tasks"
memoryless메모리 없음(직전 상태를 기억하지 못하고 현재 관측에만 반응) · 장기 태스크의 한계로 지적된 성질. "Most current robot policies are memoryless"
sub-goal image서브골 이미지(가까운 미래 상태를 미리 상상한 이미지) · 월드모델식 조건부 입력. "conditioning it on a sub-goal image"
world model월드모델(환경이 어떻게 바뀔지 예측하는 내부 모델) · sub-goal image의 개념적 배경. "a world-model-style guess at a future state"
compositional generalization조합적 일반화(배운 부분들을 새로운 조합으로 재사용) · 에어프라이어+고구마 사례를 설명하는 용어. "compositional generalization, where the model opens an air fryer"
cross-embodiment transfer몸체 간 전이(한 로봇에서 배운 것을 다른 형태의 로봇에 적용) · 소형→대형 양팔 로봇 전이 사례. "cross-embodiment transfer, where laundry-folding behavior... carries over"
PD controller비례-미분 제어기(목표값을 추종하는 표준 저수준 제어기) · 모델의 출력을 실제 모터 동작으로 바꾸는 계층. "tracked by a conventional low-level PD controller"
equivariance등가성(좌우 등 대칭 변환에도 같은 방식으로 대응하는 성질) · 왼손으로 핀을 꽂은 창발 행동을 설명. "a left/right equivariance nobody explicitly trained"
long-horizon (autonomy)장기 자율성(긴 시간 동안 사람 개입 없이 스스로 동작) · 물리 AI에 요구되는 신뢰성 기준의 일부. "long-horizon autonomy before it is worth deploying"
existence proof존재 증명(가능하다는 것을 보여주는 실제 사례) · Waymo 규모를 인용하는 맥락. "the existence proof that physical-environment ML can clear that bar"
diffusion (of a technology)확산(기술이 실제로 퍼져 쓰이는 속도) · 모델 역량과 별개로 하드웨어 배포가 느리다는 논점. "diffusion of any given model will be gradual"

← All Knowledge Notes · Workspace Index · Top ↑

π0.7 — Physical Intelligence의 주장: 로보틱스도 GPT 모먼트를 맞는다, 단일 모델이 out of the box로, 여러 몸체를 넘나들며

스탠퍼드 교수이자 Physical Intelligence(PI) 공동창업자인 첼시 핀(Chelsea Finn)이 Y Combinator 행사에서 "This is the State of the Art in Robotics"라는 제목으로 강연했다(YouTube, Q&A 포함 약 1시간: https://www.youtube.com/watch?v=cRZNwgvcWUg). 핵심 주장은 이렇다. 로보틱스는 태스크별로 파인튜닝하는 시대를 지나, 단일 범용 모델이 out of the box로 실행되고 학습 때 본 적 없는 환경과 로봇 몸체로 일반화되는 시대로 넘어가고 있다 — 핀은 이것을 로보틱스의 GPT/DALL-E 모먼트라 부른다(23:08, 37:58). 강연은 PI가 거기까지 간 경로를 훑는다. 물리적 AI가 챗봇이나 코딩 도구와 왜 다른 신뢰성 기준을 요구하는지, 실제 롤아웃 비용에도 불구하고 로봇 RL을 감당할 수 있게 만드는 두 가지 트릭, 몇 초가 아니라 몇 분짜리 태스크를 위한 메모리 구조, 그리고 요약에서 π0.7로 불리는 PI의 범용 파운데이션 모델까지.

Jayverse에서 이것은 jay가 직접 돌릴 시스템은 아니고, jay가 이미 가진 두 가지의 참조 사례다. 물리적(embodied) 에이전트를 어떻게 평가할지에 대한 면접 이야깃거리(Eng), 그리고 π0 같은 오픈 가중치 정책 모델을 직접 돌려볼 저렴한 실물 몸체 — 소형 로봇 팔이나 Microduck/Game 플랫폼.

추천 시스템, 챗봇, 코딩 도구는 보조적이다. 사람이 출력을 읽고 최종 결정을 내리므로 나쁜 제안은 불편함일 뿐 사고가 아니다(04:12, 04:26). 로봇은 물리 세계에서 직접 결정하고 행동하며, 종종 각 단계를 지켜보는 사람이 없다. 그래서 배포할 가치가 있으려면 훨씬 높은 신뢰성 기준 — 핀은 99% 이상이라 말한다 — 과 장기 자율성이 필요하다(04:50, 06:04, 07:55). Waymo의 규모, 요약 수치로 주간 25만 회 이상의 무인 주행은 물리 환경 ML이 그 기준을 넘을 수 있다는 존재 증명으로 인용된다(05:18). 강연의 나머지는 사실상, LLM 사후학습이 누리는 "그냥 롤아웃을 더 돌리면 된다"는 사치 없이 조작(manipulation) 모델을 그 기준 근처까지 끌어올리는 데 필요한 엔지니어링이다.

동작 방식

실제 로봇 하드웨어에서 버티는 RL 레시피

LLM 사후학습(PPO, GRPO)은 데이터센터에서 병렬로 돌릴 수 있어 수천만 롤아웃을 감당한다. 실제 로봇은 그럴 수 없다. 롤아웃마다 실제 시간과 하드웨어 시간이 들고, 요약의 수치로는 궤적 100만 개에 약 700일이 걸린다(08:13, 08:47). PI의 해법은 새 알고리즘이 아니라 연산을 어디에 쓰는지를 바꾸는 두 가지다.

  • 실패 롤아웃을 낭비하는 대신 사람이 개입. 정책이 나쁜 상태로 빠질 때 — 예시는 박스 두 개가 겹쳐 집혀서 접을 수 없는 상황으로 억지로 진행되는 경우 — 원격조종자가 개입해 복구 궤적을 주입하거나 에피소드를 조기 종료시킨다. 로봇이 스스로 벗어날 수 없는 실패 안에서 시간을 태우게 두지 않는다(09:44, 10:22).
  • 태스크마다 여러 번 시도하는 대신 범용 가치 함수. 한 프롬프트에 50번 시도해서 어느 것이 성공했는지 알아내는 대신, PI는 셔츠 접기, 냉장고에서 물건 꺼내기 등 다양한 태스크의 비디오로 가치 모델을 사전 훈련해 성공까지 얼마나 남았는지를 예측하게 한다. 이 진행률 신호가 태스크 전반에 재사용되는 것이 효율 향상의 원천이다(11:10, 12:28).

에스프레소·라떼 제조에서 주장되는 결과는 13시간 연속 가동에서 90% 이상의 성공률이며, 추출, 우유 스티밍, 찰랑거리는 잔을 쏟지 않고 옮기는 것까지 포함한다(13:44, 14:29, 16:35). Dandelion Chocolate 박스 조립과, 학습 때 본 적 없는 가정집에서의 옷 접기에서는 RL 사후학습만으로 처리량이 약 두 배가 되었다고 한다(15:07, 16:22).

몇 초 이상 걸리는 태스크를 위한 다중 스케일 메모리

현재 대부분의 로봇 정책은 메모리가 없다 — 현재 관측에만 반응한다(17:49). 이는 실질적 제약이다. 영상 프레임을 그대로 넣으면 단 10초에도 수십만 토큰이 되어, 실시간 제어 루프가 감당할 수 있는 수준을 훨씬 넘는다(18:46, 19:01). PI의 답은 두 시간 스케일이다. 최근 약 10초의 영상을 강하게 압축하는 단기 채널, 그리고 수 분에서 수 시간 전의 행동을 원본 프레임 대신 텍스트 요약으로 유지하는 장기 채널(19:39, 19:52). 이를 통해 시연된 것은 10~15분짜리, 반복되지 않는 다단계 주방 청소 — 카운터 닦기, 종이타월 버리기, 소스를 냉장고에 넣기, 식기 정리·설거지 — 를 완전 자율로 수행하는 것이다(20:22, 21:04).

π0.7: 단일 사전훈련 모델, 이종 데이터, 조합적 전이

핀은 이것을 로보틱스가 BERT 시대(베이스 모델 후 태스크별 파인튜닝)를 벗어나 GPT/DALL-E 시대(단일 모델이 태스크별 파인튜닝 없이 즉시 고성능)로 들어가는 것으로 설명한다(25:02, 29:48). 훈련 데이터는 의도적으로 이종이다 — 깨끗한 시연뿐 아니라 저품질 시연, 실패한 롤아웃, 웹 비디오까지 포함한다(27:24). 이 저품질 데이터가 해가 아니라 도움이 되게 만드는 장치로 두 가지가 언급된다. 에피소드 품질·길이 메타데이터로 모델을 프롬프팅하는 것, 그리고 훈련 중 미래 상태를 상상하는 월드모델 스타일의 sub-goal image를 조건으로 주는 것이다(28:41, 36:07, 36:39). 핵심 결과는, 태스크별 RL 없이 단일 사전훈련된 π0.7이, 에스프레소 전용 또는 박스 조립 전용으로 별도 RL 파인튜닝된 π0.6 체크포인트와 동등하거나 그 이상이라는 것이다(30:42).

이로부터 두 가지 일반화 주장이 이어진다. 조합적 일반화 — 훈련 데이터에 거의 없었는데도 에어프라이어를 열고 고구마를 넣는 것(31:36, 32:11). 그리고 몸체 간 전이 — 소형 양팔 로봇 데이터로만 배운 옷 접기 행동이, 추가 훈련 없이 크기·관절·링크 길이가 전혀 다른 대형 산업용 양팔 로봇으로 옮겨가는 것(32:50, 33:29).

Q&A: 시점, 제어 수준, 그리고 소프트웨어 엔지니어의 진입로

이것이 로보틱스의 ChatGPT 모먼트냐는 질문에 핀의 답은 조건부다. 하드웨어 배포가 느린 부분이라 특정 모델의 확산은 완만하겠지만, 근본적인 모델 역량 자체는 몇 년 안에 실무에 유용해질 것으로 본다(39:55, 40:46). 제어 세밀도에 관해서는, 모델이 모터 전압이나 토크를 직접 출력하는 것보다 목표 관절 각도나 3D 그리퍼 좌표를 출력하고 이를 일반적인 저수준 PD 제어기가 추종하는 편이 더 안정적이라고 말한다(50:00). 창발 행동의 일화도 하나 있다. 바람개비 조립 중 평소의 오른손 패턴이 흐트러지자, 로봇은 아무도 명시적으로 가르치지 않은 좌우 등가성(equivariance)으로 왼손으로 핀을 꽂았다(55:10, 55:29). 진입하고 싶은 소프트웨어 엔지니어에게 하는 조언은, 로보틱스도 여느 제품과 같은 폭넓은 소프트웨어 스택 — 인프라, 신뢰성 엔지니어링, 데이터 파이프라인 — 이 필요하며, π0 같은 오픈 가중치 모델을 저렴한 로봇 팔에서 직접 돌려보는 것이 이 분야에 손을 대는 효과적인 방법이라는 것이다(41:25, 57:27).

Jayverse에서의 위치

  • Game/Microduck: 오픈 모델을 돌려볼 저렴한 몸체. jay가 이걸 읽는 데 그치지 않고 직접 손대 보고 싶다면, π0 같은 오픈 가중치 체크포인트를 돌리는 저비용 팔이 핀이 엔지니어에게 권하는 진입점이다. Tech #100(jay의 물리적 AI 몸체로서 Microduck)과, 이 항목의 원샷 사촌 격인 GEN-1.5 항목(gen-1-5-one-shot-physical-prompting)에 이어진다.
  • Theory: 가치 함수, 오프폴리시 데이터, 압축으로서의 메모리. 범용 가치 함수는 이종 비디오로부터 오프폴리시로 학습된 진행률 추정기이고, 단기·장기 메모리 분리는 실시간 예산 아래의 손실 압축 설계 선택이다 — 둘 다 로보틱스 고유의 아이디어가 아니라 Theory의 가치 함수 노트와 압축-메모리 노트의 살아 있는 예다.
  • Auditor: 검증 가능한 주장은 13시간 가동과 90%다. 어떤 태스크 세트였는지, 실패의 정의가 무엇인지, "성공"을 가치 추정을 하는 같은 모델이 채점했는지를 모르면 두 수치는 아무 의미가 없다. 이 항목을 어떤 증거로 인용하기 전에 Auditor의 규칙은 "어느 태스크 세트, 누가 채점했는가"를 먼저 물어야 한다.
  • Eng: 남겨둘 만한 면접 질문. "배포 전에 물리적 에이전트의 신뢰성을 어떻게 평가하겠는가"는 실제로 좋은 면접 질문이고, 이 강연은 그에 대한 구체적인 답안이다 — 신뢰성 기준, 꼬리 행동, 그리고 안전을 위한 사후 조치가 아니라 훈련 시점 장치로서의 사람 개입 루프.
  • Dark Horse: 로보틱스 트랙을 위한 데이터 포인트. jay가 언젠가 로보틱스 사이드 프로젝트를 진지하게 스코핑한다면, 이 강연의 두 주장 — RL 사후학습 연산이 진짜 병목이라는 것, 적어도 한 태스크 부류에서는 몸체 간 전이가 이미 작동한다는 것 — 이 프로젝트를 걸기 전에 먼저 확인할 두 사실이다.

확인된 것과 미확인

2026-09-19 확인: 첼시 핀은 스탠퍼드 교수진이자 Physical Intelligence 공동창업자다. PI는 π0을 오픈 가중치 로보틱스 파운데이션 모델로 공개했고 후속 체크포인트를 계속 발표해 왔다. Waymo는 의미 있는 규모로 완전 무인 주행 서비스를 운영한다. PPO와 GRPO는 LLM 사후학습에 쓰이는 실제 강화학습 알고리즘이다. 상위 목표를 추종하는 저수준 PD(비례-미분) 제어기는 표준적인 로보틱스 제어 패턴이다. 요약에서 가져왔고 독립 확인하지 않은 것: "π0.7"이라는 정확한 이름과 π0.6과의 관계, 그리고 모든 구체적 수치 — 99% 이상의 신뢰성 기준, Waymo의 주간 25만 회 이상, 궤적 100만 개에 700일이라는 추정, 13시간/90% 이상의 에스프레소 가동, RL 사후학습으로 인한 약 2배의 처리량 향상, 그리고 모든 타임스탬프. 영상의 정확한 게시일은 요약에 나와 있지 않다.

출처: YouTube — 첼시 핀, "This is the State of the Art in Robotics" (Y Combinator) · 관련 항목: Tech #100(jay의 물리적 AI 몸체로서 Microduck), GEN-1.5 항목 gen-1-5-one-shot-physical-prompting(원샷 물리적 프롬프팅), Tech #63(모델은 가중치와 목적함수다), Tech #62(에이전틱 엔지니어링은 경계를 쓴다).

핵심 표현

이 페이지의 영어 본문에서 배울 만한 단어와 표현, 뜻과 나온 자리.

Expression뜻 · 쓰이는 자리
out of the box별도 설정·파인튜닝 없이 바로 동작 · 이 항목의 핵심 주장을 표현하는 구. "run out of the box and generalize to environments and robot bodies never seen in training"
PIPhysical Intelligence(첼시 핀이 공동창업한 로보틱스 회사) · 이 항목의 모델 제작사. "PI's path there"
RLReinforcement Learning(강화학습) · 로봇이 시행착오로 정책을 개선하는 학습 방식. "an RL recipe that survives real robot hardware"
rollout롤아웃(정책을 한 번 끝까지 실행해 얻는 궤적 하나) · RL 비용을 셀 때 쓰는 단위. "a real rollout"
PPOProximal Policy Optimization(근접 정책 최적화) · LLM·로봇 RL에서 널리 쓰이는 정책 최적화 알고리즘. "LLM post-training (PPO, GRPO)"
GRPOGroup Relative Policy Optimization(그룹 상대 정책 최적화) · PPO의 최근 변형, 동일 문맥의 롤아웃을 서로 비교. "LLM post-training (PPO, GRPO)"
post-training사후학습(사전학습 이후 정책을 다듬는 단계) · 대규모 사전학습과 구분되는 개념. "the compute goes, not a new algorithm"
teleoperator원격조종자(사람이 원격으로 로봇을 조작) · 실패 복구를 위한 개입 주체. "a teleoperator steps in"
value function가치 함수(현재 상태에서 목표까지 남은 거리를 추정하는 모델) · 이 항목의 두 번째 효율화 장치. "a general-purpose value function instead of many attempts per task"
progress signal진행률 신호(성공까지 얼마나 남았는지를 나타내는 값) · 가치 함수가 만들어 내는 것. "That progress signal is reused across tasks"
memoryless메모리 없음(직전 상태를 기억하지 못하고 현재 관측에만 반응) · 장기 태스크의 한계로 지적된 성질. "Most current robot policies are memoryless"
sub-goal image서브골 이미지(가까운 미래 상태를 미리 상상한 이미지) · 월드모델식 조건부 입력. "conditioning it on a sub-goal image"
world model월드모델(환경이 어떻게 바뀔지 예측하는 내부 모델) · sub-goal image의 개념적 배경. "a world-model-style guess at a future state"
compositional generalization조합적 일반화(배운 부분들을 새로운 조합으로 재사용) · 에어프라이어+고구마 사례를 설명하는 용어. "compositional generalization, where the model opens an air fryer"
cross-embodiment transfer몸체 간 전이(한 로봇에서 배운 것을 다른 형태의 로봇에 적용) · 소형→대형 양팔 로봇 전이 사례. "cross-embodiment transfer, where laundry-folding behavior... carries over"
PD controller비례-미분 제어기(목표값을 추종하는 표준 저수준 제어기) · 모델의 출력을 실제 모터 동작으로 바꾸는 계층. "tracked by a conventional low-level PD controller"
equivariance등가성(좌우 등 대칭 변환에도 같은 방식으로 대응하는 성질) · 왼손으로 핀을 꽂은 창발 행동을 설명. "a left/right equivariance nobody explicitly trained"
long-horizon (autonomy)장기 자율성(긴 시간 동안 사람 개입 없이 스스로 동작) · 물리 AI에 요구되는 신뢰성 기준의 일부. "long-horizon autonomy before it is worth deploying"
existence proof존재 증명(가능하다는 것을 보여주는 실제 사례) · Waymo 규모를 인용하는 맥락. "the existence proof that physical-environment ML can clear that bar"
diffusion (of a technology)확산(기술이 실제로 퍼져 쓰이는 속도) · 모델 역량과 별개로 하드웨어 배포가 느리다는 논점. "diffusion of any given model will be gradual"

← 전체 기술 노트 · 워크스페이스 인덱스 · 맨 위 ↑