Skip to content

Pytorch implementation of SAFENet: Self-Supervised Monocular Depth Estimation with Semantic-Aware Feature Extraction: https://arxiv.org/abs/2010.02893

Notifications You must be signed in to change notification settings

04RR/SAFENet-Pytorch

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

SAFENet-Pytorch

Pytorch implementation of SAFENet: Self-Supervised Monocular Depth Estimation with Semantic-Aware Feature Extraction

import torch
from safenet import SAFENet

model = SAFENet(in_channels= 3, classes= 20)

img = torch.randn((1, 3, 224, 224)) // input image shape : (1, 3, 224, 224)
print(model(img).shape) // (1, 21, 224, 224)

About

Pytorch implementation of SAFENet: Self-Supervised Monocular Depth Estimation with Semantic-Aware Feature Extraction: https://arxiv.org/abs/2010.02893

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages