sorryhyun

Knowledge gains its value when shared.

AIAI InterfaceCUDAClaude CodeDevelopmentDiffusionLLM ResearchLoRAMachine LearningOpinionPaperPersonaPromptResearchRust
2026-08-24

Demoted Training, the Easy Version: When Does a Downscaled Image Give the Same Gradient?

Training a DiT LoRA on a downscaled latent at high noise should be free: the noise already ate the detail. Measured at the gradient level it is only sometimes free, and the map of when comes from two huge perturbations that nearly cancel each other. Here is the whole story without the appendix.

LoRADiffusionResearch
2026-08-13

Confounded by Boot: Your Reference Numbers Died in Last Night's Reboot

Sequel to the chaos-floor post. This time everything ran with --deterministic — and a validation gate still failed at 0.33 against committed reference measurements. Nothing changed: not the weights, not torch, not the driver. Just two reboots and an empty /tmp. Determinism pins a kernel path; it can't pin which path you're on.

LoRADiffusionDevelopmentCUDA
2026-08-03

The OS That Files Its Own Bug Reports

A YAAR sequel: agents building apps inside the OS keep hitting bugs in the OS itself — so I gave them a GitHub app agent that verifies reports against real source and files the issue.

AI InterfaceDevelopmentOpinion
2026-07-27

Your Paired A/B Is Measuring GPU Noise: a 0.41 Chaos Floor Under Seeded LoRA Training

We seeded everything — init, data order, noise, even per-step σ draws — and still got checkpoint cosine 0.41 between two runs of the identical command. The culprit is the one RNG no seed reaches, and one flag makes training bit-exact.

LoRADiffusionDevelopmentCUDA
2026-07-15

Where the AdaLN Drift Began

While improving my turbo LoRA I diffed the official turbo checkpoint against base: the biggest movers in the whole delta were AdaLN layers my trainer never touches. I git-blamed that exclusion back through the ecosystem to a single line in a "simplification" refactor that nobody framed as a decision.

LoRADiffusionDevelopment
2026-07-05

The Next Interface Won't Be Designed for Humans

Introducing YAAR, a generative OS where the AI makes the system calls — and a proposal for 'model DX' as the design discipline behind it.

AI InterfaceDevelopmentOpinion
2026-06-17

Doing Research with Claude

An empirical-ML research workflow where decisions come from measurement, not plausibility — gates kill expensive mistakes early, dead hypotheses still get a tombstone, and even a clean PASS has to answer one last question: "but is this a contribution?" And where Claude rides the loop with you.

AIResearchDevelopment
2026-05-29

Training a Turbo LoRA on a Single Consumer GPU

Few-step distillation usually means holding a teacher and a student model in memory at once. We distilled a 28-step diffusion teacher into a 4-step LoRA on one 16 GB card by running three roles off a single frozen backbone.

LoRADiffusionDevelopment
2026-04-25

Training HydraLoRA for a Diffusion Model

How I got an MoE-style LoRA to actually specialize on a T2I model — through a cold-start deadlock, a failed jitter attempt, orthogonalized experts via SVD slicing, expert warmup, and σ-conditional routing borrowed from T-LoRA.

LoRADevelopmentDiffusion
2026-04-18

ChitChats: A Persona Prompt Recipe for Opus 4.7

Sharing a persona prompt, memory layout, and the 'excuse tool' — patterns I kept refining from Opus 4.1 through 4.7.

LLM ResearchPersonaPrompt
2026-04-03

Making torch.compile Actually Work for DiT LoRA Training

DiT training has three sources of shape dynamism that cause torch.compile to recompile every step. We eliminated all three and got stable compiled training on a consumer GPU.

DevelopmentCUDA
2026-03-30

Getting Flash Attention 4 to Work on SM120 (RTX 5060 Ti)

Flash Attention 4 doesn't support consumer Blackwell GPUs yet. We fixed three critical bugs and got it running on the RTX 5060 Ti.

CUDADevelopment
2026-03-14

What C++ proves: the failure of 'understand every line of code'

A C++ critique video as a lens into vibe coding and the myth of total code comprehension.

DevelopmentOpinion
2026-03-12

LoRA Training Precision Improvements

Two precision-oriented features for the LoRA training pipeline: lora_fp32_accumulation and attn_softmax_scale.

DevelopmentLoRAMachine Learning
2026-01-24

Why Epiplexity matters

Personal opinion on the paper 'Epiplexity'

PaperOpinion
2026-01-22

Building Windows Applications with Claude Code CLI (Rust)

How to build native Windows desktop applications that integrate with the Claude Code CLI using a pure Rust backend.

Claude CodeRustDevelopment
2026-01-19

Should AI slop not be respected?

Personal opinion on AI slops

Opinion
2026-01-09

Why Long Context Research Is Difficult

An exploration of the challenges in long context language model research.

LLM Research
2026-01-03

Recent Papers That Look Good To Me

A personal pick of recently published papers that show strong potential.

LLM ResearchPaperOpinion
2025-12-30

Why Persona Will Be the Next Agentic LLM

A personal take on the role of persona in the agentic LLM paradigm.

PersonaLLM ResearchOpinion
2025-12-04

Building Windows Applications with Claude Code CLI (Rust)

How to build native Windows desktop applications that integrate with the Claude Code CLI using a pure Rust backend.

Opinion