-
Notifications
You must be signed in to change notification settings - Fork 244
New issue
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
Add ToqiNet Model to PyTorch Hub #345
Conversation
✅ Deploy Preview for pytorch-hub-preview ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
Approve and run |
Hi @tahmeedtoqi and thank you for the PR Unfortunately it looks like this model is largely a toy model at this point (ref):
which means that it wouldn't be in scope to be featured on the torchhub website. As a result I'll be closing this PR, sorry. |
Dear PyTorch Hub maintainers,
I am submitting this pull request to add the ToqiNet model to PyTorch Hub. ToqiNet is an advanced deep learning model for image classification tasks, offering exceptional accuracy and efficiency.
Changes:
Added hubconf.py file to the repository to define the entry point for PyTorch Hub.
Implemented a Python function in hubconf.py to load the ToqiNet model.
Provided necessary dependencies in hubconf.py.
Verified the functionality of hubconf.py locally by loading the model using torch.hub.load('username/repo', 'toqinet', pretrained=True).
Notes:
The model is loaded manually from the local directory using model = toqinet(pretrained=False) instead of torch.hub.load. This approach ensures compatibility with the existing structure of the model and repository.
No pretrained weights are included in this submission. Users can train the model from scratch using the provided implementation.
The model architecture and implementation details can be found in the repository's README.md file.
Please review and merge this pull request. Thank you for considering the addition of ToqiNet to PyTorch Hub.
here is my main Repository: https://github.com/tahmeedtoqi/ToqiNet---v1.1.1.git
Best regards,
Tahmeed Al Toqi