I have trained two Faster RCNN models with the exact same parameters with the exception of:
- Model 1: 150 epochs
- Model 2: 5 epochs
Once the models have been trained, I load them in and then I make one prediction on the same image for each model.
Inference prediction time:
- Model 1: 70 sec
- Model 2: 5 sec
To be clear, the time above is AFTER the model has been trained not during training.
Question: How can the inference time increase with the number of epochs?
Libraries:
- tensorvision
- torch