CivArchive
    Infested Pony - Plague
    NSFW
    Preview 1
    Preview 2
    Preview 3
    Preview 4
    Preview 5
    Preview 6
    Preview 7
    Preview 8
    Preview 9
    Preview 10

    Initially unstable and creative merge of Troubled Confusion LX Overburnt and AutismMix Confetti.

    Recommended parameters:

    Undead V2 - Euler A or DDPM samplers with 30..40 steps OR DPM++ SDE sampler with 8..10 steps

    Undead - Euler A or DDPM samplers with 30..40 steps

    Plague - Euler A or DDPM samplers with 30..40 steps

    Flu - Euler A or DDPM samplers with 30..40 steps OR DPM++ SDE sampler with CFG 2..3 and 8..10 steps

    tensor_pwm merge method is (Python code):

    def tensor_pwm(a: Tensor, b: Tensor, alpha: float, beta: float, **kwargs) -> Tensor:  # pylint: disable=unused-argument
        """
        Takes a slice of Secondary Model and repeatedly pastes it into Primary Model
        Alpha sets the width of the slice
        Beta sets the start point of the slice
        ie Alpha = 0.125 Beta = 0.25 is (AABABABA) 
        """
        tt = a.clone()
        i = beta    
        while i < 1:
            start = int(a.shape[0] * i)
            i = min(i + alpha, 1)
            end = int(a.shape[0] * i)
            i = min(i + alpha, 1)
            k = a[start:end].nanmedian() - b[start:end].nanmedian()
            tt[start:end] = k + b[start:end].clone()    
        return tt

    Description

    Recipe:

    Troubled Confusion LX Overburnt (TCLX)

    AutismMix Confetti (AMC)

    triple_sum(
      tensor_pwm(TCLX, AMC, 0.0625, 0.25),
      tensor_pwm(TCLX, AMC, 0.125, 0.25),
      weightened_sum(TCLX, AMC, 0.55),
      0.1, 0.25
    )

    FAQ

    Checkpoint
    Pony

    Details

    Downloads
    149
    Platform
    SeaArt
    Platform Status
    Available
    Created
    12/14/2024
    Updated
    1/25/2025
    Deleted
    -

    Files

    Available On (1 platform)

    Same model published on other platforms. May have additional downloads or version variants.