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

Support ConvNeXt #93

Merged
merged 12 commits into from
Feb 1, 2022
4 changes: 3 additions & 1 deletion docs/source/changelog.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
## Changelog

### v0.1.0 (xx/01/2022)
### v0.1.0 (10/02/2022)

**New Features**

- Support `trunc_normal_` in `flowvision.layers.weight_init` [#92](https://github.com/Oneflow-Inc/vision/pull/92)
- Support [DeiT](https://arxiv.org/abs/2012.12877) model [#115](https://github.com/Oneflow-Inc/vision/pull/115)
- Support `PolyLRScheduler` and `TanhLRScheduler` in `flowvision.scheduler` [#85](https://github.com/Oneflow-Inc/vision/pull/85)
- Add `resmlp_12_224_dino` model and pretrained weight [#128](https://github.com/Oneflow-Inc/vision/pull/128)
- Support [ConvNeXt](https://arxiv.org/abs/2201.03545) model [#93](https://github.com/Oneflow-Inc/vision/pull/93)

**Bug Fixes**

Expand All @@ -30,6 +31,7 @@
- Add `Getting Started` docs [#124](https://github.com/Oneflow-Inc/vision/pull/124)
- Add `resmlp_12_224_dino` docs [#128](https://github.com/Oneflow-Inc/vision/pull/128)
- Fix `VGG` docs bug [#128](https://github.com/Oneflow-Inc/vision/pull/128)
- Add `ConvNeXt` docs [#93](https://github.com/Oneflow-Inc/vision/pull/93)


**Contributors**
Expand Down
25 changes: 25 additions & 0 deletions docs/source/flowvision.models.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ architectures for image classification:
- `ResMLP`_
- `gMLP`_
- `ConvMixer`_
- `ConvNeXt`_


.. _AlexNet: https://arxiv.org/abs/1404.5997
Expand Down Expand Up @@ -64,6 +65,7 @@ architectures for image classification:
.. _gMLP: https://arxiv.org/abs/2105.08050
.. _ConvMixer: https://openreview.net/pdf?id=TVHS5Y4dNvM
.. _EfficientNet: https://arxiv.org/abs/1905.11946
.. _ConvNeXt: https://arxiv.org/abs/2201.03545

.. currentmodule:: flowvision.models

Expand Down Expand Up @@ -365,6 +367,29 @@ ConvMixer
convmixer_1024_20,


ConvNeXt
--------
.. automodule:: flowvision.models
:members:
convnext_tiny_224,
convnext_small_224,
convnext_base_224,
convnext_base_384,
convnext_large_224,
convnext_large_384,
convnext_base_224_22k,
convnext_base_224_22k_to_1k,
convnext_base_384_22k_to_1k,
convnext_large_224_22k,
convnext_large_224_22k_to_1k,
convnext_large_384_22k_to_1k,
convnext_xlarge_224_22k,
convnext_xlarge_224_22k_to_1k,
convnext_xlarge_384_22k_to_1k,
convnext_iso_small_224,
convnext_iso_base_224,
convnext_iso_large_224,


Neural Style
============
Expand Down
1 change: 1 addition & 0 deletions flowvision/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
from .res2net import *
from .efficientnet import *
from .vision_transformer import *
from .convnext import *

from . import neural_style_transfer
from . import detection
Expand Down
Loading