mirror of
https://github.com/Laurent2916/REVA-QCAV.git
synced 2024-11-08 14:39:00 +00:00
2ca43802cc
Former-commit-id: 9a6ee84c50390306e24bb369d1c24d2fdd9d7e60
22 lines
842 B
Python
22 lines
842 B
Python
import torch
|
|
from unet import UNet as _UNet
|
|
|
|
def unet_carvana(pretrained=False, scale=0.5):
|
|
"""
|
|
UNet model trained on the Carvana dataset ( https://www.kaggle.com/c/carvana-image-masking-challenge/data ).
|
|
Set the scale to 0.5 (50%) when predicting.
|
|
"""
|
|
net = _UNet(n_channels=3, n_classes=2, bilinear=False)
|
|
if pretrained:
|
|
if scale == 0.5:
|
|
checkpoint = 'https://github.com/milesial/Pytorch-UNet/releases/download/v3.0/unet_carvana_scale0.5_epoch2.pth'
|
|
elif scale == 1.0:
|
|
checkpoint = 'https://github.com/milesial/Pytorch-UNet/releases/download/v3.0/unet_carvana_scale1.0_epoch2.pth'
|
|
else:
|
|
raise RuntimeError('Only 0.5 and 1.0 scales are available')
|
|
|
|
net.load_state_dict(torch.hub.load_state_dict_from_url(checkpoint, progress=True))
|
|
|
|
return net
|
|
|