Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add senet and results docstring #149

Merged
merged 14 commits into from
Feb 21, 2022
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ pip install flowvision==0.1.0
<li>InceptionV3</li>
<li>ResNet</li>
<li>ResNeXt</li>
<li>SENet</li>
<li>DenseNet</li>
<li>ShuffleNetV2</li>
<li>MobileNetV2</li>
Expand Down
14 changes: 14 additions & 0 deletions docs/source/flowvision.models.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ architectures for image classification:
- `InceptionV3`_
- `ResNet`_
- `ResNeXt`_
- `SENet`_
- `DenseNet`_
- `ShuffleNetV2`_
- `MobileNetV2`_
Expand Down Expand Up @@ -50,6 +51,7 @@ architectures for image classification:
.. _MobileNetV2: https://arxiv.org/abs/1801.04381
.. _MobileNetV3: https://arxiv.org/abs/1905.02244
.. _ResNeXt: https://arxiv.org/abs/1611.05431
.. _SENet: https://arxiv.org/abs/1709.01507
.. _Res2Net: https://arxiv.org/abs/1904.01169
.. _ReXNet: https://arxiv.org/abs/2007.00992
.. _MNASNet: https://arxiv.org/abs/1807.11626
Expand Down Expand Up @@ -220,6 +222,18 @@ ReXNet
rexnet_lite_2_0,


SENet
--------
.. automodule:: flowvision.models
:members:
senet154,
se_resnet50,
se_resnet101,
se_resnet152,
se_resnext50_32x4d,
se_resnext101_32x4d,


ViT
------
.. automodule:: flowvision.models
Expand Down
1 change: 1 addition & 0 deletions flowvision/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
from .efficientnet import *
from .vision_transformer import *
from .convnext import *
from .senet import *

from . import neural_style_transfer
from . import detection
Expand Down
Loading