torchsight.models module

Initialize the package.

Import directly to perform more beautiful imports.

See: http://mikegrouchy.com/blog/2012/05/be-pythonic-__init__py.html

Source code
"""Initialize the package.

Import directly to perform more beautiful imports.

See:
http://mikegrouchy.com/blog/2012/05/be-pythonic-__init__py.html
"""
from .anchors import Anchors
from .dlde import DLDENet, DLDENetWithTrackedMeans
from .resnet import ResNet, resnet18, resnet34, resnet50, resnet101, resnet152
from .resnet_detector import ResnetDetector
from .retinanet import RetinaNet

Sub-modules

torchsight.models.anchors

Anchors module

torchsight.models.dlde

Package with the implementations of the DLDENet.

torchsight.models.resnet

Module that contains ResNet implementation …

torchsight.models.resnet_detector

Module with a dummy object detector using a ResNet.

torchsight.models.retinanet

Retinanet module …