hub icon indicating copy to clipboard operation
hub copied to clipboard

Submission to https://pytorch.org/hub/

Results 52 hub issues
Sort by recently updated
recently updated
newest added

Hi, I'm trying to run the ntsnet example : ``` import urllib import torch from PIL import Image from torchvision import transforms transform_test = transforms.Compose([ transforms.Resize((600, 600), Image.BILINEAR), transforms.CenterCrop((448, 448)),...

Hi there, I wanted to play around with your SSD300 - thanks again for creating that, btw - as it is probably better than the implementation I've been using. However,...

Following the documentation [example](https://github.com/pytorch/hub/issues/new) for listing available models, I tried `torch.hub.list('pytorch/vision')`, but was met with a `RuntimeError: builtin cannot be used as a value` that appears to originate from the...

I run the code according to this: ``` import torch model = torch.hub.load('PingoLH/Pytorch-HarDNet', 'hardnet68', pretrained=True) # or any of these variants # model = torch.hub.load('PingoLH/Pytorch-HarDNet', 'hardnet85', pretrained=True) # model =...

https://github.com/pytorch/hub/blob/master/pytorch_vision_resnet.md#model-description "Here we have the 5 versions of resnet models, which contains **5**, 34, 50, 101, 152 layers respectively". I believe it should be "Here we have the 5 versions...

When I following the example code in [(https://pytorch.org/hub/mateuszbuda_brain-segmentation-pytorch_unet/)] the results is a mess. Then I discovered by removing the normalization step, everything goes well. I checked the repo for the...

We are using the PyTorch deeplabv3_resnet101 model on AWS (on pytorch 1.1), and it suddenly stopped working. It appears that a recent upgrade to torchvision/inception (!) broke this model: ```...

``` # create a color pallette, selecting a color for each class palette = torch.tensor([2 ** 25 - 1, 2 ** 15 - 1, 2 ** 21 - 1]) colors...

* I am currently using a torch hub entrypoint for an unreleased model which is in a private github repository. Therefore the entrypoint is manually called using `hubconf.entrypoint()`. The entrypoint...

I think this could be an amazing resource once it gets going. I do have one rather broad an open ended question. What, exactly, is supposed to be published here,...