muyuxuan100

Results 5 comments of muyuxuan100

> @zhouwei342622 > you can follow three steps: > > 1. Change the code 'model.train()' to 'model.test()' in the train.py > 2. Set self.opt.save_test_images='store_true' in the model.py file. > 3....

I don't see the test.py file in the folder. Do I need to write a test.py file to test the mnist and cifar10 data set? Or what parameters can I...

> > I don't see the test.py file in the folder. Do I need to write a test.py file to test the mnist and cifar10 data set? Or what parameters...

def roc(labels, scores, saveto=None): """Compute ROC curve and ROC area for each class""" fpr = dict() tpr = dict() roc_auc = dict() labels = labels.cpu() scores = scores.cpu() # True/False...

Thank you!! ------------------ 原始邮件 ------------------ 发件人: "jaxfang"