
  <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
      <title>Chaos and Order</title>
      <link>https://www.youngju.dev/blog</link>
      <description>천천히 올바르게. AI Researcher &amp; DevOps Engineer Youngju&#39;s blog. GPU/CUDA, LLM, MLOps, Kubernetes AI workloads, and data engineering — plus mindset essays on confidence, routines, health, and sport psychology.</description>
      <language>ko</language>
      <managingEditor>fjvbn2003@gmail.com (Youngju Kim)</managingEditor>
      <webMaster>fjvbn2003@gmail.com (Youngju Kim)</webMaster>
      <lastBuildDate>Wed, 12 Aug 2026 00:00:00 GMT</lastBuildDate>
      <atom:link href="https://www.youngju.dev/tags/model-internals/feed.xml" rel="self" type="application/rss+xml"/>
      
  <item>
    <guid>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-attention-variants.en</guid>
    <title>Attention Variants — From MHA to MLA, and How the KV Cache Shrinks</title>
    <link>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-attention-variants.en</link>
    <description>Comparing MHA, MQA, GQA, and MLA using real config values. Working out with formulas and numbers how the grouped-query attention in Qwen3, Mixtral, and GLM-4.5 and the latent attention in DeepSeek-V3 and Kimi K2 reduce per-token KV cache, and what each design gives up in return.</description>
    <pubDate>Wed, 12 Aug 2026 00:00:00 GMT</pubDate>
    <author>fjvbn2003@gmail.com (Youngju Kim)</author>
    <category>ai-papers</category><category>model-internals</category><category>attention</category><category>gqa</category><category>mla</category><category>kv-cache</category>
  </item>

  <item>
    <guid>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-attention-variants.ja</guid>
    <title>アテンションの変種 — MHA から MLA まで、KV キャッシュはどう縮むか</title>
    <link>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-attention-variants.ja</link>
    <description>MHA、MQA、GQA、MLA を実際の config 値で比較します。Qwen3、Mixtral、GLM-4.5 のグループクエリアテンションと、DeepSeek-V3、Kimi K2 の潜在アテンションがトークンあたりの KV キャッシュを何倍縮めるのかを式と数字で計算し、その代償に何を差し出すのかを整理します。</description>
    <pubDate>Wed, 12 Aug 2026 00:00:00 GMT</pubDate>
    <author>fjvbn2003@gmail.com (Youngju Kim)</author>
    <category>ai-papers</category><category>model-internals</category><category>attention</category><category>gqa</category><category>mla</category><category>kv-cache</category>
  </item>

  <item>
    <guid>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-attention-variants</guid>
    <title>어텐션 변형 — MHA에서 MLA까지, KV 캐시는 어떻게 줄어드는가</title>
    <link>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-attention-variants</link>
    <description>MHA, MQA, GQA, MLA를 실제 config 값으로 비교합니다. Qwen3, Mixtral, GLM-4.5의 그룹 쿼리 어텐션과 DeepSeek-V3, Kimi K2의 잠재 어텐션이 토큰당 KV 캐시를 몇 배 줄이는지 공식과 숫자로 계산하고, 그 대가로 무엇을 내주는지 정리합니다.</description>
    <pubDate>Wed, 12 Aug 2026 00:00:00 GMT</pubDate>
    <author>fjvbn2003@gmail.com (Youngju Kim)</author>
    <category>ai-papers</category><category>model-internals</category><category>attention</category><category>gqa</category><category>mla</category><category>kv-cache</category>
  </item>

  <item>
    <guid>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-how-to-read-a-config-json.en</guid>
    <title>Anatomy of config.json — Reading a Model From One Settings File</title>
    <link>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-how-to-read-a-config-json.en</link>
    <description>How every field in config.json — hidden_size, num_hidden_layers, num_attention_heads versus num_key_value_heads, head_dim, intermediate_size, rope_theta, vocab_size, tie_word_embeddings — shows up in memory and speed, and a hand count of Qwen3-8B and Mixtral-8x7B parameters that matches the published tensor totals exactly.</description>
    <pubDate>Wed, 12 Aug 2026 00:00:00 GMT</pubDate>
    <author>fjvbn2003@gmail.com (Youngju Kim)</author>
    <category>ai-papers</category><category>model-internals</category><category>config-json</category><category>transformer</category><category>llm-architecture</category><category>parameter-count</category>
  </item>

  <item>
    <guid>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-how-to-read-a-config-json.ja</guid>
    <title>config.json 完全解剖 — 設定ファイル一枚でモデル構造を読む</title>
    <link>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-how-to-read-a-config-json.ja</link>
    <description>hidden_size、num_hidden_layers、num_attention_heads と num_key_value_heads、head_dim、intermediate_size、rope_theta、vocab_size、tie_word_embeddings まで、config.json の各フィールドがメモリと速度にどう現れるかを説明し、Qwen3-8B と Mixtral-8x7B のパラメータ数を手で数えて公開されたテンソル数と正確に一致させる過程を示します。</description>
    <pubDate>Wed, 12 Aug 2026 00:00:00 GMT</pubDate>
    <author>fjvbn2003@gmail.com (Youngju Kim)</author>
    <category>ai-papers</category><category>model-internals</category><category>config-json</category><category>transformer</category><category>llm-architecture</category><category>parameter-count</category>
  </item>

  <item>
    <guid>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-how-to-read-a-config-json</guid>
    <title>config.json 완전 해부 — 설정 파일 한 장으로 모델 구조 읽기</title>
    <link>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-how-to-read-a-config-json</link>
    <description>hidden_size, num_hidden_layers, num_attention_heads와 num_key_value_heads, head_dim, intermediate_size, rope_theta, vocab_size, tie_word_embeddings까지 config.json의 모든 필드가 메모리와 속도에 어떻게 나타나는지 설명하고, Qwen3-8B와 Mixtral-8x7B의 파라미터 수를 손으로 세어 공개된 텐서 수와 정확히 일치시키는 과정을 보여줍니다.</description>
    <pubDate>Wed, 12 Aug 2026 00:00:00 GMT</pubDate>
    <author>fjvbn2003@gmail.com (Youngju Kim)</author>
    <category>ai-papers</category><category>model-internals</category><category>config-json</category><category>transformer</category><category>llm-architecture</category><category>parameter-count</category>
  </item>

  <item>
    <guid>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-moe-routing.en</guid>
    <title>MoE Routing — How an Expert Gets Picked</title>
    <link>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-moe-routing.en</link>
    <description>Reading the config fields of a mixture-of-experts layer against real models. Comparing Mixtral 2-of-8, Qwen3 8-of-128, the 256 routed experts plus a shared expert in DeepSeek-V3, and the sparsity of 48 in Kimi K2, then working through why active and total parameters produce different costs and what load-balancing losses trade against auxiliary-loss-free bias schemes.</description>
    <pubDate>Wed, 12 Aug 2026 00:00:00 GMT</pubDate>
    <author>fjvbn2003@gmail.com (Youngju Kim)</author>
    <category>ai-papers</category><category>model-internals</category><category>mixture-of-experts</category><category>moe</category><category>routing</category><category>load-balancing</category>
  </item>

  <item>
    <guid>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-moe-routing.ja</guid>
    <title>MoE ルーティング — 専門家はどう選ばれるか</title>
    <link>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-moe-routing.ja</link>
    <description>専門家混合層の config フィールドを実際のモデルで読みます。Mixtral の 8 個中 2 個、Qwen3 の 128 個中 8 個、DeepSeek-V3 の 256 個のルーティング専門家と共有専門家、Kimi K2 の希薄度 48 を比較し、活性パラメータと全パラメータがなぜ異なるコストを生むのか、ロードバランシング損失と補助損失なしのバイアス方式が何を引き換えにするのかを整理します。</description>
    <pubDate>Wed, 12 Aug 2026 00:00:00 GMT</pubDate>
    <author>fjvbn2003@gmail.com (Youngju Kim)</author>
    <category>ai-papers</category><category>model-internals</category><category>mixture-of-experts</category><category>moe</category><category>routing</category><category>load-balancing</category>
  </item>

  <item>
    <guid>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-moe-routing</guid>
    <title>MoE 라우팅 — 전문가는 어떻게 뽑히는가</title>
    <link>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-moe-routing</link>
    <description>전문가 혼합 계층의 config 필드를 실제 모델로 읽습니다. Mixtral의 8개 중 2개, Qwen3의 128개 중 8개, DeepSeek-V3의 256개 라우팅 전문가와 공유 전문가, Kimi K2의 희소도 48을 비교하고, 활성 파라미터와 전체 파라미터가 왜 다른 비용을 만드는지, 로드 밸런싱 손실과 보조 손실 없는 편향 방식이 무엇을 맞바꾸는지 정리합니다.</description>
    <pubDate>Wed, 12 Aug 2026 00:00:00 GMT</pubDate>
    <author>fjvbn2003@gmail.com (Youngju Kim)</author>
    <category>ai-papers</category><category>model-internals</category><category>mixture-of-experts</category><category>moe</category><category>routing</category><category>load-balancing</category>
  </item>

  <item>
    <guid>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-normalization-and-activation.en</guid>
    <title>Normalization and Activation — Keeping Training From Falling Apart</title>
    <link>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-normalization-and-activation.en</link>
    <description>Confirming from config values why RMSNorm, pre-norm, and SwiGLU became the defaults, then walking through the newer devices that stop attention logits from exploding — the QK-Norm of Qwen3 and the QK-Clip of Kimi K2 — with the figures their reports state. What gets added for stability, and what gets accepted in return.</description>
    <pubDate>Wed, 12 Aug 2026 00:00:00 GMT</pubDate>
    <author>fjvbn2003@gmail.com (Youngju Kim)</author>
    <category>ai-papers</category><category>model-internals</category><category>rmsnorm</category><category>swiglu</category><category>training-stability</category><category>qk-norm</category>
  </item>

  <item>
    <guid>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-normalization-and-activation.ja</guid>
    <title>正規化と活性化 — 学習を壊さないために</title>
    <link>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-normalization-and-activation.ja</link>
    <description>RMSNorm とプレノルム、SwiGLU がなぜ現在の標準になったのかを config の値で確認し、Qwen3 の QK-Norm や Kimi K2 の QK-Clip のようにアテンションロジットの暴走を止める新しい仕組みを、各レポートが記す数値とともに整理します。安定性のために何を足し、何を引き受けるのかを扱います。</description>
    <pubDate>Wed, 12 Aug 2026 00:00:00 GMT</pubDate>
    <author>fjvbn2003@gmail.com (Youngju Kim)</author>
    <category>ai-papers</category><category>model-internals</category><category>rmsnorm</category><category>swiglu</category><category>training-stability</category><category>qk-norm</category>
  </item>

  <item>
    <guid>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-normalization-and-activation</guid>
    <title>정규화와 활성화 — 학습을 무너뜨리지 않는 법</title>
    <link>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-normalization-and-activation</link>
    <description>RMSNorm과 프리노름, SwiGLU가 왜 지금의 표준이 되었는지 config 값으로 확인하고, Qwen3의 QK-Norm과 Kimi K2의 QK-Clip처럼 어텐션 로짓 폭주를 막는 최신 장치를 실제 리포트의 수치와 함께 정리합니다. 안정성을 위해 무엇을 추가하고 무엇을 감수하는지 다룹니다.</description>
    <pubDate>Wed, 12 Aug 2026 00:00:00 GMT</pubDate>
    <author>fjvbn2003@gmail.com (Youngju Kim)</author>
    <category>ai-papers</category><category>model-internals</category><category>rmsnorm</category><category>swiglu</category><category>training-stability</category><category>qk-norm</category>
  </item>

  <item>
    <guid>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-positional-encoding.en</guid>
    <title>Positional Encoding — RoPE and the Price of Context Extension</title>
    <link>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-positional-encoding.en</link>
    <description>Showing through wavelength arithmetic how a single rope_theta value acts on context length, then comparing the 500000 of Llama 3, the ABF step in Qwen3, the YaRN settings of DeepSeek-V3 and Kimi K2, and the partial rotation in GLM-4.5 using real configs. Concludes with why long context is not free, in prefill compute and cache cost.</description>
    <pubDate>Wed, 12 Aug 2026 00:00:00 GMT</pubDate>
    <author>fjvbn2003@gmail.com (Youngju Kim)</author>
    <category>ai-papers</category><category>model-internals</category><category>rope</category><category>positional-encoding</category><category>long-context</category><category>yarn</category>
  </item>

  <item>
    <guid>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-positional-encoding.ja</guid>
    <title>位置エンコーディング — RoPE と文脈拡張の代償</title>
    <link>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-positional-encoding.ja</link>
    <description>rope_theta 一つが文脈長にどう作用するかを波長の計算で示し、Llama 3 の 500000、Qwen3 の ABF、DeepSeek-V3 と Kimi K2 の YaRN 設定、GLM-4.5 の部分回転を実際の config で比較します。長い文脈がなぜ無料でないのかを、プリフィルの演算量とキャッシュのコストから整理します。</description>
    <pubDate>Wed, 12 Aug 2026 00:00:00 GMT</pubDate>
    <author>fjvbn2003@gmail.com (Youngju Kim)</author>
    <category>ai-papers</category><category>model-internals</category><category>rope</category><category>positional-encoding</category><category>long-context</category><category>yarn</category>
  </item>

  <item>
    <guid>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-positional-encoding</guid>
    <title>위치 인코딩 — RoPE와 컨텍스트 확장의 대가</title>
    <link>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-positional-encoding</link>
    <description>rope_theta 하나가 문맥 길이에 어떻게 작용하는지 파장 계산으로 보여 주고, Llama 3의 500000, Qwen3의 ABF, DeepSeek-V3와 Kimi K2의 YaRN 설정, GLM-4.5의 부분 회전을 실제 config로 비교합니다. 긴 컨텍스트가 왜 공짜가 아닌지 프리필 연산량과 캐시 비용으로 정리합니다.</description>
    <pubDate>Wed, 12 Aug 2026 00:00:00 GMT</pubDate>
    <author>fjvbn2003@gmail.com (Youngju Kim)</author>
    <category>ai-papers</category><category>model-internals</category><category>rope</category><category>positional-encoding</category><category>long-context</category><category>yarn</category>
  </item>

  <item>
    <guid>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-reading-a-tech-report.en</guid>
    <title>Reading a Technical Report Critically — What Gets Written Down and What Goes Missing</title>
    <link>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-reading-a-tech-report.en</link>
    <description>How to separate the verifiable from the unverifiable in a model technical report. Covers the limits of self-reported benchmarks, the places where a config and a report disagree, values that could not be read from gated repositories, and the verification procedure used throughout this series, illustrated with real cases.</description>
    <pubDate>Wed, 12 Aug 2026 00:00:00 GMT</pubDate>
    <author>fjvbn2003@gmail.com (Youngju Kim)</author>
    <category>ai-papers</category><category>model-internals</category><category>tech-report</category><category>benchmarks</category><category>evaluation</category><category>reproducibility</category>
  </item>

  <item>
    <guid>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-reading-a-tech-report.ja</guid>
    <title>技術レポートを批判的に読む — 何が書かれ、何が抜けるか</title>
    <link>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-reading-a-tech-report.ja</link>
    <description>モデル技術レポートで検証可能な項目と検証不可能な項目を区別する方法を整理します。自己申告ベンチマークの限界、config とレポートが食い違う箇所、ゲートされたリポジトリで確認できなかった値、そしてシリーズ全体で用いた確認手順を実例とともに示します。</description>
    <pubDate>Wed, 12 Aug 2026 00:00:00 GMT</pubDate>
    <author>fjvbn2003@gmail.com (Youngju Kim)</author>
    <category>ai-papers</category><category>model-internals</category><category>tech-report</category><category>benchmarks</category><category>evaluation</category><category>reproducibility</category>
  </item>

  <item>
    <guid>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-reading-a-tech-report</guid>
    <title>기술 리포트 비판적으로 읽기 — 무엇이 적히고 무엇이 빠지는가</title>
    <link>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-reading-a-tech-report</link>
    <description>모델 기술 리포트에서 검증 가능한 항목과 검증 불가능한 항목을 구분하는 법을 정리합니다. 자체 보고 벤치마크의 한계, config와 리포트가 어긋나는 지점, 게이트된 저장소에서 확인할 수 없는 값, 그리고 시리즈 전체에서 쓴 확인 절차를 실제 사례로 보여 줍니다.</description>
    <pubDate>Wed, 12 Aug 2026 00:00:00 GMT</pubDate>
    <author>fjvbn2003@gmail.com (Youngju Kim)</author>
    <category>ai-papers</category><category>model-internals</category><category>tech-report</category><category>benchmarks</category><category>evaluation</category><category>reproducibility</category>
  </item>

  <item>
    <guid>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-tokenizer-internals.en</guid>
    <title>Inside the Tokenizer — Why Korean Costs More Tokens, and What That Costs</title>
    <link>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-tokenizer-internals.en</link>
    <description>How byte-level BPE works, then downloading the actual tokenizer files of Qwen3, DeepSeek-V3, and Mixtral to tokenize the same English and Korean text and compare. Covers the vocabulary-size tradeoff, why the config vocab_size differs from the real vocabulary count, and how token counts feed into cost and the context window.</description>
    <pubDate>Wed, 12 Aug 2026 00:00:00 GMT</pubDate>
    <author>fjvbn2003@gmail.com (Youngju Kim)</author>
    <category>ai-papers</category><category>model-internals</category><category>tokenizer</category><category>bpe</category><category>korean-nlp</category><category>vocab-size</category>
  </item>

  <item>
    <guid>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-tokenizer-internals.ja</guid>
    <title>トークナイザの内部 — 日本語がトークンを多く食う理由とその代価</title>
    <link>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-tokenizer-internals.ja</link>
    <description>バイトレベル BPE の仕組みを説明し、Qwen3、DeepSeek-V3、Mixtral の実際のトークナイザファイルをダウンロードして同じ意味の英語と韓国語の文章を直接トークン化して比較します。語彙サイズのトレードオフ、config の vocab_size と実際の語彙数が異なる理由、トークン数がコストと文脈窓に与える影響を整理します。</description>
    <pubDate>Wed, 12 Aug 2026 00:00:00 GMT</pubDate>
    <author>fjvbn2003@gmail.com (Youngju Kim)</author>
    <category>ai-papers</category><category>model-internals</category><category>tokenizer</category><category>bpe</category><category>korean-nlp</category><category>vocab-size</category>
  </item>

  <item>
    <guid>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-tokenizer-internals</guid>
    <title>토크나이저 내부 — 한국어가 토큰을 더 먹는 이유와 그 비용</title>
    <link>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-tokenizer-internals</link>
    <description>바이트 수준 BPE가 어떻게 동작하는지 설명하고, Qwen3와 DeepSeek-V3, Mixtral의 실제 토크나이저 파일을 내려받아 같은 뜻의 영어와 한국어 문장을 직접 토큰화해 비교합니다. 어휘 크기의 트레이드오프, config의 vocab_size와 실제 어휘 수가 다른 이유, 그리고 토큰 수가 비용과 문맥 창에 미치는 영향을 정리합니다.</description>
    <pubDate>Wed, 12 Aug 2026 00:00:00 GMT</pubDate>
    <author>fjvbn2003@gmail.com (Youngju Kim)</author>
    <category>ai-papers</category><category>model-internals</category><category>tokenizer</category><category>bpe</category><category>korean-nlp</category><category>vocab-size</category>
  </item>

  <item>
    <guid>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-training-recipe.en</guid>
    <title>The Training Recipe — From Pre-training to Post-training, and What Reports Write Down</title>
    <link>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-training-recipe.en</link>
    <description>Comparing, exactly as written in the reports, the three stages and six context extensions of Llama 3, the three-stage pre-training of Qwen3, the learning-rate schedule and two-phase YaRN extension of DeepSeek-V3, and the data-rephrasing experiment of Kimi K2, then setting out how to read a training-stage description.</description>
    <pubDate>Wed, 12 Aug 2026 00:00:00 GMT</pubDate>
    <author>fjvbn2003@gmail.com (Youngju Kim)</author>
    <category>ai-papers</category><category>model-internals</category><category>pretraining</category><category>training-recipe</category><category>data-mixture</category><category>long-context</category>
  </item>

  <item>
    <guid>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-training-recipe.ja</guid>
    <title>学習レシピ — 事前学習から後学習まで、レポートは何を書くか</title>
    <link>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-training-recipe.ja</link>
    <description>Llama 3 の三段階と六回の文脈拡張、Qwen3 の三段階事前学習、DeepSeek-V3 の学習率スケジュールと二段階 YaRN 拡張、Kimi K2 のデータ再記述実験を、レポートに書かれたとおりに比較し、学習段階の記述を読む方法を整理します。</description>
    <pubDate>Wed, 12 Aug 2026 00:00:00 GMT</pubDate>
    <author>fjvbn2003@gmail.com (Youngju Kim)</author>
    <category>ai-papers</category><category>model-internals</category><category>pretraining</category><category>training-recipe</category><category>data-mixture</category><category>long-context</category>
  </item>

  <item>
    <guid>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-training-recipe</guid>
    <title>학습 레시피 — 사전학습에서 후학습까지, 리포트는 무엇을 적는가</title>
    <link>https://www.youngju.dev/blog/ai-papers/2026-08-12-model-internals-training-recipe</link>
    <description>Llama 3의 세 단계와 여섯 번의 컨텍스트 확장, Qwen3의 세 단계 사전학습, DeepSeek-V3의 학습률 스케줄과 두 단계 YaRN 확장, Kimi K2의 데이터 재작성 실험을 리포트에 적힌 그대로 비교하고, 학습 단계 기술을 읽는 법을 정리합니다.</description>
    <pubDate>Wed, 12 Aug 2026 00:00:00 GMT</pubDate>
    <author>fjvbn2003@gmail.com (Youngju Kim)</author>
    <category>ai-papers</category><category>model-internals</category><category>pretraining</category><category>training-recipe</category><category>data-mixture</category><category>long-context</category>
  </item>

    </channel>
  </rss>
