본문으로 건너뛰기
X (Twitter)조회 1

Microduck 로봇 확산, llm-d 추론 구조화, 비공개 AI 평가와 문서 파싱 고도화

실제 로봇을 직접 학습시키는 Microduck부터 KV Cache를 클러스터 상태로 다루는 llm-d까지

이 요약은 AI가 원문을 분석해 생성했습니다. 정확한 내용은 원문 기준으로 확인하세요.

TL;DR

이번 기간에는 $399 오픈소스 이족보행 로봇 Microduck이 강화학습과 Sim2Real 흐름을 앞세워 가장 큰 관심을 모았다. LLM 추론 영역에서는 llm-d가 KV Cache 위치 추적, 메모리 계층화, prefill·decode 분리를 Kubernetes 위에서 통합해 같은 하드웨어에서 출력 처리량 약 3배와 첫 토큰 대기 시간 절반을 겨냥하는 구조를 내놓았다. Google DeepMind의 이중 블라인드 frontier AI 평가 파일럿과 Cohere Parse 5의 문서 구조화 기능도 새 기능으로 등장했다. NVIDIA Vera 서버 출하와 AI 학습에서 숙련도에 따른 효과 차이를 다룬 글은 인프라와 실무 활용의 조건을 함께 부각한 사례이다.

𝕏 실시간 트렌드 토픽

🔥 Microduck의 $399 오픈소스 로봇과 Sim2Real 강화학습포스트 16

Hugging Face와 Pollen Robotics가 25cm 크기의 오픈소스 이족보행 로봇 Microduck을 공개했다. 사용자는 시뮬레이터에서 정책을 학습한 뒤 실제 로봇으로 옮길 수 있으며, 가격은 $399이다.

세부 내용 보기
  • Microduck은 25cm 크기의 이족보행 플랫폼으로 15개 actuator, camera, speaker, LiDAR, NFC, Bluetooth, Wi-Fi 같은 센서를 갖췄고, articulated beak을 작은 gripper처럼 사용한다. 고정된 동작만 실행하는 장난감이 아니라 사용자가 새 행동을 학습시키는 오픈소스 로봇이라는 점이 핵심이다.
  • 사용자는 시뮬레이션 환경에서 reinforcement learning으로 정책을 훈련하고, 완성된 정책을 실제 로봇에 실행한다. 공개된 기본 정책은 걷기, 앉기, 웅크리기, roller-skating, 물체 집기, 넘어짐 회복을 지원하며, Pollen Robotics는 Christmas 전 배송을 안내했다.
  • 포스트에서는 Microduck이 10인치 안팎의 크기와 2파운드 미만의 무게를 갖는다고도 전해졌다. 별도 사례에서는 브라우저 기반 gym에서 treat-delivery 동작을 250 episodes 동안 훈련해 9단계에서 학습했다는 경험이 공유돼, 시뮬레이터와 정책 학습 도구가 실제 사용 흐름으로 이어짐을 보여준다.
원문 트윗 2개 보기

📈 llm-d의 Kubernetes 기반 KV Cache 라우팅과 추론 분리포스트 1

llm-d는 vLLM과 SGLang을 교체하지 않고 그 위에서 KV Cache 라우팅, offloading, prefill·decode 분리를 맡는 오픈소스 프로젝트이다. 같은 하드웨어와 모델에서 출력 처리량 약 3배, 첫 토큰 대기 시간 절반을 목표로 한다.

세부 내용 보기
  • 일반 Kubernetes Service는 요청을 replica 사이에 순환 배분하므로, 이전 요청의 prefix를 보유한 서버와 다른 pod로 요청이 이동하면 KV Cache 재사용 이점이 사라진다. llm-d는 각 서버가 cache block 생성·삭제 이벤트를 보내도록 하고, router가 replica별 cache 위치를 실시간 색인해 prefix를 가진 서버로 요청을 보낸다.
  • Cache affinity는 warm replica에 요청을 몰아 부하가 임계치를 넘으면 router가 캐시 친화성보다 현재 부하를 우선한다. GPU 메모리가 부족하면 cache block을 CPU memory와 disk로 단계적으로 내보내며, 4개의 H100과 동시 사용자 250명 조건에서 모든 블록을 GPU에 둘 때보다 13.9배 높은 처리량이 측정됐다.
  • Prefill은 compute-bound, decode는 memory-bandwidth-bound이므로 전용 pool로 분리하면 자원 활용이 달라진다. AWS 측정에서는 분리 후 초당 token 수가 최대 70% 높아졌지만 첫 token 전에 KV Cache를 네트워크로 전달해야 하며, 전체 구조는 Apache 2.0과 CNCF sandbox 아래에서 vLLM·SGLang 위에 배치된다.
