We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, thanks for sharing the project codebase! 😊
I'm having issues reproducing any sort of results on Kinetics using your pretrained models.
So far, I have:
utils/kinetics_json.py
run-kinetics.sh
python main.py --root_path '' \ --video_path ~/datasets/Kinetics \ --annotation_path Efficient-3DCNNs/annotation_Kinetics/kinetics.json \ --result_path Efficient-3DCNNs/results \ --resume_path Efficient-3DCNNs/results/kinetics_mobilenetv2_0.45x_RGB_16_best.pth \ --dataset kinetics \ --sample_size 112 \ --n_classes 600 \ --model mobilenetv2 \ --version 1.1 \ --groups 3 \ --width_mult 0.45 \ --train_crop random \ --learning_rate 0.1 \ --sample_duration 16 \ --batch_size 16 \ --n_threads 16 \ --checkpoint 1 \ --n_val_samples 1 \ --no_train \ --no_val \ --test
python utils/video_accuracy.py
kinetics_shufflenet_1.0x_G3_RGB_16_best.pth
--model shufflenet
width_mult 1.0
python test_models.py
correct_k = correct[:k].float().sum().item()
temporal_transform = TemporalCenterCrop(opt.sample_duration, opt.downsample)
assert opt.model == checkpoint['arch']
--std_norm
--norm_value 255
--no_mean_norm
However, all I get are random predictions (~0.001 acc).
Do you have a working example for the pretrained Kinetics models, you could share?
Thanks in advance 😊
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, thanks for sharing the project codebase! 😊
I'm having issues reproducing any sort of results on Kinetics using your pretrained models.
So far, I have:
utils/kinetics_json.py
run-kinetics.sh
:python utils/video_accuracy.py
kinetics_shufflenet_1.0x_G3_RGB_16_best.pth
with--model shufflenet
andwidth_mult 1.0
)python test_models.py
correct_k = correct[:k].float().sum().item()
,temporal_transform = TemporalCenterCrop(opt.sample_duration, opt.downsample)
assert opt.model == checkpoint['arch']
--std_norm
,--norm_value 255
, and--no_mean_norm
.However, all I get are random predictions (~0.001 acc).
Do you have a working example for the pretrained Kinetics models, you could share?
Thanks in advance 😊
The text was updated successfully, but these errors were encountered: