We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4546b5f commit 33c288aCopy full SHA for 33c288a
1 file changed
invokeai/frontend/web/src/features/nodes/util/graph/graphBuilderUtils.ts
@@ -260,17 +260,7 @@ export const getDenoisingStartAndEnd = (state: RootState): { denoising_start: nu
260
};
261
}
262
263
- case 'anima': {
264
- // Anima uses a fixed shift=3.0 which makes the sigma schedule highly non-linear.
265
- // Without rescaling, most of the visual 'change' is concentrated in the high denoise
266
- // strength range (>0.8). The exponent 0.2 spreads the effective range more evenly,
267
- // matching the approach used for FLUX and SD3.
268
- const animaExponent = optimizedDenoisingEnabled ? 0.2 : 1;
269
- return {
270
- denoising_start: 1 - denoisingStrength ** animaExponent,
271
- denoising_end: 1,
272
- };
273
- }
+ case 'anima':
274
case 'sd-1':
275
case 'sd-2':
276
case 'cogview4':
0 commit comments