TensorFlow与Flask结合打造手写体数字识别
2021/6/18 6:03:09
本文主要是介绍TensorFlow与Flask结合打造手写体数字识别,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
TensorFlow与Flask结合打造手写体数字识别
主要步骤:
-
获取mnist数据集
-
分别创建regression和convolution的模型,设置对应的计算方式、参数等信息
-
创建regression、convolution 获取数据,调用对应模型进行训练、测试 最后保存对应模型
-
创建mnist接口,使用flask调用,使用返回的数据渲染界面,并进行发布
注:
app.run(host='0.0.0.0', port=8000)
使用本机ip访问界面,需要在防火墙中设置对应端口的出入站规则
app.run(host='127.0.0.1', port=8000)
本地访问
参考资料
Mr_Ricky公开课
这篇关于TensorFlow与Flask结合打造手写体数字识别的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-10-30tensorflow是什么-icode9专业技术文章分享
- 2024-10-15成功地使用本地的 NVIDIA GPU 运行 PyTorch 或 TensorFlow
- 2024-01-23供应链投毒预警 | 恶意Py包仿冒tensorflow AI框架实施后门投毒攻击
- 2024-01-19attributeerror: module 'tensorflow' has no attribute 'placeholder'
- 2024-01-19module 'tensorflow.compat.v2' has no attribute 'internal'
- 2023-07-17【2023年】第33天 Neural Networks and Deep Learning with TensorFlow
- 2023-07-10【2023年】第32天 Boosted Trees with TensorFlow 2.0(随机森林)
- 2023-07-09【2023年】第31天 Logistic Regression with TensorFlow 2.0(用TensorFlow进行逻辑回归)
- 2023-07-01【2023年】第30天 Supervised Learning with TensorFlow 2(用TensorFlow进行监督学习 2)
- 2023-06-18【2023年】第29天 Supervised Learning with TensorFlow 1(用TensorFlow进行监督学习 1)