Open molstmare opened 5 years ago
How can i test with the model obtained if i give him a video and see if is fight or not fight ?
video = get_transfer_values('data', 'videoplayback_no.avi') video = video.reshape((1, video.shape[0], video.shape[1])) label = np.argmax(model.predict(video))
you can test the model like this. But this's a classification model, not a detection
How can i test with the model obtained if i give him a video and see if is fight or not fight ?