pytorch-classification icon indicating copy to clipboard operation
pytorch-classification copied to clipboard

Classification with PyTorch.

Results 34 pytorch-classification issues
Sort by recently updated
recently updated
newest added
trafficstars

![8ed87865718db632e4eff3e03069085](https://user-images.githubusercontent.com/59427046/180355935-27e47754-7424-447d-bf36-38af1129b826.png)

When I download the pre_trained model and resume it. there is an error. model.load_state_dict(checkpoint['state_dict']) It seems that the name are not matched.(e.g. "module.features.0.weight" v.s. "features.module.0.weight") How could I solve it...

When I try resuming from the pretrained model weight I get an error This is what I am running: `python cifar.py -a preresnet --depth 110 --epochs 3 --schedule 81 122...

changed view to reshape in line 16 to handle non contiguous tensors.

We use your checkpoints but I derive the best results at step 1. Is It the best model parameters or the pretrained models. I'm not sure about it and hope...

The ResNeXt-29 (16x64) trained model on CIFAR10 in OneDrive seems to be inconsistent with the result listed in the table. Will it be possible to upload the correct version? ![Screenshot...

I am on a tight deadline. Could you tell me about how long ImageNet takes to train?

I have modified the imagenet.py by adding the lines after the "create model" codes: num_ftrs = model.fc.in_features model.fc = nn.Linear(num_ftrs,200) changing the net to train on tiny imagenet. But it...