CoolFace
Modelpublic

bghira/anima-anyflow-e621-dmd-v1

sourceHugging Faceotherupdated 1mo agoView on Hugging Face
1likes23downloads
Model Card
ComfyUI support: SimpleTuner-io/ComfyUI-AnyFlow is the canonical AnyFlow ComfyUI integration and ships with a ready-made workflow for Anima few-step inference.

Experiment: AnyFlow on-policy DMD, v1 (EMA ablation baseline)

Stage 2 of a two-stage AnyFlow distillation of Anima Base v1.0 on a 65k-sample e621 subset (qwen2.5-VL-7B captions, webshart streaming).

  • Init: stage-1 forward-MeanFlow LoRA (20,000 steps, global batch 16), initialized from that run's EMA weights (bghira/anima-anyflow-e621-stage1, checkpoint-20000/ema).
  • Objective: NVIDIA AnyFlow on-policy stage — DMD with jump/step/jump student rollouts (step counts {2,4,8,16,50}), real score at CFG 3.0 against cached unconditional embeddings, fresh discriminator adapter (lr 2e-6, betas (0, 0.999)), co-trained forward MeanFlow branch with fuseguidancescale 3.0.
  • Optimization: 1,500 steps, lr 2e-6 constant, maxgradnorm 1.0, rank/alpha 128, global batch 16 on 4x L40S.
  • EMA ablation cell v1: ema_update_interval: 5 with SimpleTuner's default slow decay — the stage-2 EMA accumulates only ~300 updates and lags badly; the live (non-EMA) weights are the usable artifact from this run. v2–v4 vary the EMA interval/decay.
  • Outcome: distribution matching restored the sharpness the mean-matching forward stage structurally cannot produce — visible within 250 steps at 4-step/CFG-1 inference. Checkpoints every 250 steps allow peak selection along the fidelity/coherence arc.

bghira/anima-anyflow-e621-dmd-wip

This is a PEFT LoRA derived from circlestone-labs/Anima-Base-v1.0-Diffusers.

The main validation prompt used during training was:

masterpiece, best quality, score_7, safe, anime portrait of a young woman with blue hair wearing a white jacket, clean line art, detailed eyes, soft daylight

Validation settings

  • CFG: 1.0
  • CFG Rescale: 0.0
  • Steps: 4
  • Sampler: AnyFlowValidationScheduler (FlowMatchEulerDiscreteScheduler)
  • Seed: 42
  • Resolution: 1024x1024

Note: The validation settings are not necessarily the same as the training settings.

You can find some example images in the following gallery:

<Gallery />

The text encoder was not trained. You may reuse the base model text encoder for inference.

Training settings

  • Training epochs: 0
  • Training steps: 1500
  • Learning rate: 2e-06
  • Learning rate schedule: constantwithwarmup
  • Warmup steps: 250
  • Max grad value: 1.0
  • Effective batch size: 16
  • Micro-batch size: 4
  • Gradient accumulation steps: 1
  • Number of GPUs: 4
  • Gradient checkpointing: True
  • Prediction type: flow_matching[]
  • Optimizer: adamw_bf16
  • Trainable parameter precision: Pure BF16
  • Base model precision: no_change
  • Caption dropout probability: 0.1%
  • LoRA Rank: 128
  • LoRA Alpha: 128.0
  • LoRA Dropout: 0.1
  • LoRA initialisation style: default
  • LoRA mode: Standard

Datasets

anima-anyflow-e621-1024

  • Repeats: 0
  • Total number of images: ~285096
  • Total number of aspect buckets: 1
  • Resolution: 1.048576 megapixels
  • Cropped: True
  • Crop style: random
  • Crop aspect: square
  • Used for regularisation data: No

Inference

python
import torch
from diffusers import DiffusionPipeline

model_id = 'circlestone-labs/Anima-Base-v1.0-Diffusers'
adapter_id = 'bghira/anima-anyflow-e621-dmd-wip'
pipeline = DiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.bfloat16) # loading directly in bf16
pipeline.load_lora_weights(adapter_id)

prompt = "masterpiece, best quality, score_7, safe, anime portrait of a young woman with blue hair wearing a white jacket, clean line art, detailed eyes, soft daylight"
negative_prompt = 'worst quality, low quality, score_1, score_2, score_3, blurry, cropped, artist name, signature'

## Optional: quantise the model to save on vram.
## Note: The model was not quantised during training, so it is not necessary to quantise it during inference time.
#from optimum.quanto import quantize, freeze, qint8
#quantize(pipeline.transformer, weights=qint8)
#freeze(pipeline.transformer)
    
pipeline.to('cuda' if torch.cuda.is_available() else 'mps' if torch.backends.mps.is_available() else 'cpu') # the pipeline is already in its target precision level
model_output = pipeline(
    prompt=prompt,
    negative_prompt=negative_prompt,
    num_inference_steps=4,
    generator=torch.Generator(device='cuda' if torch.cuda.is_available() else 'mps' if torch.backends.mps.is_available() else 'cpu').manual_seed(42),
    width=1024,
    height=1024,
    guidance_scale=1.0,
).images[0]

model_output.save("output.png", format="PNG")

Exponential Moving Average (EMA)

SimpleTuner generates a safetensors variant of the EMA weights and a pt file.

The safetensors file is intended to be used for inference, and the pt file is for continuing finetuning.

The EMA model may provide a more well-rounded result, but typically will feel undertrained compared to the full model as it is a running decayed average of the model weights.