import os
import argparse
import torch
import torchvision
from torchvision import datasets, transforms
import models.resnet_0_6_0 as resnet_0_6_0
from collections import OrderedDict
def proc_node_module(checkpoint, attr_name):
new_state_dict = OrderedDict()
for k, v in checkpoint[attr_name].items():
if(k[0: 7] == "module."):
name = k[7:]
else:
name = k[0:]
new_state_dict[name] = v
return new_state_dict
def get_raw_data():
from PIL import Image
from urllib.request import urlretrieve
cur_path = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(cur_path, 'url.ini'), 'r') as f:
content = f.read()
img_url = content.split('img_url=')[1].split('\n')[0]
IMAGE_URL = img_url
urlretrieve(IMAGE_URL, 'tmp.jpg')
img = Image.open("tmp.jpg")
img = img.convert('RGB')
return img
def test():
loc = 'npu:0'
loc_cpu = 'cpu'
torch.npu.set_device(loc)
checkpoint = torch.load("./checkpoint.pth.tar", map_location=loc)
checkpoint['state_dict'] = proc_node_module(checkpoint, 'state_dict')
model = resnet_0_6_0.resnet152()
model = model.to(loc)
model.load_state_dict(checkpoint['state_dict'])
model.eval()
normalize = transforms.Normalize(mean=[0.485, 0.456, 0.406],
std=[0.229, 0.224, 0.225])
rd = get_raw_data()
data_transfrom = transforms.Compose([
transforms.Resize(256),
transforms.CenterCrop(224),
transforms.ToTensor(),
normalize])
inputs = data_transfrom(rd)
inputs = inputs.unsqueeze(0)
inputs = inputs.to(loc)
output = model(inputs)
output = output.to(loc_cpu)
_, pred = output.topk(1, 1, True, True)
result = torch.argmax(output, 1)
print("class: ", pred[0][0].item())
print(result)
if __name__ == "__main__":
test()