소스 정보
- 저장소
- javimosch/machin-diffusion
- 최근 소스 활동
- 2026년 9월 8일 14:15
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/javimosch/machin-diffusion --skill machin-diffusion-scheduler명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | machin-diffusion-scheduler |
| description | CRITICAL — SD-Turbo scheduler correctness. The |
Using timestep_spacing: "leading" (the diffusers default for some schedulers) produced abstract noise instead of images. The UNet was told the input was nearly clean (timestep=1, sigma~0.04) while supplying high-noise latents, so it left the noise mostly intact.
Fix: SD-Turbo requires timestep_spacing: "trailing".
timestep_spacing: "trailing"
steps_offset: 1
num_train_timesteps: 1000
beta_schedule: "scaled_linear"
beta_start: 0.00085
beta_end: 0.012
prediction_type: "epsilon"
use_karras_sigmas: false
999~14.6146init_noise_sigma: ~14.6146[999, 749, 499, 249][14.6146, 4.08173, 1.61289, 0.693205, 0.0]latent = noise * 14.6146
unet_input = latent / sqrt(14.6146² + 1)
noise_pred = UNet(unet_input, timestep=999, text_embeddings)
latent = latent - 14.6146 * noise_pred
latent = latent / 0.18215 # VAE scaling factor
VAE.decode(latent)
latent = randn * init_noise_sigma
for each step:
model_input = latent / sqrt(sigma² + 1)
eps = UNet(model_input, timestep, embeddings)
latent = latent + eps * (sigma_next - sigma)
latent = latent / 0.18215
VAE.decode(latent)
The carried state is the UNSCALED latent, not the model input and not x0_hat.
guidance_scale=0.0 is the official recommended setting for SD-Turbo.guidance_scale=7.5 produced high-contrast, poor results.If you're debugging noisy output, check:
timestep_spacing is "trailing" (not "leading")999 (not 1)~14.6146 (not ~0.04)guidance_scale is 0.00.18215 before VAE decodeThe reference pipeline is at /tmp/ref_pipeline.py (diffusers/PyTorch with the correct trailing scheduler). Validate against it stage-by-stage.