-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathinference.py
31 lines (26 loc) · 921 Bytes
/
inference.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import cv2
import time
import torch
import argparse
import numpy as np
from backbones import get_model
@torch.no_grad()
def inference(weight, name):
img = cv2.imread("image.jpg")
img = cv2.resize(img, (112, 112))
img = cv2.cvtColor(img, cv2.COLOR_BGR2RGB)
img = np.transpose(img, (2, 0, 1))
img = torch.from_numpy(img).unsqueeze(0).float()
img.div_(255).sub_(0.5).div_(0.5)
net = get_model(name, fp16=False)
net.load_state_dict(torch.load(weight))
net.eval()
encoding = net(img).numpy()
print(f'Done.')
if __name__ == "__main__":
parser = argparse.ArgumentParser(description='PyTorch ArcFace')
parser.add_argument('--network', type=str, default='r50', help='backbone network')
parser.add_argument('--weight', type=str, default='')
parser.add_argument('--img', type=str, default=None)
args = parser.parse_args()
inference(args.weight, args.network)