Views
No views yet
| File | Description |
|---|---|
ediff_monet.safetensors | Monet forgotten |
ediff_picasso.safetensors | Picasso forgotten |
ediff_van_gogh.safetensors | Van Gogh forgotten |
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.@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}
}1import torch
2from safetensors.torch import load_file
3
4state_dict = load_file("<downloaded_file>.safetensors")
5# merge into a CompVis-format LDM model, e.g. via UnlearnCanvas's
6# ldm.util.instantiate_from_config, then:
7# model.load_state_dict(state_dict, strict=False)