花朵分类-14
可分类14种花朵,支持识别以下花朵类型:康乃馨、鸢尾花、风铃草、金英花、玫瑰、落新妇、郁金香、金盏花、蒲公英、金鸡菊、黑眼菊、睡莲、向日葵、雏菊。
  • 模型资讯
  • 模型资料
该模型当前使用的是默认介绍模版,处于“预发布”阶段,页面仅限所有者可见。
请根据模型贡献文档说明,及时完善模型卡片内容。ModelScope平台将在模型卡片完善后展示。谢谢您的理解。

Clone with HTTP

 git clone https://www.modelscope.cn/ValeriaWong/flower_classification14.git

模型加载和推理

更多关于模型加载和推理的问题参考模型的推理Pipeline

from modelscope.pipelines import pipeline
from modelscope.utils.constant import Tasks
from modelscope.hub.api import HubApi
YOUR_ACCESS_TOKEN ="请从ModelScope个人中心->访问令牌获取"
api = HubApi() 
api.login(YOUR_ACCESS_TOKEN)

img_path = 'https://images.pexels.com/photos/54267/sunflower-blossom-bloom-flowers-54267.jpeg' #向日葵图片
# p = pipeline('image-classification', 'ValeriaWong/flower_classification14')

image_classification = pipeline(Tasks.image_classification, 
                                model='ValeriaWong/flower_classification14',
                               model_revision = "v1.0.1")
result = image_classification(img_path)
print(result)

更多使用说明请参阅ModelScope文档中心