We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Feature request: Add HRNet-Semantic-Segmentation models to the Pytorch-hub
This will be a step prior to adding HRNet to the common Pytorch models: pytorch/vision#987
The simplest way is to add hubconf.py file to GitHub repository, like: https://github.com/WongKinYiu/PyTorch_YOLOv4/blob/u5_preview/hubconf.py So we will be able to use HRNet models by using just command like: https://pytorch.org/docs/stable/hub.html#torch.hub.help
hubconf.py
model= torch.hub.load('WongKinYiu/PyTorch_YOLOv4:u5_preview', 'yolov4_pacsp_s', pretrained=True) output = model(img) # output is length 3 list for layer in output: print(layer.shape)
The text was updated successfully, but these errors were encountered:
@AlexeyAB Thanks for informing us of adding our models to the Pytorch-hub and the Pytorch/vision repo.
We will follow the mentioned example and add a hubconf.py soon.
Sorry, something went wrong.
This would certainly be a useful feature to compare HRNet to different architectures is there a PR related to this?
+1 @PkuRainBow
No branches or pull requests
Feature request: Add HRNet-Semantic-Segmentation models to the Pytorch-hub
This will be a step prior to adding HRNet to the common Pytorch models: pytorch/vision#987
The simplest way is to add
hubconf.py
file to GitHub repository, like: https://github.com/WongKinYiu/PyTorch_YOLOv4/blob/u5_preview/hubconf.pySo we will be able to use HRNet models by using just command like: https://pytorch.org/docs/stable/hub.html#torch.hub.help
The text was updated successfully, but these errors were encountered: