FADE UnlearnCanvas -- Scissorhands (SHS) unlearned checkpoints
Stable Diffusion checkpoints after applying Scissorhands (SHS) (SHS reference implementation) to unlearn a single artistic style from the UnlearnCanvas full (50-style) checkpoint. One checkpoint per forgotten style.
Files
| File | Description |
|---|---|
shs_monet.safetensors |
Monet forgotten |
shs_picasso.safetensors |
Picasso forgotten |
shs_van_gogh.safetensors |
Van Gogh forgotten |
Evaluation
These checkpoints were evaluated with FADE against the retain-only oracle checkpoints
(see sungjuncho/fade-unlearncanvas-retain-seed{0,1,2}) and with UnlearnCanvas's own
accuracy/FID metrics. See the project repo for numbers and evaluation scripts.
About FADE
FADE (Functional Alignment for Distributional Equivalence) is a metric for evaluating machine unlearning in diffusion models: it generates images from an unlearned model and a retain-only oracle, then measures a variational upper bound on the KL divergence between the two models' output distributions on those images. See the project repo for the full method and evaluation code: the project's public GitHub repo (link forthcoming)
This checkpoint is a fine-tune of Stable Diffusion v1.5, built on the UnlearnCanvas dataset/benchmark (Zhang et al., 2024). It inherits Stable Diffusion's CreativeML OpenRAIL-M license -- see the license file for the specific use-based restrictions that apply.
Citation
@article{cho2025referencespecific,
title={Reference-Specific Unlearning Metrics Can Hide the Truth: A Reality Check},
author={Cho, Sungjun and Hwang, Dasol and Sala, Frederic and Hwang, Sangheum and Cho, Kyunghyun and Cha, Sungmin},
journal={arXiv preprint arXiv:2510.12981},
year={2025}
}
Loading
import torch
from safetensors.torch import load_file
state_dict = load_file("<downloaded_file>.safetensors")
# merge into a CompVis-format LDM model, e.g. via UnlearnCanvas's
# ldm.util.instantiate_from_config, then:
# model.load_state_dict(state_dict, strict=False)
Model tree for sungjuncho/fade-unlearncanvas-unlearned-shs
Base model
runwayml/stable-diffusion-v1-5