원문 트윗 1개 보기

Akshay

@akshay_pachaar

2일 전

Kubernetes meets LLM inference. Google, NVIDIA, IBM, and Red Hat are all backing the same open-source project to make it work. the problem is that LLM inference does not scale the way normal web services do, and the usual Kubernetes answer makes it worse. let me explain: run one vLLM or SGLang server and the KV cache is a clean win. the server keeps the attention keys and values for tokens it has already processed, so a prompt that shares a prefix with an earlier one skips past that computation and starts generating. put a standard Kubernetes Service in front of several replicas and that saving mostly evaporates. the Service hands each request to whichever pod is next in rotation, and that pod usually never saw the prefix, so it recomputes the entire context from scratch. round-robin assumes every replica serves every request equally well. true for stateless web traffic. false the moment prefill caching exists, because replicas now differ by what they remember. teaching Kubernetes that difference turns into four problems. → knowing which replica holds the prefix. each server streams an event every time it creates or evicts a cache block, and the router keeps a live index of who holds what. → knowing when to ignore that index. cache affinity pulls traffic onto warm replicas, so past a load threshold the router drops affinity and picks on load alone. otherwise the warm replica turns into the bottleneck. → extending where the cache lives. accelerator memory fills fast, so blocks spill to CPU memory and then disk. on four H100s at 250 concurrent users, that hierarchy delivered 13.9x the throughput of keeping everything on the GPU. → separating prefill from decode. prefill is compute-bound, decode is memory-bandwidth-bound, and running both on one replica underuses each. AWS measured up to 70% higher tokens per second after splitting them onto dedicated pools, though the KV cache now has to cross the network before the first token appears. the KV cache stops being something a single server manages. it becomes cluster state, and the routing layer has to track it. solve that and you get roughly 3x the output throughput and half the time to first token, on the same hardware, running the same model. llm-d is the project handling all four on Kubernetes. it sits above vLLM and SGLang rather than replacing them, so you keep whichever engine you already run and it takes over the routing, the cache index, the offloading, and the prefill/decode split. Apache 2.0, CNCF sandbox, with Tesla, Snowflake, Cohere and DigitalOcean running it. check it out on GitHub: https:// github.com/llm-d/llm-d i wrote the full breakdown of how inference works underneath all of this. the article is quoted below.

💬 0 1 0👁 1010

Cohere Parse 5의 표·양식·이미지 문서 구조화포스트 3

Cohere가 고용량 enterprise 문서 처리를 겨냥한 Parse 5를 공개했다. 텍스트뿐 아니라 표, 양식, 이미지와 bounding box를 기계 판독 형식으로 바꿔 구조화 데이터 추출과 RAG 파이프라인에 연결한다.

세부 내용 보기
  • 기존 문서 처리 입력은 본문 텍스트만으로는 표와 양식의 배치, 이미지 안의 정보, 영역 좌표를 보존하기 어렵다. Parse 5는 텍스트와 함께 tables, forms, images를 인식하고 bounding boxes를 포함한 clean machine-readable documents로 변환한다.
  • 변환된 결과는 구조화 데이터 추출, RAG 시스템 구축, 자동 문서 처리에 투입된다. Cohere는 고용량 enterprise 작업을 대상으로 높은 parsing accuracy와 페이지당 낮은 가격을 함께 내세웠으며, Cohere API, Model Vault, AWS Sagemaker, Microsoft Foundry와 Hugging Face Space를 통한 접근 경로를 안내했다.
원문 트윗 2개 보기

Google DeepMind의 frontier AI 이중 블라인드 평가 파일럿포스트 1

Google DeepMind가 테스트 prompt와 model weight를 모두 공개하지 않는 frontier AI 이중 블라인드 평가를 시범 운영한다. 보안 환경에서 외부 안전성·성능 평가의 비공개성, 견고성, 신뢰성을 확보하려는 방식이다.

