shodow
Results
2
comments of
shodow
according to #6 and #5 , i use this code to convert ckpt.t7 to ckpt.bin ``` import os import torch import numpy as np model_path="./ckpt.t7" state_dict = torch.load(model_path)['net_dict'] with open("ckpt.bin",...