Skip to content

Pytorch implementation of benchmark models for image segmentation

Notifications You must be signed in to change notification settings

nnzzll/networks

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 

Repository files navigation

networks

Pytorch implementation of benchmark models for image segmentation

  • Models

    • UNet
    • UNet++
    • UNet3+
    • UNet3D
    • VNet
  • Usage

      python setup.py develop
    
  • Sample

    import torch
    from networks import UNet
    
    model = UNet(1,1)
    inputs = torch.randn((1,1,512,512))
    output = model(inputs)
    print(output.shape)

About

Pytorch implementation of benchmark models for image segmentation

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages