TL;DR
이번 기간 게시물은 오픈 웨이트 확산과 아키텍처 실험, 엣지 디바이스에서의 경량화, 문서-그래프 결합 검색 방식, 성능 최적화·보안 취약성에 초점을 뒀다. Nanbeige 4.2는 동일 22개 블록을 두 번 통과시키는 looped depth sharing으로 메모리 증설 없이 44층 유사 연산을 달성했으며 Laguna S 2.1은 118B sparse MoE와 1M-token 컨텍스트를 제공했다. 개발자들은 ESP32-S3에 28.9M 파라미터 모델을 플래시 기반 per-layer embeddings로 구동해 9.5 tokens/sec을 확보했고, Graph RAG는 문서를 그래프로 구조화해 노드 탐색으로 전역 컨텍스트를 회수한다. WallBreaker 사례와 공유 페이지 인덱싱은 공개 도구와 공유 기능이 실제로 안전·프라이버시 위험을 노출함이 확인됐다.
𝕏 실시간 트렌드 토픽
🔥 오픈 웨이트·개방형 모델 운동포스트 5
여러 계정이 오픈 웨이트와 개방형 리서치의 중요성을 강조했고 일부 조직은 규제·배포 제한을 둘러싼 논쟁을 벌였다. 공개 가중치는 검증 가능성·자체 호스팅·연구 재현성을 높이는 근거로 제시됐다. 반면 기업 일부는 위험 모델의 공개를 제한하려는 입장을 표명해 정책·비즈니스 이해관계 충돌이 드러났다.
- 오픈 웨이트는 외부에서 주장을 검증하고 자체 하드웨어로 모델을 운용할 수 있는 근거를 제공한다.
- 여러 개발자가 새 오픈 웨이트 모델을 허브에 추가하며 생태계 선택지가 확장됐다.
- 일부 기업·연구자는 유해 모델 배포 제한을 요구하며 공개와 규제 사이 긴장이 발생했다.
오픈 웨이트는 결과를 재현하고 모델 동작을 독립적으로 검증할 수 있게 하며, 민감 데이터·IP를 외부 서비스에 맡기지 않고 자체 하드웨어에서 운용할 수 있는 경로를 제공한다.
일부 조직은 위험한 모델의 무분별한 배포가 악용 가능성을 높인다고 보고 배포 규제·차단 권한을 요구하는 움직임을 보였다.
오픈과 규제는 트레이드오프 관계여서 공개의 이점과 위험 완화 방안을 병행해야 한다는 관점이 존재한다.
원문 트윗 2개 보기
Sebastian Raschka
@rasbt
Yes, open-source / open-weight models are important for a healthy AI ecosystem. That's how we can verify things, check claims, and keep up outside the closed labs. Plus, it gives us the freedom to run AI on our own hardware if we are not ready to share personal data and IPs with closed labs through using their models. (Not that proprietary models are bad, actually I use them a lot as well, but it wouldn't healthy not to have any alternatives.) Anyway, while pretty much everyone is waiting for the Kimi K3 and Ling 3.0 weights to land on the model hub any day now, there were quite a few other interesting new open-weight model releases the past week. Yes, one of those weeks! So, here are the architecture pics along with some notes on what I found most interesting: 1) Nanbeige 4.2 3B uses looped depth sharing. This basically means it runs the same 22-layer (=transformer block) stack twice. So, it extends the 22-layer architecture to 44-layers, but without duplicating the weights. (2x the transformer block compute but same memory footprint.) Why? The info is a bit sparse, but section 2.1 of the Nanbeige 4.2 technical report says two passes gave the best trade-off and retained about 75% of the token efficiency of a standard architecture. More passes gave barely any gains but made the training much slower and much more expensive. 2) Laguna S 2.1 is poolside's Laguna model in a really nice size: 118B sparse MoE with 8B active parameters and a 1M-token context window. Otherwise, the architecture is pretty standard. It uses 36 sliding-window and 12 global (gated-)GQA layers. However, given this size, and the fact that it (just barely) runs on my DGX Spark (uses about <80 GB of RAM), this is right now the most interesting model for me personally. It's 3x bigger and thus a tad slower but maybe a good candidate as daily-driver-Qwen3.6-35B-replacement. (Still waiting on some more independent performance benchmarks though.) 3) Motif-3-Beta is a new 314B-A13B sparse MoE that is somewhat based on DeepSeek V4 in terms of mHC and latent attention. But it uses a new component, Grouped Differential Latent Attention, which is inspired by Multi-head Latent Attention. I probably should write an article about this some time, but for now, the tl;dr is as follows. Regular MLA compresses the keys and values into a smaller latent representation to mainly reduce the KV cache size. GDLA does a similar low-rank compression but puts the attention heads into groups and also learns a noise head for each group where the noise gets subtracted for filtering purposes... Anyway, a topic for another day! 4) Solar Open 2 is a new 250B-A15B hybrid MoE by Upstage that interleaves three Kimi Delta Attention layers with one GQA layer. 5) Antares 1B is a small model (and there is also an even smaller 0.3B variant) from Cisco starts that with the IBM Granite 4.0 1B backbone and uses SFT plus GRPO for terminal-based cybersecurity stuff. It is a nice example of task-specific post-training on a genuinely small model. 6) BTL-3 is a rank-32 LoRA adapter for Qwen3.6-27B aimed at coding agents and structured tool use. The really strong benchmark performance suggests that LoRA adapters are still a useful tool/technique in 2026. I added all six to the LLM Architecture Gallery for some additional details: https:// sebastianraschka.com/llm-architectu re-gallery/ …
Hugging Face
@huggingface
free the parameters
Open weights. Open research. Open innovation. Marching for an open future. x.com/clementdelangu…
📈 아키텍처 실험: looped depth sharing·새 어텐션·Sparse MoE포스트 1
Nanbeige 4.2의 looped depth sharing은 동일 블록을 반복 수행해 메모리 확대 없이 더 깊은 계산을 흉내냈고, Motif·Solar 등은 새로운 어텐션·MoE 조합을 실험했다. 보고서에 따르면 looped 방식은 표준 대비 토큰 효율을 약 75% 유지하면서 계산량과 학습 시간의 트레이드오프를 보였다. 설계들은 긴 컨텍스트 지원, 활성 파라미터 축소, KV 캐시 경량화 같은 실무적 목표를 겨냥했다.
- Looped depth sharing은 22개 블록을 두 번 통과시키되 가중치를 공유해 메모리 부담을 억제한다.
- Sparse MoE 설계는 활성 파라미터만 사용해 대형 모델의 표현력을 낮은 런타임 비용으로 유지한다.
- 새로운 어텐션 변형은 KV 캐시 부담을 줄이기 위한 저차원 잠재 표현과 그룹 기반 노이즈 필터링을 결합했다.
루프드 깊이 공유는 가중치 복제를 피하면서 더 깊은 계산을 수행해 메모리 제약 환경에서 성능 향상을 노릴 수 있다.
반복 패스는 토큰 효율·학습 비용·학습 속도 사이에 명확한 트레이드오프가 있어 실제 채택은 목적·인프라에 따라 달라진다.
📈 RAG vs Graph RAG: 문서-그래프 결합 검색포스트 1
Graph RAG는 문서로부터 엔티티·관계 그래프를 구성하고 그래프 탐색으로 전역 관련 컨텍스트를 수집해 요약·응답의 완결성을 높였다. 기존의 top-k 기반 RAG는 챕터별·엔티티 중심 문맥을 모두 포괄하기 어렵다는 한계가 있었고, 그래프 탐색은 이 부분을 보완했다. 구현 관점에서는 그래프 구성·탐색 비용과 벡터 검색 효율화(예: 이진 양자화) 사이 균형이 핵심이다.
- 문서에서 엔티티와 관계를 추출해 그래프를 구성하면 특정 엔티티에 연결된 모든 관련 노드를 탐색해 전역 문맥을 확보할 수 있다.
- Graph RAG는 구조화된 데이터에 대해 LLM의 추론 능력을 더 잘 활용하도록 설계됐다.
- 벡터 검색 계층은 메모리·비용 관점에서 병목이며 이진 양자화로 32배 효율 개선이 가능하다고 제시됐다.
그래프 탐색은 엔티티별로 분산된 정보까지 연계해 회수하기 때문에 챕터·섹션 단위의 완전한 요약이 필요한 작업에서 우위를 보인다.
그래프 구성과 탐색은 추가 비용을 유발하므로 대규모 시스템에서는 검색 효율화와의 균형이 관건이다.
📈 추론 엔진·커널 최적화: vLLM·커스텀 커널 ·추론 기법포스트 1
몇몇 게시물은 vLLM 기반 최적화와 커스텀 커널, 적응형 MTP speculative decoding 같은 기법으로 추론 처리량과 긴 컨텍스트 성능을 끌어올린 사례를 보고했다. 특정 벤치마크에서 prefill·decode 처리율과 워밍업 문제 개선이 확인됐다. 실무 관점에서는 커널 캐시·스페큘레이티브 디코딩의 결합이 처리량·지연 트레이드오프를 바꾸는 요소로 작용했다.
- 커스텀 vLLM와 Blackwell 커널은 워밍업을 줄이기 위한 persistent kernel caching 기능을 도입했다.
- adaptive MTP speculative decoding이 디코딩 피크를 끌어올려 전체 처리량을 개선했다.
- 공개된 수치(예: prefill 1,329 t/s, decode peak 66 t/s, decode +23%)는 특정 하드웨어·구성에 의존한다.
커널 최적화와 적응형 예측 기법은 워밍업 비용을 크게 줄이고 긴 컨텍스트에서의 처리량을 높여 실무적 이득을 제공한다.
공개 수치는 특정 하드웨어·커널 구성에 종속적이므로 독립적·재현 가능한 벤치마크 검증이 필요하다.
📈 엣지·초저전력 LLM 사례: ESP32-S3 28.9M 모델포스트 2
ESP32-S3 같은 초저비용 마이크로컨트롤러에서 28.9M 파라미터 모델을 구동하는 시도가 보고됐다. 구현은 대부분 파라미터를 플래시에 두고 핵심 소수만 RAM에 올리는 per-layer embeddings 기법을 사용해 이루어졌다. 결과적으로 대화형 전체 챗봇 수준은 아니지만 오프라인 환경에서 9.5 tokens/sec 같은 실행 성능을 실현했다.
- 모델 대부분을 플래시에 보관하고 핵심 블록만 빠른 메모리로 로드해 실시간성을 확보했다.
- 보고된 실행 속도는 약 9.5 tokens/sec이며 모델 크기는 28.9M 파라미터 수준이다.
- 해당 구현은 전체 기능을 갖춘 챗봇이라기보다는 로컬·저전력 환경에서 제한적 생성 기능을 제공하는 증명 사례다.
per-layer embeddings와 플래시 중심 저장은 극단적 자원 제약 환경에서 모델 기능을 로컬로 제공할 수 있게 하며 프라이버시·비용 측면에서 장점을 만든다.
에지 장치 구현은 응답 속도·기능 측면에서 제한이 있고 전체 대화 경험을 대체하지는 못한다.
원문 트윗 2개 보기
Md Ismail Šojal
@0x0SojalSec
The $8 local AI Machine it became real. You can run 28.9 Million Parameters, On an $8 Chip, Fully 100% Offline Ai model that costs less than two coffees. A developer squeezed a 28.9 million parameter language model onto an ESP32-S3 microcontroller that costs roughly $8. You do multiple things like Generates coherent short stories at 9.5 tokens per second, and uses almost no power. Previous record on this class of chip? 260k parameters. This is over 100x larger. The trick? Most of the model lives in flash memory using a technique called Per-Layer Embeddings (inspired by Google’s Gemma). Only a tiny core (560K params) needs fast RAM. This isn’t a full chatbot. But it proves something important: The future of AI might not be bigger models in the cloud. It might be intelligence that’s cheap enough, private enough, and local enough to become infrastructure. The idea i give you possible for edge devices, IoT, and truly private intelligence.
Md Ismail Šojal
@0x0SojalSec
$8 ESP32-S3 could run a real LLM at 9.5 tokens/sec. 14.9 MB total size 28.9 million parameter Gemma model completely offline with LED-level power.
🔥 보안·레드팀·공유 기능의 노출 위험포스트 2
오픈소스 레드팀 도구 WallBreaker가 Claude Opus 5에서 고위험 정보 추출을 성공시켰고, 일부 서비스의 공유 기능이 검색엔진에 노출되어 민감 정보가 드러난 사례가 보고됐다. 결과적으로 guardrails 개선이 일부 이뤄졌지만 여전히 안전 완료 동작에서 유용한 실행 정보를 누출할 수 있음이 확인됐다. 공개 도구는 취약점 식별에 기여하나 동시에 악용 경로를 드러낼 위험도 존재한다.
- WallBreaker는 다층 난독화·경계 매핑을 조합해 모델로부터 규제 대상·고위험 정보를 추출했다.
- 서비스의 '공유' 페이지가 검색엔진에 인덱싱되며 API 키·이력 등 민감 정보 노출 사례가 발생했다.
- 가드레일은 개선됐으나 모델의 안전 완료가 실전 수준의 정보 누출을 완전히 막지는 못했다.
레드팀 사례와 인덱싱 노출은 공개·공유 기능이 실제로 프라이버시·안전 리스크를 높인다는 근거가 되며, 배포·공유 정책과 기술적 완화책이 필요하다.
오픈 레드팀 도구는 취약점 발견에 기여하지만 도구 공개가 악용 가능성을 동시에 높일 수 있어 공개 방식과 범위를 신중히 결정할 필요가 있다.
원문 트윗 2개 보기
Md Ismail Šojal
@0x0SojalSec
Claude Opus 5 Jailbreak Anthropic said Opus 5 would be one of their hardest models to jailbreak. A Tool called WallBreaker just changed that narrative. Using a combination of academic framing, obfuscation, and boundary mapping, the open-source red-teaming tool successfully extracted detailed information on high-risk biological engineering and regulated chemical synthesis from the model. takeaway is : - Guardrails have improved since Claude 4.5 - But they’re still significantly weaker than OpenAI’s on these domains - Safe completion behavior can still leak operationally useful knowledge Detailed outputs on pathogen resistance development and controlled substance synthesis even when the model tried safe completion responses. Techniques that worked: - Academic + professional framing - Multi-layer obfuscation - Careful boundary mapping
Md Ismail Šojal
@0x0SojalSec
Your Claude chats might already be public on Google. When you use Claude’s Share feature, it creates a public web page. Turns out those pages are getting indexed by search engines. People are already finding: - API keys & credentials - Full resumes with real names & contacts - Internal company projects - Legal discussions - Deeply personal conversations This is the same mistake ChatGPT made last year.
AI 요약 · 북마크 · 개인 피드 설정 — 무료
출처 · 인용 안내
인용 시 "요약 출처: AI Trends (aitrends.kr)"를 표기하고, 사실 확인은 원문 보기 기준으로 진행해 주세요. 자세한 기준은 운영 정책을 참고해 주세요.