Advertisement
lamiastella

Untitled

Dec 10th, 2018
515
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 29.63 KB | None | 0 0
  1. model_ft.load_state_dict(new_state_dict)
  2. model_ft = model_ft.to(device)
  3. result = m.evaluate_classifier(model_ft, val_dataLoader, num_emotions)
  4. confusion_matrix = result['Confusion-Matrix']
  5. m.plot_confusion_matrix(confusion_matrix, emotions)
  6. plt.savefig(output_path + output_id + '/confusion_matix.png', dpi=200)
  7. logger.info("==>ACC={:.4f}, F1 score={:.4f}, Cohens Kappa={:.4f}, AUC={:.4f}, AUC-PR={:.4f}".format(
  8.         result['ACC'], result['F1s'], result['Kappa'], result['AUC'], result['AUC-PR'] ))
  9. logger.info("==>F1 scores of each class: {}".format(result['F1s-Class']))
  10.  
  11. --------------------------------------
  12.  
  13.  
  14. ---------------------------------------------------------------------------
  15. RuntimeError                              Traceback (most recent call last)
  16. <ipython-input-52-b9504c6e74ff> in <module>()
  17. ----> 1 model_ft.load_state_dict(new_state_dict)
  18.       2 model_ft = model_ft.to(device)
  19.       3 result = m.evaluate_classifier(model_ft, val_dataLoader, num_emotions)
  20.       4 confusion_matrix = result['Confusion-Matrix']
  21.       5 m.plot_confusion_matrix(confusion_matrix, emotions)
  22.  
  23. /scratch/sjn-p3/anaconda/anaconda3/lib/python3.6/site-packages/torch/nn/modules/module.py in load_state_dict(self, state_dict, strict)
  24.     717         if len(error_msgs) > 0:
  25.     718             raise RuntimeError('Error(s) in loading state_dict for {}:\n\t{}'.format(
  26. --> 719                                self.__class__.__name__, "\n\t".join(error_msgs)))
  27.     720
  28.     721     def parameters(self):
  29.  
  30. RuntimeError: Error(s) in loading state_dict for DataParallel:
  31.     Missing key(s) in state_dict: "module.module.module.module.module.module.module.conv1.weight", "module.module.module.module.module.module.module.bn1.weight", "module.module.module.module.module.module.module.bn1.bias", "module.module.module.module.module.module.module.bn1.running_mean", "module.module.module.module.module.module.module.bn1.running_var", "module.module.module.module.module.module.module.layer1.0.conv1.weight", "module.module.module.module.module.module.module.layer1.0.bn1.weight", "module.module.module.module.module.module.module.layer1.0.bn1.bias", "module.module.module.module.module.module.module.layer1.0.bn1.running_mean", "module.module.module.module.module.module.module.layer1.0.bn1.running_var", "module.module.module.module.module.module.module.layer1.0.conv2.weight", "module.module.module.module.module.module.module.layer1.0.bn2.weight", "module.module.module.module.module.module.module.layer1.0.bn2.bias", "module.module.module.module.module.module.module.layer1.0.bn2.running_mean", "module.module.module.module.module.module.module.layer1.0.bn2.running_var", "module.module.module.module.module.module.module.layer1.0.conv3.weight", "module.module.module.module.module.module.module.layer1.0.bn3.weight", "module.module.module.module.module.module.module.layer1.0.bn3.bias", "module.module.module.module.module.module.module.layer1.0.bn3.running_mean", "module.module.module.module.module.module.module.layer1.0.bn3.running_var", "module.module.module.module.module.module.module.layer1.0.downsample.0.weight", "module.module.module.module.module.module.module.layer1.0.downsample.1.weight", "module.module.module.module.module.module.module.layer1.0.downsample.1.bias", "module.module.module.module.module.module.module.layer1.0.downsample.1.running_mean", "module.module.module.module.module.module.module.layer1.0.downsample.1.running_var", "module.module.module.module.module.module.module.layer1.1.conv1.weight", "module.module.module.module.module.module.module.layer1.1.bn1.weight", "module.module.module.module.module.module.module.layer1.1.bn1.bias", "module.module.module.module.module.module.module.layer1.1.bn1.running_mean", "module.module.module.module.module.module.module.layer1.1.bn1.running_var", "module.module.module.module.module.module.module.layer1.1.conv2.weight", "module.module.module.module.module.module.module.layer1.1.bn2.weight", "module.module.module.module.module.module.module.layer1.1.bn2.bias", "module.module.module.module.module.module.module.layer1.1.bn2.running_mean", "module.module.module.module.module.module.module.layer1.1.bn2.running_var", "module.module.module.module.module.module.module.layer1.1.conv3.weight", "module.module.module.module.module.module.module.layer1.1.bn3.weight", "module.module.module.module.module.module.module.layer1.1.bn3.bias", "module.module.module.module.module.module.module.layer1.1.bn3.running_mean", "module.module.module.module.module.module.module.layer1.1.bn3.running_var", "module.module.module.module.module.module.module.layer1.2.conv1.weight", "module.module.module.module.module.module.module.layer1.2.bn1.weight", "module.module.module.module.module.module.module.layer1.2.bn1.bias", "module.module.module.module.module.module.module.layer1.2.bn1.running_mean", "module.module.module.module.module.module.module.layer1.2.bn1.running_var", "module.module.module.module.module.module.module.layer1.2.conv2.weight", "module.module.module.module.module.module.module.layer1.2.bn2.weight", "module.module.module.module.module.module.module.layer1.2.bn2.bias", "module.module.module.module.module.module.module.layer1.2.bn2.running_mean", "module.module.module.module.module.module.module.layer1.2.bn2.running_var", "module.module.module.module.module.module.module.layer1.2.conv3.weight", "module.module.module.module.module.module.module.layer1.2.bn3.weight", "module.module.module.module.module.module.module.layer1.2.bn3.bias", "module.module.module.module.module.module.module.layer1.2.bn3.running_mean", "module.module.module.module.module.module.module.layer1.2.bn3.running_var", "module.module.module.module.module.module.module.layer2.0.conv1.weight", "module.module.module.module.module.module.module.layer2.0.bn1.weight", "module.module.module.module.module.module.module.layer2.0.bn1.bias", "module.module.module.module.module.module.module.layer2.0.bn1.running_mean", "module.module.module.module.module.module.module.layer2.0.bn1.running_var", "module.module.module.module.module.module.module.layer2.0.conv2.weight", "module.module.module.module.module.module.module.layer2.0.bn2.weight", "module.module.module.module.module.module.module.layer2.0.bn2.bias", "module.module.module.module.module.module.module.layer2.0.bn2.running_mean", "module.module.module.module.module.module.module.layer2.0.bn2.running_var", "module.module.module.module.module.module.module.layer2.0.conv3.weight", "module.module.module.module.module.module.module.layer2.0.bn3.weight", "module.module.module.module.module.module.module.layer2.0.bn3.bias", "module.module.module.module.module.module.module.layer2.0.bn3.running_mean", "module.module.module.module.module.module.module.layer2.0.bn3.running_var", "module.module.module.module.module.module.module.layer2.0.downsample.0.weight", "module.module.module.module.module.module.module.layer2.0.downsample.1.weight", "module.module.module.module.module.module.module.layer2.0.downsample.1.bias", "module.module.module.module.module.module.module.layer2.0.downsample.1.running_mean", "module.module.module.module.module.module.module.layer2.0.downsample.1.running_var", "module.module.module.module.module.module.module.layer2.1.conv1.weight", "module.module.module.module.module.module.module.layer2.1.bn1.weight", "module.module.module.module.module.module.module.layer2.1.bn1.bias", "module.module.module.module.module.module.module.layer2.1.bn1.running_mean", "module.module.module.module.module.module.module.layer2.1.bn1.running_var", "module.module.module.module.module.module.module.layer2.1.conv2.weight", "module.module.module.module.module.module.module.layer2.1.bn2.weight", "module.module.module.module.module.module.module.layer2.1.bn2.bias", "module.module.module.module.module.module.module.layer2.1.bn2.running_mean", "module.module.module.module.module.module.module.layer2.1.bn2.running_var", "module.module.module.module.module.module.module.layer2.1.conv3.weight", "module.module.module.module.module.module.module.layer2.1.bn3.weight", "module.module.module.module.module.module.module.layer2.1.bn3.bias", "module.module.module.module.module.module.module.layer2.1.bn3.running_mean", "module.module.module.module.module.module.module.layer2.1.bn3.running_var", "module.module.module.module.module.module.module.layer2.2.conv1.weight", "module.module.module.module.module.module.module.layer2.2.bn1.weight", "module.module.module.module.module.module.module.layer2.2.bn1.bias", "module.module.module.module.module.module.module.layer2.2.bn1.running_mean", "module.module.module.module.module.module.module.layer2.2.bn1.running_var", "module.module.module.module.module.module.module.layer2.2.conv2.weight", "module.module.module.module.module.module.module.layer2.2.bn2.weight", "module.module.module.module.module.module.module.layer2.2.bn2.bias", "module.module.module.module.module.module.module.layer2.2.bn2.running_mean", "module.module.module.module.module.module.module.layer2.2.bn2.running_var", "module.module.module.module.module.module.module.layer2.2.conv3.weight", "module.module.module.module.module.module.module.layer2.2.bn3.weight", "module.module.module.module.module.module.module.layer2.2.bn3.bias", "module.module.module.module.module.module.module.layer2.2.bn3.running_mean", "module.module.module.module.module.module.module.layer2.2.bn3.running_var", "module.module.module.module.module.module.module.layer2.3.conv1.weight", "module.module.module.module.module.module.module.layer2.3.bn1.weight", "module.module.module.module.module.module.module.layer2.3.bn1.bias", "module.module.module.module.module.module.module.layer2.3.bn1.running_mean", "module.module.module.module.module.module.module.layer2.3.bn1.running_var", "module.module.module.module.module.module.module.layer2.3.conv2.weight", "module.module.module.module.module.module.module.layer2.3.bn2.weight", "module.module.module.module.module.module.module.layer2.3.bn2.bias", "module.module.module.module.module.module.module.layer2.3.bn2.running_mean", "module.module.module.module.module.module.module.layer2.3.bn2.running_var", "module.module.module.module.module.module.module.layer2.3.conv3.weight", "module.module.module.module.module.module.module.layer2.3.bn3.weight", "module.module.module.module.module.module.module.layer2.3.bn3.bias", "module.module.module.module.module.module.module.layer2.3.bn3.running_mean", "module.module.module.module.module.module.module.layer2.3.bn3.running_var", "module.module.module.module.module.module.module.layer3.0.conv1.weight", "module.module.module.module.module.module.module.layer3.0.bn1.weight", "module.module.module.module.module.module.module.layer3.0.bn1.bias", "module.module.module.module.module.module.module.layer3.0.bn1.running_mean", "module.module.module.module.module.module.module.layer3.0.bn1.running_var", "module.module.module.module.module.module.module.layer3.0.conv2.weight", "module.module.module.module.module.module.module.layer3.0.bn2.weight", "module.module.module.module.module.module.module.layer3.0.bn2.bias", "module.module.module.module.module.module.module.layer3.0.bn2.running_mean", "module.module.module.module.module.module.module.layer3.0.bn2.running_var", "module.module.module.module.module.module.module.layer3.0.conv3.weight", "module.module.module.module.module.module.module.layer3.0.bn3.weight", "module.module.module.module.module.module.module.layer3.0.bn3.bias", "module.module.module.module.module.module.module.layer3.0.bn3.running_mean", "module.module.module.module.module.module.module.layer3.0.bn3.running_var", "module.module.module.module.module.module.module.layer3.0.downsample.0.weight", "module.module.module.module.module.module.module.layer3.0.downsample.1.weight", "module.module.module.module.module.module.module.layer3.0.downsample.1.bias", "module.module.module.module.module.module.module.layer3.0.downsample.1.running_mean", "module.module.module.module.module.module.module.layer3.0.downsample.1.running_var", "module.module.module.module.module.module.module.layer3.1.conv1.weight", "module.module.module.module.module.module.module.layer3.1.bn1.weight", "module.module.module.module.module.module.module.layer3.1.bn1.bias", "module.module.module.module.module.module.module.layer3.1.bn1.running_mean", "module.module.module.module.module.module.module.layer3.1.bn1.running_var", "module.module.module.module.module.module.module.layer3.1.conv2.weight", "module.module.module.module.module.module.module.layer3.1.bn2.weight", "module.module.module.module.module.module.module.layer3.1.bn2.bias", "module.module.module.module.module.module.module.layer3.1.bn2.running_mean", "module.module.module.module.module.module.module.layer3.1.bn2.running_var", "module.module.module.module.module.module.module.layer3.1.conv3.weight", "module.module.module.module.module.module.module.layer3.1.bn3.weight", "module.module.module.module.module.module.module.layer3.1.bn3.bias", "module.module.module.module.module.module.module.layer3.1.bn3.running_mean", "module.module.module.module.module.module.module.layer3.1.bn3.running_var", "module.module.module.module.module.module.module.layer3.2.conv1.weight", "module.module.module.module.module.module.module.layer3.2.bn1.weight", "module.module.module.module.module.module.module.layer3.2.bn1.bias", "module.module.module.module.module.module.module.layer3.2.bn1.running_mean", "module.module.module.module.module.module.module.layer3.2.bn1.running_var", "module.module.module.module.module.module.module.layer3.2.conv2.weight", "module.module.module.module.module.module.module.layer3.2.bn2.weight", "module.module.module.module.module.module.module.layer3.2.bn2.bias", "module.module.module.module.module.module.module.layer3.2.bn2.running_mean", "module.module.module.module.module.module.module.layer3.2.bn2.running_var", "module.module.module.module.module.module.module.layer3.2.conv3.weight", "module.module.module.module.module.module.module.layer3.2.bn3.weight", "module.module.module.module.module.module.module.layer3.2.bn3.bias", "module.module.module.module.module.module.module.layer3.2.bn3.running_mean", "module.module.module.module.module.module.module.layer3.2.bn3.running_var", "module.module.module.module.module.module.module.layer3.3.conv1.weight", "module.module.module.module.module.module.module.layer3.3.bn1.weight", "module.module.module.module.module.module.module.layer3.3.bn1.bias", "module.module.module.module.module.module.module.layer3.3.bn1.running_mean", "module.module.module.module.module.module.module.layer3.3.bn1.running_var", "module.module.module.module.module.module.module.layer3.3.conv2.weight", "module.module.module.module.module.module.module.layer3.3.bn2.weight", "module.module.module.module.module.module.module.layer3.3.bn2.bias", "module.module.module.module.module.module.module.layer3.3.bn2.running_mean", "module.module.module.module.module.module.module.layer3.3.bn2.running_var", "module.module.module.module.module.module.module.layer3.3.conv3.weight", "module.module.module.module.module.module.module.layer3.3.bn3.weight", "module.module.module.module.module.module.module.layer3.3.bn3.bias", "module.module.module.module.module.module.module.layer3.3.bn3.running_mean", "module.module.module.module.module.module.module.layer3.3.bn3.running_var", "module.module.module.module.module.module.module.layer3.4.conv1.weight", "module.module.module.module.module.module.module.layer3.4.bn1.weight", "module.module.module.module.module.module.module.layer3.4.bn1.bias", "module.module.module.module.module.module.module.layer3.4.bn1.running_mean", "module.module.module.module.module.module.module.layer3.4.bn1.running_var", "module.module.module.module.module.module.module.layer3.4.conv2.weight", "module.module.module.module.module.module.module.layer3.4.bn2.weight", "module.module.module.module.module.module.module.layer3.4.bn2.bias", "module.module.module.module.module.module.module.layer3.4.bn2.running_mean", "module.module.module.module.module.module.module.layer3.4.bn2.running_var", "module.module.module.module.module.module.module.layer3.4.conv3.weight", "module.module.module.module.module.module.module.layer3.4.bn3.weight", "module.module.module.module.module.module.module.layer3.4.bn3.bias", "module.module.module.module.module.module.module.layer3.4.bn3.running_mean", "module.module.module.module.module.module.module.layer3.4.bn3.running_var", "module.module.module.module.module.module.module.layer3.5.conv1.weight", "module.module.module.module.module.module.module.layer3.5.bn1.weight", "module.module.module.module.module.module.module.layer3.5.bn1.bias", "module.module.module.module.module.module.module.layer3.5.bn1.running_mean", "module.module.module.module.module.module.module.layer3.5.bn1.running_var", "module.module.module.module.module.module.module.layer3.5.conv2.weight", "module.module.module.module.module.module.module.layer3.5.bn2.weight", "module.module.module.module.module.module.module.layer3.5.bn2.bias", "module.module.module.module.module.module.module.layer3.5.bn2.running_mean", "module.module.module.module.module.module.module.layer3.5.bn2.running_var", "module.module.module.module.module.module.module.layer3.5.conv3.weight", "module.module.module.module.module.module.module.layer3.5.bn3.weight", "module.module.module.module.module.module.module.layer3.5.bn3.bias", "module.module.module.module.module.module.module.layer3.5.bn3.running_mean", "module.module.module.module.module.module.module.layer3.5.bn3.running_var", "module.module.module.module.module.module.module.layer4.0.conv1.weight", "module.module.module.module.module.module.module.layer4.0.bn1.weight", "module.module.module.module.module.module.module.layer4.0.bn1.bias", "module.module.module.module.module.module.module.layer4.0.bn1.running_mean", "module.module.module.module.module.module.module.layer4.0.bn1.running_var", "module.module.module.module.module.module.module.layer4.0.conv2.weight", "module.module.module.module.module.module.module.layer4.0.bn2.weight", "module.module.module.module.module.module.module.layer4.0.bn2.bias", "module.module.module.module.module.module.module.layer4.0.bn2.running_mean", "module.module.module.module.module.module.module.layer4.0.bn2.running_var", "module.module.module.module.module.module.module.layer4.0.conv3.weight", "module.module.module.module.module.module.module.layer4.0.bn3.weight", "module.module.module.module.module.module.module.layer4.0.bn3.bias", "module.module.module.module.module.module.module.layer4.0.bn3.running_mean", "module.module.module.module.module.module.module.layer4.0.bn3.running_var", "module.module.module.module.module.module.module.layer4.0.downsample.0.weight", "module.module.module.module.module.module.module.layer4.0.downsample.1.weight", "module.module.module.module.module.module.module.layer4.0.downsample.1.bias", "module.module.module.module.module.module.module.layer4.0.downsample.1.running_mean", "module.module.module.module.module.module.module.layer4.0.downsample.1.running_var", "module.module.module.module.module.module.module.layer4.1.conv1.weight", "module.module.module.module.module.module.module.layer4.1.bn1.weight", "module.module.module.module.module.module.module.layer4.1.bn1.bias", "module.module.module.module.module.module.module.layer4.1.bn1.running_mean", "module.module.module.module.module.module.module.layer4.1.bn1.running_var", "module.module.module.module.module.module.module.layer4.1.conv2.weight", "module.module.module.module.module.module.module.layer4.1.bn2.weight", "module.module.module.module.module.module.module.layer4.1.bn2.bias", "module.module.module.module.module.module.module.layer4.1.bn2.running_mean", "module.module.module.module.module.module.module.layer4.1.bn2.running_var", "module.module.module.module.module.module.module.layer4.1.conv3.weight", "module.module.module.module.module.module.module.layer4.1.bn3.weight", "module.module.module.module.module.module.module.layer4.1.bn3.bias", "module.module.module.module.module.module.module.layer4.1.bn3.running_mean", "module.module.module.module.module.module.module.layer4.1.bn3.running_var", "module.module.module.module.module.module.module.layer4.2.conv1.weight", "module.module.module.module.module.module.module.layer4.2.bn1.weight", "module.module.module.module.module.module.module.layer4.2.bn1.bias", "module.module.module.module.module.module.module.layer4.2.bn1.running_mean", "module.module.module.module.module.module.module.layer4.2.bn1.running_var", "module.module.module.module.module.module.module.layer4.2.conv2.weight", "module.module.module.module.module.module.module.layer4.2.bn2.weight", "module.module.module.module.module.module.module.layer4.2.bn2.bias", "module.module.module.module.module.module.module.layer4.2.bn2.running_mean", "module.module.module.module.module.module.module.layer4.2.bn2.running_var", "module.module.module.module.module.module.module.layer4.2.conv3.weight", "module.module.module.module.module.module.module.layer4.2.bn3.weight", "module.module.module.module.module.module.module.layer4.2.bn3.bias", "module.module.module.module.module.module.module.layer4.2.bn3.running_mean", "module.module.module.module.module.module.module.layer4.2.bn3.running_var", "module.module.module.module.module.module.module.fc.weight", "module.module.module.module.module.module.module.fc.bias".
  32.     Unexpected key(s) in state_dict: "conv1.weight", "bn1.weight", "bn1.bias", "bn1.running_mean", "bn1.running_var", "bn1.num_batches_tracked", "layer1.0.conv1.weight", "layer1.0.bn1.weight", "layer1.0.bn1.bias", "layer1.0.bn1.running_mean", "layer1.0.bn1.running_var", "layer1.0.bn1.num_batches_tracked", "layer1.0.conv2.weight", "layer1.0.bn2.weight", "layer1.0.bn2.bias", "layer1.0.bn2.running_mean", "layer1.0.bn2.running_var", "layer1.0.bn2.num_batches_tracked", "layer1.0.conv3.weight", "layer1.0.bn3.weight", "layer1.0.bn3.bias", "layer1.0.bn3.running_mean", "layer1.0.bn3.running_var", "layer1.0.bn3.num_batches_tracked", "layer1.0.downsample.0.weight", "layer1.0.downsample.1.weight", "layer1.0.downsample.1.bias", "layer1.0.downsample.1.running_mean", "layer1.0.downsample.1.running_var", "layer1.0.downsample.1.num_batches_tracked", "layer1.1.conv1.weight", "layer1.1.bn1.weight", "layer1.1.bn1.bias", "layer1.1.bn1.running_mean", "layer1.1.bn1.running_var", "layer1.1.bn1.num_batches_tracked", "layer1.1.conv2.weight", "layer1.1.bn2.weight", "layer1.1.bn2.bias", "layer1.1.bn2.running_mean", "layer1.1.bn2.running_var", "layer1.1.bn2.num_batches_tracked", "layer1.1.conv3.weight", "layer1.1.bn3.weight", "layer1.1.bn3.bias", "layer1.1.bn3.running_mean", "layer1.1.bn3.running_var", "layer1.1.bn3.num_batches_tracked", "layer1.2.conv1.weight", "layer1.2.bn1.weight", "layer1.2.bn1.bias", "layer1.2.bn1.running_mean", "layer1.2.bn1.running_var", "layer1.2.bn1.num_batches_tracked", "layer1.2.conv2.weight", "layer1.2.bn2.weight", "layer1.2.bn2.bias", "layer1.2.bn2.running_mean", "layer1.2.bn2.running_var", "layer1.2.bn2.num_batches_tracked", "layer1.2.conv3.weight", "layer1.2.bn3.weight", "layer1.2.bn3.bias", "layer1.2.bn3.running_mean", "layer1.2.bn3.running_var", "layer1.2.bn3.num_batches_tracked", "layer2.0.conv1.weight", "layer2.0.bn1.weight", "layer2.0.bn1.bias", "layer2.0.bn1.running_mean", "layer2.0.bn1.running_var", "layer2.0.bn1.num_batches_tracked", "layer2.0.conv2.weight", "layer2.0.bn2.weight", "layer2.0.bn2.bias", "layer2.0.bn2.running_mean", "layer2.0.bn2.running_var", "layer2.0.bn2.num_batches_tracked", "layer2.0.conv3.weight", "layer2.0.bn3.weight", "layer2.0.bn3.bias", "layer2.0.bn3.running_mean", "layer2.0.bn3.running_var", "layer2.0.bn3.num_batches_tracked", "layer2.0.downsample.0.weight", "layer2.0.downsample.1.weight", "layer2.0.downsample.1.bias", "layer2.0.downsample.1.running_mean", "layer2.0.downsample.1.running_var", "layer2.0.downsample.1.num_batches_tracked", "layer2.1.conv1.weight", "layer2.1.bn1.weight", "layer2.1.bn1.bias", "layer2.1.bn1.running_mean", "layer2.1.bn1.running_var", "layer2.1.bn1.num_batches_tracked", "layer2.1.conv2.weight", "layer2.1.bn2.weight", "layer2.1.bn2.bias", "layer2.1.bn2.running_mean", "layer2.1.bn2.running_var", "layer2.1.bn2.num_batches_tracked", "layer2.1.conv3.weight", "layer2.1.bn3.weight", "layer2.1.bn3.bias", "layer2.1.bn3.running_mean", "layer2.1.bn3.running_var", "layer2.1.bn3.num_batches_tracked", "layer2.2.conv1.weight", "layer2.2.bn1.weight", "layer2.2.bn1.bias", "layer2.2.bn1.running_mean", "layer2.2.bn1.running_var", "layer2.2.bn1.num_batches_tracked", "layer2.2.conv2.weight", "layer2.2.bn2.weight", "layer2.2.bn2.bias", "layer2.2.bn2.running_mean", "layer2.2.bn2.running_var", "layer2.2.bn2.num_batches_tracked", "layer2.2.conv3.weight", "layer2.2.bn3.weight", "layer2.2.bn3.bias", "layer2.2.bn3.running_mean", "layer2.2.bn3.running_var", "layer2.2.bn3.num_batches_tracked", "layer2.3.conv1.weight", "layer2.3.bn1.weight", "layer2.3.bn1.bias", "layer2.3.bn1.running_mean", "layer2.3.bn1.running_var", "layer2.3.bn1.num_batches_tracked", "layer2.3.conv2.weight", "layer2.3.bn2.weight", "layer2.3.bn2.bias", "layer2.3.bn2.running_mean", "layer2.3.bn2.running_var", "layer2.3.bn2.num_batches_tracked", "layer2.3.conv3.weight", "layer2.3.bn3.weight", "layer2.3.bn3.bias", "layer2.3.bn3.running_mean", "layer2.3.bn3.running_var", "layer2.3.bn3.num_batches_tracked", "layer3.0.conv1.weight", "layer3.0.bn1.weight", "layer3.0.bn1.bias", "layer3.0.bn1.running_mean", "layer3.0.bn1.running_var", "layer3.0.bn1.num_batches_tracked", "layer3.0.conv2.weight", "layer3.0.bn2.weight", "layer3.0.bn2.bias", "layer3.0.bn2.running_mean", "layer3.0.bn2.running_var", "layer3.0.bn2.num_batches_tracked", "layer3.0.conv3.weight", "layer3.0.bn3.weight", "layer3.0.bn3.bias", "layer3.0.bn3.running_mean", "layer3.0.bn3.running_var", "layer3.0.bn3.num_batches_tracked", "layer3.0.downsample.0.weight", "layer3.0.downsample.1.weight", "layer3.0.downsample.1.bias", "layer3.0.downsample.1.running_mean", "layer3.0.downsample.1.running_var", "layer3.0.downsample.1.num_batches_tracked", "layer3.1.conv1.weight", "layer3.1.bn1.weight", "layer3.1.bn1.bias", "layer3.1.bn1.running_mean", "layer3.1.bn1.running_var", "layer3.1.bn1.num_batches_tracked", "layer3.1.conv2.weight", "layer3.1.bn2.weight", "layer3.1.bn2.bias", "layer3.1.bn2.running_mean", "layer3.1.bn2.running_var", "layer3.1.bn2.num_batches_tracked", "layer3.1.conv3.weight", "layer3.1.bn3.weight", "layer3.1.bn3.bias", "layer3.1.bn3.running_mean", "layer3.1.bn3.running_var", "layer3.1.bn3.num_batches_tracked", "layer3.2.conv1.weight", "layer3.2.bn1.weight", "layer3.2.bn1.bias", "layer3.2.bn1.running_mean", "layer3.2.bn1.running_var", "layer3.2.bn1.num_batches_tracked", "layer3.2.conv2.weight", "layer3.2.bn2.weight", "layer3.2.bn2.bias", "layer3.2.bn2.running_mean", "layer3.2.bn2.running_var", "layer3.2.bn2.num_batches_tracked", "layer3.2.conv3.weight", "layer3.2.bn3.weight", "layer3.2.bn3.bias", "layer3.2.bn3.running_mean", "layer3.2.bn3.running_var", "layer3.2.bn3.num_batches_tracked", "layer3.3.conv1.weight", "layer3.3.bn1.weight", "layer3.3.bn1.bias", "layer3.3.bn1.running_mean", "layer3.3.bn1.running_var", "layer3.3.bn1.num_batches_tracked", "layer3.3.conv2.weight", "layer3.3.bn2.weight", "layer3.3.bn2.bias", "layer3.3.bn2.running_mean", "layer3.3.bn2.running_var", "layer3.3.bn2.num_batches_tracked", "layer3.3.conv3.weight", "layer3.3.bn3.weight", "layer3.3.bn3.bias", "layer3.3.bn3.running_mean", "layer3.3.bn3.running_var", "layer3.3.bn3.num_batches_tracked", "layer3.4.conv1.weight", "layer3.4.bn1.weight", "layer3.4.bn1.bias", "layer3.4.bn1.running_mean", "layer3.4.bn1.running_var", "layer3.4.bn1.num_batches_tracked", "layer3.4.conv2.weight", "layer3.4.bn2.weight", "layer3.4.bn2.bias", "layer3.4.bn2.running_mean", "layer3.4.bn2.running_var", "layer3.4.bn2.num_batches_tracked", "layer3.4.conv3.weight", "layer3.4.bn3.weight", "layer3.4.bn3.bias", "layer3.4.bn3.running_mean", "layer3.4.bn3.running_var", "layer3.4.bn3.num_batches_tracked", "layer3.5.conv1.weight", "layer3.5.bn1.weight", "layer3.5.bn1.bias", "layer3.5.bn1.running_mean", "layer3.5.bn1.running_var", "layer3.5.bn1.num_batches_tracked", "layer3.5.conv2.weight", "layer3.5.bn2.weight", "layer3.5.bn2.bias", "layer3.5.bn2.running_mean", "layer3.5.bn2.running_var", "layer3.5.bn2.num_batches_tracked", "layer3.5.conv3.weight", "layer3.5.bn3.weight", "layer3.5.bn3.bias", "layer3.5.bn3.running_mean", "layer3.5.bn3.running_var", "layer3.5.bn3.num_batches_tracked", "layer4.0.conv1.weight", "layer4.0.bn1.weight", "layer4.0.bn1.bias", "layer4.0.bn1.running_mean", "layer4.0.bn1.running_var", "layer4.0.bn1.num_batches_tracked", "layer4.0.conv2.weight", "layer4.0.bn2.weight", "layer4.0.bn2.bias", "layer4.0.bn2.running_mean", "layer4.0.bn2.running_var", "layer4.0.bn2.num_batches_tracked", "layer4.0.conv3.weight", "layer4.0.bn3.weight", "layer4.0.bn3.bias", "layer4.0.bn3.running_mean", "layer4.0.bn3.running_var", "layer4.0.bn3.num_batches_tracked", "layer4.0.downsample.0.weight", "layer4.0.downsample.1.weight", "layer4.0.downsample.1.bias", "layer4.0.downsample.1.running_mean", "layer4.0.downsample.1.running_var", "layer4.0.downsample.1.num_batches_tracked", "layer4.1.conv1.weight", "layer4.1.bn1.weight", "layer4.1.bn1.bias", "layer4.1.bn1.running_mean", "layer4.1.bn1.running_var", "layer4.1.bn1.num_batches_tracked", "layer4.1.conv2.weight", "layer4.1.bn2.weight", "layer4.1.bn2.bias", "layer4.1.bn2.running_mean", "layer4.1.bn2.running_var", "layer4.1.bn2.num_batches_tracked", "layer4.1.conv3.weight", "layer4.1.bn3.weight", "layer4.1.bn3.bias", "layer4.1.bn3.running_mean", "layer4.1.bn3.running_var", "layer4.1.bn3.num_batches_tracked", "layer4.2.conv1.weight", "layer4.2.bn1.weight", "layer4.2.bn1.bias", "layer4.2.bn1.running_mean", "layer4.2.bn1.running_var", "layer4.2.bn1.num_batches_tracked", "layer4.2.conv2.weight", "layer4.2.bn2.weight", "layer4.2.bn2.bias", "layer4.2.bn2.running_mean", "layer4.2.bn2.running_var", "layer4.2.bn2.num_batches_tracked", "layer4.2.conv3.weight", "layer4.2.bn3.weight", "layer4.2.bn3.bias", "layer4.2.bn3.running_mean", "layer4.2.bn3.running_var", "layer4.2.bn3.num_batches_tracked", "fc.weight", "fc.bias".
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement