代码拉取完成,页面将自动刷新
同步操作将从 低调小萱/智能垃圾桶 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
import torch
from model.model import resnet34
from PIL import Image
from torchvision import transforms
import matplotlib.pyplot as plt
import json
def predict_garbage(img):
device = torch.device("cuda:0" if torch.cuda.is_available() else "cpu")
data_transform = transforms.Compose([transforms.Resize(256),
transforms.CenterCrop(224),
transforms.ToTensor(),
transforms.Normalize([0.485, 0.456, 0.406],
[0.229, 0.224, 0.225])])
# 加载图片
plt.imshow(img)
# 对图片进行预处理
img = data_transform(img)
# 返回一个新的张量,对输入的既定位置插入维度 1
# [N, C, H, W]
img = torch.unsqueeze(img, dim=0)
try:
json_file = open('utils/garbage_sample_classify.json', 'r')
class_indict = json.load(json_file)
except Exception as ex:
print(ex)
exit(-1)
# 创建模型
model = resnet34(num_classes=4)
# 加载权重
model_weight_path = 'model/garbage_classify_model.pth'
model.load_state_dict(torch.load(model_weight_path, map_location=device))
model.eval()
with torch.no_grad():
output = torch.squeeze(model(img))
predict = torch.softmax(output, dim=0)
predict_cla = torch.argmax(predict).numpy()
print(class_indict[str(predict_cla)], predict[predict_cla].numpy())
plt.show()
plt.pause(2) # 间隔的秒数:6s
plt.close()
return int(predict_cla)
if __name__ == '__main__':
img = Image.open("test_image/img_15654.jpg")
garbage_class = predict_garbage(img)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。