최상위 10_Wiki/Topic_*였던 4개 카테고리 폴더를 10_Wiki/Topics/Topic_* 로 재배치.
콘텐츠 변경 없음(순수 폴더 이동) — Topics/ 하위 나머지 폴더는 이미 지난 커밋에서
전부 정리된 상태(잔존 항목은 에이전트 운영 상태 및 사용자가 보존을 요청한
업데이트0615/무제 3.canvas 뿐).
"매 model version 은 매 다른 aesthetic + capability profile". Midjourney v7, FLUX 1.2, SD 4 (Stable Diffusion), Sora 2, Imagen 4, DALL-E 4 — 매 2026 의 image-gen landscape 에서 version flag 의 매 careful selection 이 매 final output 의 quality 의 80% 결정.
fromdiffusersimportFluxPipelineimporttorchpipe=FluxPipeline.from_pretrained("black-forest-labs/FLUX.1.2-dev",torch_dtype=torch.bfloat16,).to("cuda")image=pipe(prompt="a samurai in moonlit bamboo forest, cinematic, 35mm film grain",guidance_scale=3.5,num_inference_steps=28,max_sequence_length=512,generator=torch.Generator("cuda").manual_seed(42),).images[0]image.save("out.png")
@dataclassclassModelVersion:name:strrevision:str# commit hash on HFvae:strtext_encoders:list[str]pinned_at:datetimeaesthetic_tags:list[str]REGISTRY={"hero-banner-v3":ModelVersion(name="black-forest-labs/FLUX.1.2-dev",revision="a1b2c3d",vae="flux-vae-16ch",text_encoders=["t5-xxl","clip-l"],pinned_at=datetime(2026,4,1),aesthetic_tags=["photoreal","high-detail"],),}
언제: model release notes 의 summary, version migration checklist, prompt syntax 의 version-specific 차이 체크.
언제 X: 매 actual aesthetic judgment — 매 visual A/B 가 ground truth. LLM 의 aesthetic claim 의 hallucination 빈번.
❌ 안티패턴
No version pin: 매 production 의 reproducibility 죽음. 매 model card revision hash 필수.
Latest = best 가정: 매 v7 이 v6 보다 specific style 에서 worse 의 사례 흔함.
Mixing flags from different versions: 매 silent ignore, 매 debug 어려움.
Single-model lock-in: 매 hybrid pipeline (one base, one inpaint, one upscale) 가 보통 best.