sathiez
Results
1
comments of
sathiez
Hi, How to feed input to classifier in `online_test.py` using tensor.float . I tried , `frame= np.reshape(frame,(1,1,1,512,512)) frame=cv2.normalize(frame,None,alpha=0,beta=1,norm_type=cv2.NORM_MINMAX,dtype=cv2.CV_32F)` `input_clf = torch.from_numpy(frame).float()` `outputs_det = classifier(inputs_clf)` I get the following error, `RuntimeError:...