linoyts HF Staff commited on
Commit
ec6e9ca
·
verified ·
1 Parent(s): dca1cd6

Update minimax_h3_inpaint_blocks.py

Browse files
Files changed (1) hide show
  1. minimax_h3_inpaint_blocks.py +2 -4
minimax_h3_inpaint_blocks.py CHANGED
@@ -6,10 +6,8 @@ model repaints, and everything the mask preserves is presented to the transforme
6
  clean content pinned at the visual-conditioning timestep `0.999`, rather than the source noised down to the step's own
7
  sigma.
8
 
9
- That distinction is the whole trick, and it is what ComfyUI's MiniMax-H3 masking does too (`scale_latent_inpaint`
10
- returns the anchor rather than the schedule's noise level, and the DiT relabels masked rows). MiniMax-H3 was trained
11
- with clean visual conditioning at `0.999` and has never seen a partially denoised target row claiming to be something
12
- else, so ordinary "re-noise the original to sigma_t" inpainting is off-distribution for it.
13
 
14
  Three things follow, and they are the three blocks below:
15
 
 
6
  clean content pinned at the visual-conditioning timestep `0.999`, rather than the source noised down to the step's own
7
  sigma.
8
 
9
+ That distinction is the whole trick. MiniMax-H3 was trained with clean visual conditioning at `0.999` and has never
10
+ seen a partially denoised target row claiming to be something else, so ordinary "re-noise the original to sigma_t" inpainting is off-distribution for it.
 
 
11
 
12
  Three things follow, and they are the three blocks below:
13