
CVPR2023: Cluster Non Apprendibili: Verso Esempi Non Apprendibili Indipendenti dall'Etichetta
Codice relativo a "Cluster Non Apprendibili: Verso Esempi Non Apprendibili Indipendenti dall'Etichetta", CVPR2023.
Innanzitutto, esegui preprocess.py per rinominare la directory del dataset
python preprocess.py --config config/preprocess.yaml -f rename
In secondo luogo, esegui preprocess.py per condurre l'inizializzazione K-means.
python preprocess.py --config config/preprocess.yaml -f cluster_pets_rn50_cluster10
# the cluster file will be stored in {output_dir}/{dataset}_{surrogate_model}_cluster{num_clusters}.pth
# e.g., output/cluster/pets_rn50_cluster10.pth
Terzo, esegui main.py --stage 1 per generare perturbazioni a livello di cluster.
python main.py --config config/stage_1.yaml -e {experiment} --stage 1
# {experiment} is uc_{dataset}_{surrogate_model}
# e.g., python main.py --config config/stage_1.yaml -e uc_pets_cliprn50 --stage 1
Infine, esegui main.py --stage 2 per addestrare i modelli target.
python main.py --config config/stage_2.yaml -e {experiment} --stage 2
# {experiment} is uc_{dataset}_{surrogate_model}_{target_model}
# e.g., python main.py --config config/stage_2.yaml -e uc_pets_rn50_rn18 --stage 2
Se trovi questo codice utile per la tua ricerca, considera di citarlo.
@inproceedings{zhang2023unlearnable,
title={Unlearnable Clusters: Towards Label-agnostic Unlearnable Examples},
author={Jiaming Zhang, Xingjun Ma, Qi Yi, Jitao Sang, Yu-Gang Jiang, Yaowei Wang, Changsheng Xu},
booktitle="Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition",
year={2023}
}