TorchSeg
TorchSeg copied to clipboard
Where can i download the ResNet18 pretrained model??
Hello, I can't the way to download the pretrained model of resnet18 which is converted from gluon
@XdpAreKid I will release the pre-trained model recently.
@XdpAreKid I will release the pre-trained model recently.
Please quickly.
@luke-evans-liu I use this.It can get a good result in my data
@XdpAreKid i use gluon
it makes the mistake like this:
Traceback (most recent call last):
File "train.py", line 62, in
How did you load the model? @moonmyth
load model as follow in config.py C.pretrained_model = gcv.models.resnet18(pretrained=True)
Any updates on how to load a pretrained model ?
@moonmyth @alexanderfrey For my code, i just down this weights in my computer, and then in config.py C.pretrained_model = 'path to your weights'
load model as follow in config.py C.pretrained_model = gcv.models.resnet18(pretrained=True)
I have the same problem . have you solved it