Hi,
Thanks for sharing your source code! I clone this repository and run the experiment of cifar10 with digit 6 as the known class samples by the following command:
python main.py \
cifar10 \
cifar10_LeNet \
../log/cifar10_test \
../data \
--objective one-class \
--lr 0.0001 \
--n_epochs 150 \
--lr_milestone 50 \
--batch_size 200 \
--weight_decay 0.5e-6 \
--pretrain True \
--ae_lr 0.0001 \
--ae_n_epochs 350 \
--ae_lr_milestone 250 \
--ae_batch_size 200 \
--ae_weight_decay 0.5e-6 \
--normal_class 7
However, the result is:
INFO:root:Training time: 183.387
INFO:root:Finished training.
INFO:root:Starting testing...
INFO:root:Testing time: 1.911
INFO:root:Test set AUC: 60.59%
INFO:root:Finished testing.
Could you please help me with this?
Hi,
Thanks for sharing your source code! I clone this repository and run the experiment of cifar10 with digit 6 as the known class samples by the following command:
python main.py \ cifar10 \ cifar10_LeNet \ ../log/cifar10_test \ ../data \ --objective one-class \ --lr 0.0001 \ --n_epochs 150 \ --lr_milestone 50 \ --batch_size 200 \ --weight_decay 0.5e-6 \ --pretrain True \ --ae_lr 0.0001 \ --ae_n_epochs 350 \ --ae_lr_milestone 250 \ --ae_batch_size 200 \ --ae_weight_decay 0.5e-6 \ --normal_class 7However, the result is:
INFO:root:Training time: 183.387 INFO:root:Finished training. INFO:root:Starting testing... INFO:root:Testing time: 1.911 INFO:root:Test set AUC: 60.59% INFO:root:Finished testing.Could you please help me with this?