driver_attention_prediction
driver_attention_prediction copied to clipboard
Question regarding testing docs
The guidelines for testing a model first tell to follow the steps 1-6 of the training process with updated folder names and finally run the predict.py with the finetuned model.
We did this for our finetuned model and it produced valid results. One thing we stumbled over is in step 5 of the training process. The inference model is used here with
python make_feature_maps.py \
--data_dir=data/testing \
--model_dir=pretrained_models/model_for_inference
Is this the correct usage or shouldn't we use our finetuned model also for this step? I already gave it a try but this results in a similar error as in #7.