Support MobileOne on ONNXRuntime and TensorRT (#1268)
* Support MobileOne * Updated supported model readme (Add MobileOne) * Update supported_models.md * Updated supported model readme (Add MobileOne) * Update mmcls.yml * Support MobileOne * Remove other files * Resolve lint error * Remove converted model files * Remove json files * Update mmcls.yml * Update mmcls.yml * Update benchmark doc Co-authored-by: SenseTime Research Singapore <SENSETIME\research.sgres@sg0016000001u.domain.sensetime.com>pull/1372/head
parent
83756b97c6
commit
680a3fb239
|
@ -30,6 +30,7 @@ The table below lists the models that are guaranteed to be exportable to other b
|
|||
| [ShuffleNetV2](https://github.com/open-mmlab/mmclassification/tree/1.x/configs/shufflenet_v2) | MMClassification | Y | Y | Y | Y | Y | Y | Y | Y |
|
||||
| [VisionTransformer](https://github.com/open-mmlab/mmclassification/tree/1.x/configs/vision_transformer) | MMClassification | Y | Y | Y | Y | ? | Y | Y | N |
|
||||
| [SwinTransformer](https://github.com/open-mmlab/mmclassification/tree/1.x/configs/swin_transformer) | MMClassification | Y | Y | Y | N | ? | N | ? | N |
|
||||
| [MobileOne](https://github.com/open-mmlab/mmclassification/tree/1.x/configs/mobileone) | MMClassification | N | Y | Y | N | N | N | N | N |
|
||||
| [FCN](https://github.com/open-mmlab/mmsegmentation/tree/1.x/configs/fcn) | MMSegmentation | Y | Y | Y | Y | Y | Y | Y | Y |
|
||||
| [PSPNet](https://github.com/open-mmlab/mmsegmentation/tree/1.x/configs/pspnet)[\*static](#note) | MMSegmentation | Y | Y | Y | Y | Y | Y | Y | Y |
|
||||
| [DeepLabV3](https://github.com/open-mmlab/mmsegmentation/tree/1.x/configs/deeplabv3) | MMSegmentation | Y | Y | Y | Y | Y | Y | Y | N |
|
||||
|
|
|
@ -30,6 +30,7 @@
|
|||
| [ShuffleNetV2](https://github.com/open-mmlab/mmclassification/tree/1.x/configs/shufflenet_v2) | MMClassification | Y | Y | Y | Y | Y | Y | Y | Y |
|
||||
| [VisionTransformer](https://github.com/open-mmlab/mmclassification/tree/1.x/configs/vision_transformer) | MMClassification | Y | Y | Y | Y | ? | Y | Y | N |
|
||||
| [SwinTransformer](https://github.com/open-mmlab/mmclassification/tree/1.x/configs/swin_transformer) | MMClassification | Y | Y | Y | N | ? | N | ? | N |
|
||||
| [MobileOne](https://github.com/open-mmlab/mmclassification/tree/1.x/configs/mobileone) | MMClassification | N | Y | Y | N | N | N | N | N |
|
||||
| [FCN](https://github.com/open-mmlab/mmsegmentation/tree/1.x/configs/fcn) | MMSegmentation | Y | Y | Y | Y | Y | Y | Y | Y |
|
||||
| [PSPNet](https://github.com/open-mmlab/mmsegmentation/tree/1.x/configs/pspnet)[\*static](#note) | MMSegmentation | Y | Y | Y | Y | Y | Y | Y | Y |
|
||||
| [DeepLabV3](https://github.com/open-mmlab/mmsegmentation/tree/1.x/configs/deeplabv3) | MMSegmentation | Y | Y | Y | Y | Y | Y | Y | N |
|
||||
|
|
|
@ -212,6 +212,14 @@ models:
|
|||
- *pipeline_ort_dynamic_fp32
|
||||
- *pipeline_trt_static_fp16
|
||||
|
||||
- name: MobileOne
|
||||
metafile: configs/mobileone/metafile.yml
|
||||
model_configs:
|
||||
- configs/mobileone/mobileone-s0_8xb128_in1k.py
|
||||
pipelines:
|
||||
- *pipeline_trt_static_fp16
|
||||
- *pipeline_ort_dynamic_fp32
|
||||
|
||||
- name: EfficientNet
|
||||
metafile: configs/efficientnet/metafile.yml
|
||||
model_configs:
|
||||
|
|
Loading…
Reference in New Issue