HongxinXiang

Results 12 comments of HongxinXiang
trafficstars

Hi, Soo Thank you first for your attention to our papers. In some cases, AUC and accuracy may conflict. This is because the accuracy is calculated based on the default...

Hi, Soo The following figure is the AUC curve I drew based on the provided `df_pro_imagemol_classification.csv` and `df_test.csv.txt`: Given that your sample is unbalanced, there are two approaches to consider:...

Sorry for the late reply. 1. This is an open question and it's hard for me to answer you. In my experience, I would not focus on model accuracy in...

You can try to use the following code to load checkpoint, which supports loading in inconsistent layer names. ` if os.path.isfile(args.resume): checkpoint = torch.load(args.resume) ckp_keys = list(checkpoint['model_state_dict']) cur_keys = list(model.state_dict())...

Please check whether there is a field with the key model_state_dict in your stored .pth.tar? I cannot access the link you provided because you rejected my application.

> You can try to use the following code to load checkpoint, which supports loading in inconsistent layer names. `if os.path.isfile(args.resume): checkpoint = torch.load(args.resume) ckp_keys = list(checkpoint['model_state_dict']) cur_keys = list(model.state_dict())...

1. You can use the methods mentioned above to solve the checkpoint loading problem. 2. The warning may be due to version reasons and I guess it should have no...