Skip to content

Commit 584fb7c

Browse files
authored
[Docs] Update mmcls doc (#1978)
* update mmcls doc * add cn readme * fix ci * replace mmcls to mmpretrain
1 parent 671d626 commit 584fb7c

File tree

2 files changed

+26
-20
lines changed

2 files changed

+26
-20
lines changed

docs/en/04-supported-codebases/mmcls.md

+13-10
Original file line numberDiff line numberDiff line change
@@ -172,13 +172,16 @@ Besides python API, mmdeploy SDK also provides other FFI (Foreign Function Inter
172172

173173
## Supported models
174174

175-
| Model | TorchScript | ONNX Runtime | TensorRT | ncnn | PPLNN | OpenVINO |
176-
| :------------------------------------------------------------------------------------------------------ | :---------: | :----------: | :------: | :--: | :---: | :------: |
177-
| [ResNet](https://github.com/open-mmlab/mmclassification/tree/1.x/configs/resnet) | Y | Y | Y | Y | Y | Y |
178-
| [ResNeXt](https://github.com/open-mmlab/mmclassification/tree/1.x/configs/resnext) | Y | Y | Y | Y | Y | Y |
179-
| [SE-ResNet](https://github.com/open-mmlab/mmclassification/tree/1.x/configs/seresnet) | Y | Y | Y | Y | Y | Y |
180-
| [MobileNetV2](https://github.com/open-mmlab/mmclassification/tree/1.x/configs/mobilenet_v2) | Y | Y | Y | Y | Y | Y |
181-
| [ShuffleNetV1](https://github.com/open-mmlab/mmclassification/tree/1.x/configs/shufflenet_v1) | Y | Y | Y | Y | Y | Y |
182-
| [ShuffleNetV2](https://github.com/open-mmlab/mmclassification/tree/1.x/configs/shufflenet_v2) | Y | Y | Y | Y | Y | Y |
183-
| [VisionTransformer](https://github.com/open-mmlab/mmclassification/tree/1.x/configs/vision_transformer) | Y | Y | Y | Y | ? | Y |
184-
| [SwinTransformer](https://github.com/open-mmlab/mmclassification/tree/1.x/configs/swin_transformer) | Y | Y | Y | N | ? | N |
175+
| Model | TorchScript | ONNX Runtime | TensorRT | ncnn | PPLNN | OpenVINO |
176+
| :------------------------------------------------------------------------------------------------- | :---------: | :----------: | :------: | :--: | :---: | :------: |
177+
| [ResNet](https://github.com/open-mmlab/mmpretrain/tree/main/configs/resnet) | Y | Y | Y | Y | Y | Y |
178+
| [ResNeXt](https://github.com/open-mmlab/mmpretrain/tree/main/configs/resnext) | Y | Y | Y | Y | Y | Y |
179+
| [SE-ResNet](https://github.com/open-mmlab/mmpretrain/tree/main/configs/seresnet) | Y | Y | Y | Y | Y | Y |
180+
| [MobileNetV2](https://github.com/open-mmlab/mmpretrain/tree/main/configs/mobilenet_v2) | Y | Y | Y | Y | Y | Y |
181+
| [ShuffleNetV1](https://github.com/open-mmlab/mmpretrain/tree/main/configs/shufflenet_v1) | Y | Y | Y | Y | Y | Y |
182+
| [ShuffleNetV2](https://github.com/open-mmlab/mmpretrain/tree/main/configs/shufflenet_v2) | Y | Y | Y | Y | Y | Y |
183+
| [VisionTransformer](https://github.com/open-mmlab/mmpretrain/tree/main/configs/vision_transformer) | Y | Y | Y | Y | ? | Y |
184+
| [SwinTransformer](https://github.com/open-mmlab/mmpretrain/tree/main/configs/swin_transformer) | Y | Y | Y | N | ? | N |
185+
| [MobileOne](https://github.com/open-mmlab/mmpretrain/tree/main/configs/mobileone) | Y | Y | N | N | ? | N |
186+
| [EfficientNet](https://github.com/open-mmlab/mmpretrain/tree/main/configs/efficientnet) | Y | Y | N | N | ? | N |
187+
| [Conformer](https://github.com/open-mmlab/mmpretrain/tree/main/configs/conformer) | Y | Y | N | N | ? | N |

docs/zh_cn/04-supported-codebases/mmcls.md

+13-10
Original file line numberDiff line numberDiff line change
@@ -177,13 +177,16 @@ for label_id, score in result:
177177

178178
## 模型支持列表
179179

180-
| Model | TorchScript | ONNX Runtime | TensorRT | ncnn | PPLNN | OpenVINO |
181-
| :------------------------------------------------------------------------------------------------------ | :---------: | :----------: | :------: | :--: | :---: | :------: |
182-
| [ResNet](https://github.com/open-mmlab/mmclassification/tree/1.x/configs/resnet) | Y | Y | Y | Y | Y | Y |
183-
| [ResNeXt](https://github.com/open-mmlab/mmclassification/tree/1.x/configs/resnext) | Y | Y | Y | Y | Y | Y |
184-
| [SE-ResNet](https://github.com/open-mmlab/mmclassification/tree/1.x/configs/seresnet) | Y | Y | Y | Y | Y | Y |
185-
| [MobileNetV2](https://github.com/open-mmlab/mmclassification/tree/1.x/configs/mobilenet_v2) | Y | Y | Y | Y | Y | Y |
186-
| [ShuffleNetV1](https://github.com/open-mmlab/mmclassification/tree/1.x/configs/shufflenet_v1) | Y | Y | Y | Y | Y | Y |
187-
| [ShuffleNetV2](https://github.com/open-mmlab/mmclassification/tree/1.x/configs/shufflenet_v2) | Y | Y | Y | Y | Y | Y |
188-
| [VisionTransformer](https://github.com/open-mmlab/mmclassification/tree/1.x/configs/vision_transformer) | Y | Y | Y | Y | ? | Y |
189-
| [SwinTransformer](https://github.com/open-mmlab/mmclassification/tree/1.x/configs/swin_transformer) | Y | Y | Y | N | ? | N |
180+
| Model | TorchScript | ONNX Runtime | TensorRT | ncnn | PPLNN | OpenVINO |
181+
| :------------------------------------------------------------------------------------------------- | :---------: | :----------: | :------: | :--: | :---: | :------: |
182+
| [ResNet](https://github.com/open-mmlab/mmpretrain/tree/main/configs/resnet) | Y | Y | Y | Y | Y | Y |
183+
| [ResNeXt](https://github.com/open-mmlab/mmpretrain/tree/main/configs/resnext) | Y | Y | Y | Y | Y | Y |
184+
| [SE-ResNet](https://github.com/open-mmlab/mmpretrain/tree/main/configs/seresnet) | Y | Y | Y | Y | Y | Y |
185+
| [MobileNetV2](https://github.com/open-mmlab/mmpretrain/tree/main/configs/mobilenet_v2) | Y | Y | Y | Y | Y | Y |
186+
| [ShuffleNetV1](https://github.com/open-mmlab/mmpretrain/tree/main/configs/shufflenet_v1) | Y | Y | Y | Y | Y | Y |
187+
| [ShuffleNetV2](https://github.com/open-mmlab/mmpretrain/tree/main/configs/shufflenet_v2) | Y | Y | Y | Y | Y | Y |
188+
| [VisionTransformer](https://github.com/open-mmlab/mmpretrain/tree/main/configs/vision_transformer) | Y | Y | Y | Y | ? | Y |
189+
| [SwinTransformer](https://github.com/open-mmlab/mmpretrain/tree/main/configs/swin_transformer) | Y | Y | Y | N | ? | N |
190+
| [MobileOne](https://github.com/open-mmlab/mmpretrain/tree/main/configs/mobileone) | Y | Y | N | N | ? | N |
191+
| [EfficientNet](https://github.com/open-mmlab/mmpretrain/tree/main/configs/efficientnet) | Y | Y | N | N | ? | N |
192+
| [Conformer](https://github.com/open-mmlab/mmpretrain/tree/main/configs/conformer) | Y | Y | N | N | ? | N |

0 commit comments

Comments
 (0)