USTC-Video-Understanding / I3D_Finetune

TensorFlow code for finetuning I3D model on UCF101.
144 stars 43 forks source link

67.56 accuracy test ucf101 mixed 1 #35

Open Thoudancer opened 5 years ago

Thoudancer commented 5 years ago

Hello, sorry to disturb you~ here are some questions when running the projects: 1) When I run the test.py on ucf101 mixed 1, i got only 0.6756 accuracy while rgb model is 0.89, and flow model is 0.95.

2) Also I found that test.py #196, "input_label=np.array([label]).reshape(-1)", the input_label sometimes is not matched to the video when testing, e.g. v_ApplyEyeMakeup_g07_c07, prediction and video name are 'ApplyEyeMakeup', but input_label changed to ApplyLipstick's index. so I change the code video_label = rgb_data.Videos[i].label video_label = flow_data.Videos[i].label input_label=np.array([video_label]).reshape(-1)

but the accuracy is not improved.

Sun-mz commented 3 years ago

Have you solved it? I have the same problem. Thanks