图像分类工具包 MMClassification
代码仓库:https://github.com/open-mmlab/mmclassification
文档教程:https://mmclassification.readthedocs.io/en/latest
Python 推理 API
# 下载配置文件和与训练权重
$ mim download mmcls - -config mobilenet - v2_8xb32_in1k - -dest .
# 使用Python API 推理
model = init_model('mobilenet-v2_8xb32_in1k.py',
'mobilenet_v2_batch256_imagenet_20200708-3b2dc3af.pth',
device='cuda:0')
result = inference_model(model, 'banana.png')
show_result_pyplot(model, 'banana.png', result)
# 推理结果result
{'pred_class': 'banana’,
'pred_label': 954,
'pred_score': 0.9999284744262695}
环境搭建
可以使用 MIM 配置 MMCV 和 MMClassification