세부 내용 보기
  • 외부 평가에서는 평가 대상 모델의 prompt나 weight가 노출될 경우 결과의 비공개성과 평가 조건의 통제가 약해질 수 있다. Google DeepMind의 파일럿은 어느 쪽도 테스트 prompt와 model weight를 볼 수 없는 secure environment를 구성해 평가 입력과 모델 내부 정보를 분리한다.
  • 이 구조에서는 외부 평가자가 모델의 안전성과 성능을 측정하면서도 테스트 자산과 weight를 직접 확인하지 않는다. 포스트는 이를 private, robust, trustworthy한 평가를 위한 절차로 설명했으며, 구체적인 평가 수치나 참여 기관은 공개하지 않았다.
원문 트윗 1개 보기

NVIDIA Vera의 agentic AI 서버 인프라 공급포스트 1

NVIDIA가 AWS 본사에 첫 Vera CPU Server와 Vera Rubin GPU를 전달했다. NVIDIA는 Vera를 agentic AI와 AI factory 확장을 위한 컴퓨팅 기반으로 설명하며 token당 비용과 사용자 응답 속도 개선을 내세웠다.

세부 내용 보기
  • agentic AI 서비스는 모델 실행뿐 아니라 대규모 요청 처리와 지속적인 컴퓨팅 자원 확장이 필요하다. NVIDIA Vera는 AWS의 서버 인프라에 CPU Server와 Vera Rubin GPU 형태로 배치되며, NVIDIA가 이를 AI factory 확장의 기반으로 위치시킨다.
  • NVIDIA가 밝힌 목표는 더 많은 token을 dollar당 처리하고 사용자 결과를 더 빠르게 전달하는 것이다. 이번 포스트에는 실제 성능 수치나 서버 구성 세부값이 포함되지 않았으므로, 공급 개시와 용도만 확인된다.
원문 트윗 1개 보기

AI 활용에서 숙련도와 인지 부하의 격차포스트 1

AI가 숙련자에게는 생산성을 높이는 도구가 되지만 초급자에게는 skill-building을 대신하는 지름길이 될 수 있다는 실무 관점이 공유됐다. 핵심 기준은 AI가 인지 부하를 줄이는지, 더 깊은 학습을 위해 높이는지에 있다.

세부 내용 보기
  • 소프트웨어 개발처럼 AI 도입이 빠른 분야에서도 역할이 사람에서 AI로 단순 대체되기보다 이동했다는 관찰이 제시됐다. 25년 동안 코딩을 배운 사용자는 coding agent의 결과를 감독할 수 있지만, 초급자는 실력을 쌓는 과정을 AI에 외주화하기 어렵고 졸업 뒤에는 AI 활용 성과까지 요구받는 이중 조건에 놓인다.
  • AI를 이미 잘하는 작업에 쓰면 결과를 감독하며 성장하는 흐름이 생기고, 스스로 수행할 수 없는 작업에 전적으로 의존하면 skill-building을 건너뛰는 흐름이 생긴다. 따라서 AI를 빠른 답을 얻는 shortcut machine으로 쓰기보다 research papers를 찾고 사고를 확장하는 도구로 사용해야 하며, 글에서는 학습에 필요한 cognitive sweat가 사라지지 않는다고 설명한다.
원문 트윗 1개 보기

Arvind Narayanan

@random_walker

2일 전

