How do I load a fine tuned model?

I did the IMDB BERT distil fine tuning from this tutorial on the docs, Fine-tuning with custom datasets — transformers 4.5.0.dev0 documentation (huggingface.co). I used the transformers module TFTrainer. After the training, I saved the model with both, .save and .save_pretrained(). The saved model was generated and saved to disk. Now, I want to use that model for inference. How do I do that?