How to know the version of the pre-trained model?

I’m currently implementing an image classification project for identifying the kind of shoes one wears. I’m using pre-trained models such as resnets and convNext .
How should I specify them in the requirements.txt file?

Hello,

The desired architecture should be specified in the code or passed as a command-line argument. A requirements file lists the dependencies of your project, e.g., fastai and PyTorch, and is not related to the network you’d like to use.

3 Likes

Well, that makes sense thanks for letting me know . I thought I need to be adding a requirements file to the github repo

1 Like