-
Notifications
You must be signed in to change notification settings - Fork 1
/
demo_feat.py
162 lines (133 loc) · 5.78 KB
/
demo_feat.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
import torch
from modules.network import get_network
from modules.CONTRIQUE_model import CONTRIQUE_model
from modules.GRUModel import GRUModel
from torchvision import transforms
import numpy as np
import os
import argparse
import pickle
import skvideo.io
from PIL import Image
os.environ['CUDA_VISIBLE_DEVICES'] = '0'
class torch_transform:
def __init__(self, size):
self.transform1 = transforms.Compose(
[
transforms.Resize((size[0],size[1])),
transforms.ToTensor(),
]
)
self.transform2 = transforms.Compose(
[
transforms.Resize((size[0] // 2, size[1] // 2)),
transforms.ToTensor(),
]
)
def __call__(self, x):
return self.transform1(x), self.transform2(x)
def create_data_loader(image, image_2, batch_size):
train = torch.utils.data.TensorDataset(image, image_2)
loader = torch.utils.data.DataLoader(
train,
batch_size=batch_size,
drop_last=True,
num_workers=12,
sampler=None,
shuffle=False
)
return loader
def extract_features(args, model, loader):
feat = []
model.eval()
for step, (batch_im, batch_im_2) in enumerate(loader):
batch_im = batch_im.type(torch.float32)
batch_im_2 = batch_im_2.type(torch.float32)
batch_im = batch_im.cuda(non_blocking=True)
batch_im_2 = batch_im_2.cuda(non_blocking=True)
with torch.no_grad():
_,_, _, _, model_feat, model_feat_2, _, _ = model(batch_im, batch_im_2)
feat_ = np.hstack((model_feat.detach().cpu().numpy(),\
model_feat_2.detach().cpu().numpy()))
feat.extend(feat_)
return np.array(feat)
def extract_features_temporal(args, model, loader):
feat = []
model.eval()
for step, (batch_im, batch_im_2) in enumerate(loader):
batch_im = batch_im.type(torch.float32)
batch_im_2 = batch_im_2.type(torch.float32)
batch_im = batch_im.cuda(non_blocking=True).unsqueeze(0)
batch_im_2 = batch_im_2.cuda(non_blocking=True).unsqueeze(0)
with torch.no_grad():
_, _, model_feat, model_feat_2 = model(batch_im, batch_im_2)
feat_ = np.hstack((model_feat.detach().cpu().numpy(),\
model_feat_2.detach().cpu().numpy()))
feat.extend(feat_)
return np.array(feat)
def main(args):
# load video
video = skvideo.io.FFmpegReader(args.video_path)
T, height, width, C = video.getShape()
#define torch transform for 2 spatial scales
transform = torch_transform((height, width))
#define arrays to store frames
frames = torch.zeros((T,3,height,width), dtype=torch.float16)
frames_2 = torch.zeros((T,3,height// 2,width// 2), dtype=torch.float16)
# read every video frame
for frame_ind in range(T):
inp_frame = Image.fromarray(next(video))
inp_frame, inp_frame_2 = transform(inp_frame)
frames[frame_ind],frames_2[frame_ind] = \
inp_frame.type(torch.float16), inp_frame_2.type(torch.float16)
# convert to torch tensors
loader = create_data_loader(frames, frames_2, args.num_frames)
# load CONTRIQUE Model
encoder = get_network('resnet50', pretrained=False)
model = CONTRIQUE_model(args, encoder, 2048)
model.load_state_dict(torch.load(args.spatial_model_path, map_location=args.device.type))
model = model.to(args.device)
# extract CONTRIQUE features
video_feat = extract_features(args, model, loader)
#load CONVIQT model
temporal_model = GRUModel(c_in = 2048, hidden_size = 1024, \
projection_dim = 128, normalize = True,\
num_layers = 1)
temporal_model.load_state_dict(torch.load(args.temporal_model_path, \
map_location=args.device.type))
temporal_model = temporal_model.to(args.device)
#extract CONVIQT features
feat_frames = torch.from_numpy(video_feat[:,:2048])
feat_frames_2 = torch.from_numpy(video_feat[:,2048:])
loader = create_data_loader(feat_frames, feat_frames_2, \
args.num_frames)
video_feat = extract_features_temporal(args, temporal_model, loader)
# save features
np.save(args.feature_save_path, video_feat)
print('Done')
def parse_args():
parser = argparse.ArgumentParser()
parser.add_argument('--video_path', type=str, \
default='sample_videos/30.mp4', \
help='Path to video', metavar='')
parser.add_argument('--spatial_model_path', type=str, \
default='models/CONTRIQUE_checkpoint25.tar', \
help='Path to trained CONTRIQUE model', metavar='')
parser.add_argument('--temporal_model_path', type=str, \
default='models/CONVIQT_checkpoint10.tar', \
help='Path to trained CONVIQT model', metavar='')
parser.add_argument('--linear_regressor_path', type=str, \
default='models/YouTube_UGC.save', \
help='Path to trained linear regressor', metavar='')
parser.add_argument('--num_frames', type=int, \
default=16, \
help='number of frames fed to GRU', metavar='')
parser.add_argument('--feature_save_path', type=str, \
default='CONVIQT_feat.npy', \
help='path to save features', metavar='')
args = parser.parse_args()
args.device = torch.device("cuda:0" if torch.cuda.is_available() else "cpu")
return args
if __name__ == '__main__':
args = parse_args()
main(args)