TL;DR
Kimi K3 공개가 아키텍처·인프라 논의를 촉발했다. Kimi K3는 2.8T MoE 모델로 LatentMoE, multi-head latent attention, NoPE, attention residuals 등으로 추론·학습 효율을 높였고 보고서에는 attention residuals가 검증 손실과 다운스트림 성능을 소폭 개선하며 학습 비용 약 4%, 추론 비용 약 2%의 변화가 보고됐다. 장기 생성에서는 KV 캐시의 블록 기반 할당(paged attention)이 핵심 병목으로 지적되며, NVIDIA의 TriAttention은 토큰 지오메트리로 점수를 매기고 128토큰마다 컴팩션을 수행해 디코딩 2.5배·KV 메모리 10.7배 절감을 제시했다. 한편 Alibaba는 Qwen3.8 개발자 성장플랜으로 실사용 사례 수집과 보상을 통해 에이전트 역량을 확보하려 하고, Snowflake는 Black Hat에서 agent용 보안 게이트웨이로 에이전트 신원·데이터 유출·랜섬웨어 대응을 명시했다.
𝕏 실시간 트렌드 토픽
🔥 Kimi K3 공개와 아키텍처 혁신포스트 7
Kimi K3는 2.8T 파라미터 MoE 모델로, LatentMoE·multi-head latent attention·NoPE·attention residuals 등을 도입해 추론 효율과 검증 성능을 동시에 끌어올리는 방향으로 설계됐다. 보고서에는 attention residuals가 검증 손실과 일부 다운스트림 성능을 개선했고 학습 비용 약 4%, 추론 비용 약 2%의 추가가 발생했다고 기재됐다.
- LatentMoE는 대형 선형층을 저차원으로 압축해 연산·메모리 효율을 개선하는 방식이다.
- Kimi K3는 RoPE를 제거하고 NoPE를 전역 적용해 위치 임베딩을 구조적으로 대체했으며, 이는 일부 레이어의 연산 패턴에 영향을 미쳤다.
- attention residuals는 레이어 간 잔차를 attention 가중치로 연결해 기여도를 반영하며, 검증 손실과 다운스트림 성능에서 소폭의 개선을 관찰했다.
- 네이티브 멀티모달 지원과 1M 토큰 급의 컨텍스트 설계가 포함되어 대형 지능 단위당 효율 개선을 목표로 삼았다.
LatentMoE·multi-head latent attention·NoPE 같은 구성은 대형 모델의 추론·메모리 효율을 개선해 동일 하드웨어에서 더 긴 문맥·멀티모달 처리가 가능하다는 점에서 실무적 이점이 크다.
모델 설계는 효율을 겨냥했지만 2.8T 규모 자체가 요구하는 GPU·전력 자원은 여전히 막대해 자가 호스팅이나 소규모 팀의 직접 운영에는 현실적 제약이 남는다.
원문 트윗 2개 보기
Sebastian Raschka
@rasbt
The Kimi K3 architecture figure for yesterday's big open-weight model release, along with some observations and thoughts. 1. Yes, it looks relatively complicated, but it's essentially a scaled-up production version of their Kimi Linear model they released last year (scaled up from 48B -> 2.8T; K3 is by far the biggest open-weight model right now) 2. The one new component compared to Kimi Linear is the LatentMoE. I omitted it in the figure below since it's already very crowded, but that's essentially the same LatentMoE as in Nemotron 3 Ultra (you can find it in my LLM Architecture Gallery if you are curious). The idea here is to compress (down-project) large linear layers similar to multi-head latent attention. 3. Kimi K3's overall trend (similar to Nemotron 3, DeepSeek V4, and others) is also towards better inference efficiency. That is, there are many components that replace existing components with efficiency-tweaked versions. I.e., MoE -> LatentMoE, regular attention -> multi-head latent attention and Kimi Delta Attention. (I also have short tutorials and write-ups in my gallery if you are curious about additional details). 4. The one component change that is not an efficiency tweak is attention residuals. Like DeepSeek V4 improved the residual path with mHC (manifold-constrained Hyper-Connections), attention residuals are a way to improve the residual path, but it works a bit differently. I.e., mHC made the residual path wider. Attention residuals (also already part of Kimi Linear) connect the residuals across layers; the connection itself uses an attention score for an important/contribution weight. According to the report, it improves the validation loss and downstream performance (a bit) consistently and adds about 4% in training cost and 2% in inference cost. 5. Interestingly, Kimi K3 got rid of all RoPE layers and uses NoPE (No Positional Embeddings) everywhere instead. (Again, this is inherited from Kimi Linear). In other architectures, the recent trend was towards RoPE in local attention layers (like sliding window attention) and NoPE in the global layers. There were a few architectures that only used NoPE everywhere, but this is the first frontier-level one as far as I know. 6. Kimi K3 now also has native multimodal support, which is great! There are several other interesting training tidbits in the technical report, but that's it from the architecture front so far. A really great release overall.
Md Ismail Šojal
@0x0SojalSec
“Loading Kimi K3-2.8T on a 4070 in 2026: ‘It’s gonna fit, trust me’”
Releasing the model weights and technical report of Kimi K3. Kimi K3 is our most capable model: a 2.8T MoE model with native visual understanding and a 1M-token context window. New model architecture: 2.5x the intelligence per unit of compute, not just more params. Alongside
📈 KV 캐시 압축과 paged attention의 인프라적 함의포스트 1
생성 중 KV 캐시는 레이어별 key·value가 누적되며, 서버 환경의 paged attention은 GPU 메모리를 고정 블록으로 할당해 토큰 일부를 제거해도 블록이 비워지지 않으면 물리 메모리가 해제되지 않는다. NVIDIA의 TriAttention은 RoPE 적용 이전의 키·쿼리 지오메트리로 토큰 점수를 산정하고 128토큰 단위의 컴팩션으로 블록을 정리해 디코딩 2.5배·KV 메모리 10.7배 개선을 보고했다.
- paged attention은 약 16토큰 정도를 담는 고정 물리 블록 단위로 KV를 관리하므로 '추방된 토큰 수'보다 '해제된 블록 수'가 핵심 지표이다.
- 일반적인 빠른 어텐션 커널(예: FlashAttention)은 완전한 attention 점수 행렬을 보존하지 않아, 점수를 필요로 하는 퇴출(eviction) 로직과 직접 호환되지 않는다.
- TriAttention은 토큰의 키·쿼리 기하 구조를 이용해 점수를 계산하고, 정기적인 컴팩션으로 블록을 비워 할당자로 반환하는 방식으로 메모리 해제를 확보한다.
TriAttention은 점수 계산 방식과 주기적 컴팩션을 결합해 긴 추론 트레이스에서 메모리 사용과 속도 측면에서 의미 있는 개선을 이뤄냈다는 수치(2.5x, 10.7x)를 제시한다.
현장에서는 빠른 어텐션 커널과의 호환성·추가 구현 비용·정확도 보장이 쟁점으로 남아 실무 적용 시 엔지니어링 트레이드오프가 존재한다.
📈 Alibaba의 Qwen3.8 개발자 성장플랜포스트 2
Alibaba가 Qwen3.8-Max-Preview 피드백을 바탕으로 QwenGrowthPlan을 시작해 개발자에게 실사용 사례 제출을 요청하고 보상으로 참여를 독려하고 있다. 목표는 에이전트형 기능의 실제 작업 사례를 통해 모델 성능과 활용도를 개선하는 것이다.
- 참여 방식은 Qwen3.8으로 실제 작업을 수행한 사례(우수·문제 사례 포함)를 제출하는 형태이다.
- 보상 체계가 마련되어 있어 참여 동인을 제공하며, 이메일과 X상 공유를 병행할 수 있다.
개발자 실사용 피드백과 보상은 에이전트 행위에서 발생하는 실제 실패·성공 케이스를 확보해 모델 개선과 안전성 보강에 기여할 가능성이 높다.
수집된 사례의 품질·대표성이나 보상 기반 수집이 초래할 데이터 편향 문제는 추가 검증이 필요한 항목이다.
원문 트윗 2개 보기
Qwen
@Alibaba_Qwen
Since launching Qwen3.8-Max-Preview, we've received valuable feedback from developers! To help users better explore Qwen3.8's agentic capabilities, we're officially launching the #QwenGrowthPlan today! We invite you to: - Use Qwen3.8 to complete your real-world tasks - Submit your good or bad cases to us Every real task is nourishment for Qwen3.8's growth. We've prepared valuable rewards to recognize your active participation. For more detailed participation info and prizes, please check out the posters below. Besides emailing us, feel free to share your awesome cases or feedback directly on X and @Alibaba_Qwen Join us and let's grow together!
Qwen
@Alibaba_Qwen
Since launching Qwen3.8-Max-Preview, we've received valuable feedback from developers! To help users better explore Qwen3.8's agentic capabilities, we're officially launching the #QwenGrowthPlan today! We invite you to: - Use Qwen3.8 to complete your real-world tasks - Submit your good or bad cases to us Every real task is nourishment for Qwen3.8's growth. We've prepared valuable rewards to recognize your active participation. For more detailed participation info and prizes, please check out the posters below. Besides emailing us, feel free to share your awesome cases or feedback directly on X and @Qwen . Join us and let's grow together!
➖ Snowflake의 Cortex AI Gateway와 에이전트 보안포스트 1
Snowflake는 Black Hat 2026에서 Cortex AI Gateway를 발표하며 에이전트 신원 관리, 데이터 유출 방지, 랜섬웨어 회복력 같은 네이티브 제어 기능을 제시했다. 이는 에이전트가 데이터에 접근할 때 기업용 보안·정책 적용을 강화하려는 움직임이다.
- Cortex AI Gateway는 에이전트 신원을 식별·통제하는 기능을 내장해 툴 호출·데이터 접근을 추적·관리한다.
- 데이터 유출 방지와 랜섬웨어 대응 기능을 통합해 에이전트 중심 워크플로의 보안 리스크를 낮추려는 목표가 드러난다.
에이전트가 기업 데이터와 상호작용하는 환경에서 신원·데이터 제어 기능은 규제·컴플라이언스 요구를 충족하고 데이터 유출 리스크를 줄이는 데 기여한다.
구현과 기존 인프라 통합, 에이전트 생태계 전반에 대한 정책 적용 범위는 도입 시 검토할 기술적·운영상 과제다.
➖ Recursive Superintelligence의 아마존 컴퓨트 계약(TechCrunch 보도)포스트 1
TechCrunch에 따르면 Recursive Superintelligence가 Amazon과 '410' 규모의 컴퓨트 계약을 체결했다는 보도가 있었다. 계약은 연구·운영 규모에 영향을 미칠 수 있는 대규모 컴퓨트 확보를 의미한다.
- 대규모 컴퓨트 확보는 모델 연구·스케일업 능력을 직·간접적으로 확장한다.
- 공급 측면에서 클라우드 제공업체와의 대형 계약은 경쟁·집중도 문제와 연계된 논점을 불러올 수 있다.
대형 컴퓨트 계약은 연구·제품 개발을 가속하고 모델 역량 확대를 가능하게 한다.
클라우드 중심의 대규모 계약은 컴퓨트 집중화와 경쟁·접근성 문제를 야기할 수 있어 정책적·윤리적 논의가 수반된다.
원문 트윗 1개 보기
용어 해설
- 잠재 혼합전문가(LatentMoE)(LatentMoE)
- — 큰 완전 연결층을 저차원으로 다운프로젝션해 연산을 줄이는 MoE(혼합전문가) 변형이다. 입력을 낮은 차원 잠재공간으로 압축해 여러 전문가 간 선택·조합을 수행하고, 동일한 모델 규모에서 추론·메모리 효율을 개선하는 데 기여한다.
- No Positional Embeddings(NoPE)
- — 전통적 위치 임베딩(RoPE 등)을 사용하지 않는 설계이다. 위치 정보를 명시적 포지셔널 임베딩으로 제공하지 않으며, 모델 구조나 attention 패턴으로 위치 의존성을 대체해 메모리·연산 오버헤드를 줄이는 목적을 가진다.
- Rotary Position Embeddings(RoPE)
- — 쿼리·키 벡터에 회전 변환을 적용해 토큰 간 상대적 위치 정보를 부여하는 방식이다. 연속적 위치 관계를 내장형으로 처리해 장기 의존성에서의 성능을 개선하고, 일부 구조에서는 계산·메모리 특성과 절충한다.
- 키-값 캐시(KV 캐시)(KV cache)
- — 생성 중 이전 토큰의 key·value 벡터를 저장해 재계산을 피하는 메모리 구조이다. 토큰이 늘어날수록 각 레이어에 키·값이 누적되므로 긴 문맥에서 메모리 사용이 지배적이며, 서버 수준의 블록 할당 방식과 조합될 때 실제 해제 동작이 복잡해진다.
- Paged Attention(PagedAttention)
- — 서버 추론 환경에서 GPU 메모리를 고정 크기 블록으로 분할해 KV 캐시를 관리하는 기법이다. 블록 단위로 할당·해제되기 때문에 일부 토큰을 제거해도 블록 내에 생존 토큰이 남아 있으면 물리 메모리는 해제되지 않는 특성이 있다.
AI 요약 · 북마크 · 개인 피드 설정 — 무료
출처 · 인용 안내
인용 시 "요약 출처: AI Trends (aitrends.kr)"를 표기하고, 사실 확인은 원문 보기 기준으로 진행해 주세요. 자세한 기준은 운영 정책을 참고해 주세요.