This week I had the honor of speaking to Princeton’s entire incoming undergraduate class to address their AI anxieties. I had three messages for them — good news, bad news, and a note of optimism. Here’s a condensed version. The good news We have enough evidence now to conclude that the shrill predictions of rapid, massive job loss were misplaced. Even in a field like software engineering where AI has been rapidly adopted, its effect has been to shift, not replace the role of the human (see the “decide-execute-deliver” framework https:// normaltech.ai/p/why-ai-hasnt -replaced-software-engineers …) Similarly, the panic about what to major in is also misplaced. There will be enduring demand for computer science, philosophy, and just about everything else. (In fact, AI companies hiring philosophers has been a big recent trend.) The bad news AI seems to help senior people much more than juniors. I can use AI for coding because I spent 25 years learning how to code, which lets me supervise coding agents effectively. (See my post on the “growth cycle” vs the “dependence spiral” https:// x.com/random_walker/ status/2065408097640677572 …) You are in a bind — you can’t offload your skill-building to AI, but you’ll graduate into a market where employers will expect you to get work done with AI. We never faced this dilemma. As a result we haven’t figured out how to revamp our classes to help you do both. You’ll have to help us figure it out. And you’ll need to somehow resist the constant temptation to turn to the shortcut machine. The hope My point is not that AI is bad for learning. It’s an incredibly flexible tool. Is the internet good or bad for learning? Depends — are you using it to find research papers or waste time scrolling? I use AI every day for learning. The key is to use it to increase, not decrease your cognitive load. To learn deeper, not faster. There is no learning without the cognitive sweat. I try to make sure I’m mentally exhausted at the end of the day. I do feel that AI lets me push myself harder than I ever could before, and I have a vision that as AI continues to advance it will enable human-AI “co-superintelligence“. (I talked about this at the end of my ICML keynote. https:// normaltech.ai/p/what-will-be -left-for-us-to-work …)

Arvind Narayanan

There’s a big, under-appreciated reason why people may have very different experiences and opinions about using AI for work — are they using it for tasks they’re already an expert at, or tasks they can’t do themselves? The former leads to a *growth cycle* and the latter leads to

💬 0 0 2👁 275

자율주행 데이터의 장거리 객체 주석 확대포스트 1

자율주행 데이터셋의 객체 주석 범위를 80m 안팎에 제한하는 관행과 200m까지 확장하는 접근이 대비됐다. 고속 주행에서는 먼 거리 객체가 더 긴 경고 시간을 제공하므로 센서와 주석 범위가 함께 중요해진다.

세부 내용 보기
  • 기존 vision ML이 annotated box 안의 정보에만 의존하면 box 밖의 장면 정보와 먼 거리 객체를 학습 입력에서 제외하게 된다. 한 포스트는 전통적인 ImageNet 시대의 box 중심 접근이 객체의 세부적인 nuance를 가르치기 어렵다고 지적했다.
  • 인용된 사례에서는 많은 driving dataset이 80m에서 주석을 멈추지만 highway speed에서는 약 2초의 경고 시간만 남는다고 했다. aimotive는 200m까지 주석을 확장했고 425k boxes 중 약 4분의 1이 75m보다 먼 곳에 있으며, 360도 배치의 LiDAR, camera 4대, radar 2대로 객체를 포괄한다.
원문 트윗 1개 보기

용어 해설

시뮬레이션-현실 전이(Sim2Real)
가상 환경에서 학습한 정책을 실제 로봇에 옮기는 방식이다. 입력과 센서 조건의 차이를 줄이는 과정이 필요하며, Microduck은 시뮬레이터에서 새 행동을 학습한 뒤 실제 로봇에서 실행하는 흐름을 제공한다.
강화학습(Reinforcement Learning)
로봇이 행동을 수행하고 그 결과에 따른 보상을 바탕으로 정책을 갱신하는 학습 방식이다. Microduck에서는 걷기, 물체 집기, 넘어짐 회복 같은 행동을 사용자가 직접 가르치는 수단으로 쓰인다.
KV 캐시(KV Cache)
LLM이 이미 처리한 토큰의 attention key와 value를 저장해 같은 prefix를 다시 계산하지 않도록 하는 메커니즘이다. 여러 replica 환경에서는 캐시 위치를 추적하고 요청을 적절한 서버로 보내야 효과가 유지된다.
Prefill·Decode 분리(Prefill/Decode Disaggregation)
입력 문맥을 처리하는 prefill과 새 토큰을 생성하는 decode를 서로 다른 서버 풀에서 실행하는 구조다. 두 단계의 계산 특성이 달라 전용 자원을 배정하면 처리량이 높아지지만 KV 캐시를 네트워크로 전달해야 한다.
이중 블라인드 평가(Double-Blind Evaluation)
평가자와 피평가 측 모두에게 테스트 prompt와 model weight를 공개하지 않는 평가 방식이다. Google DeepMind는 보안 환경에서 외부 안전성·성능 평가의 비공개성과 신뢰성을 확보하는 파일럿에 이 방식을 적용한다.
문서 파싱(Document Parsing)
문서의 텍스트뿐 아니라 표, 양식, 이미지의 구조를 읽어 기계가 처리할 수 있는 데이터로 바꾸는 과정이다. Cohere Parse 5는 bounding box 정보까지 포함해 구조화 데이터 추출과 RAG 입력 생성에 활용된다.
AI 분석 전체 내용 보기

AI 요약 · 북마크 · 개인 피드 설정 — 무료

출처 · 인용 안내

원문 발행 2026. 08. 27.수집 2026. 08. 27.출처 타입 TWITTER

인용 시 "요약 출처: AI Trends (aitrends.kr)"를 표기하고, 사실 확인은 원문 보기 기준으로 진행해 주세요. 자세한 기준은 운영 정책을 참고해 주세요.