当前位置:   article > 正文

【python】手写数字识别模型api接口调用_python数字识别接口

python数字识别接口

写在前面

我用pytorch搭建了一个cnn模型,训练mnist数据集,然后将训练后的模型部署到了线上,并提供一个可供调用的api接口。

成果演示

http://pytorch-cnn-mnist.herokuapp.com/

在这里插入图片描述

接口文档

请求地址

http://pytorch-cnn-mnist.herokuapp.com/predict/

请求方法

post

必要参数

字段类型描述
data字符串图片的base64编码(包含头部信息)

成功响应

字段类型描述
prediction整型手写数字的预测结果
confidence字符串预测结果正确的概率

请求示例

测试图片

在这里插入图片描述

请求代码

import requests, base64, json

with open('test.jpg', 'rb') as f:
    data = base64.b64encode(f.read()).decode()
data = 'data:image/jpeg;base64,'+data
url = 'http://pytorch-cnn-mnist.herokuapp.com/predict/'
res = requests.post(url, data=data).json()

print(json.dumps(res, indent=4))
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

响应结果

{
	"prediction": 2,
    "confidence": "98.30%"
}
  • 1
  • 2
  • 3
  • 4

温馨提示

接口仅供调用测试,有次数限制,非法滥用会封IP,请勿用于实际生产环境。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/607948
推荐阅读
相关标签
  

闽ICP备14008679号