TensorFlow 快速入门与实战
彭靖田
Google Developers Expert,《深入理解 TensorFlow》作者
31210 人已学习
新⼈⾸单¥59
课程目录
已完结/共 67 讲
第二章:TensorFlow初接触 (5讲)
第六章:实战TensorFlow验证码识别 (8讲)
TensorFlow 快速入门与实战
登录|注册
留言
7
收藏
沉浸
阅读
分享
手机端
回顶部
当前播放: 51 | 模型部署与效果演示
00:00 / 00:00
高清
  • 高清
1.0x
  • 2.0x
  • 1.5x
  • 1.25x
  • 1.0x
  • 0.75x
  • 0.5x
网页全屏
全屏
00:00
付费课程,可试看
01 | 课程介绍
02 | 课程内容综述
03 | 第一章内容概述
04 | TensorFlow产生的历史必然性
05 | TensorFlow与Jeff Dean的那些事
06 | TensorFlow的应用场景
07 | TensorFlow的落地应用
08 | TensorFlow的发展现状
09 | 第二章内容概述
10 | 搭建你的TensorFlow开发环境
11 | Hello TensorFlow
12 | 在交互环境中使用TensorFlow
13 | 在容器中使用TensorFlow
14 | 第三章内容概述
15 | TensorFlow模块与架构介绍
16 | TensorFlow数据流图介绍
17 | 张量(Tensor)是什么(上)
18 | 张量(Tensor)是什么(下)
19 | 变量(Variable)是什么(上)
20 | 变量(Variable)是什么(下)
21 | 操作(Operation)是什么(上)
22 | 操作(Operation)是什么(下)
23 | 会话(Session)是什么
24 | 优化器(Optimizer)是什么
25 | 第四章内容概述
26 | 房价预测模型的前置知识
27 | 房价预测模型介绍
28 | 房价预测模型之数据处理
29 | 房价预测模型之创建与训练
30 | TensorBoard可视化工具介绍
31 | 使用TensorBoard可视化数据流图
32 | 实战房价预测模型:数据分析与处理
33 | 实战房价预测模型:创建与训练
34 | 实战房价预测模型:可视化数据流图
35 | 第五章内容概述
36 | 手写体数字数据集MNIST介绍(上)
37 | 手写体数字数据集MNIST介绍(下)
38 | MNIST Softmax网络介绍(上)
39 | MNIST Softmax网络介绍(下)
40 | 实战MNIST Softmax网络(上)
41 | 实战MNIST Softmax网络(下)
42 | MNIST CNN网络介绍
43 | 实战MNIST CNN网络
44 | 第六章内容概述
45 | 准备模型开发环境
46 | 生成验证码数据集
47 | 输入与输出数据处理
48 | 模型结构设计
49 | 模型损失函数设计
50 | 模型训练过程分析
51 | 模型部署与效果演示
52 | 第七部分内容介绍
53 | 人脸识别问题概述
54 | 典型人脸相关数据集介绍
55 | 人脸检测算法介绍
56 | 人脸识别算法介绍
57 | 人脸检测工具介绍
58 | 解析FaceNet人脸识别模型
59 | 实战FaceNet人脸识别模型
60 | 测试与可视化分析
61 | 番外篇内容介绍
62 | TensorFlow社区介绍
63 | TensorFlow生态:TFX
64 | TensorFlow生态:Kubeflow
65 | 如何参与TensorFlow社区开源贡献
66 | ML GDE是TensorFlow社区与开发者的桥梁
67 | 课程总结
登录 后留言

全部留言(7)

  • 最新
  • 精选
沉枫y
windows用户不在虚拟环境下的: set FLASK_ENV=development && flask run --host=0.0.0.0 curl -X POST -F image=@1459.png http://localhost:5000/ping

作者回复: 👍赞

2019-03-22
无趣的灵魂
请问flask 三张测试的图片放在那里呢?,为什么放在flask-test路径里自动就可以找到图片呢?
2019-06-29
1
被梦想通缉的树袋熊
老师,您好,我在运行这个flask程序的模型预测时报错了,看上去好像是没有初始化全局变量的原因,但看老师的代码中没有这个,所以特向老师请教。 tensorflow.python.framework.errors_impl.FailedPreconditionError: Error while reading resource variable fc2/kernel from Container: localhost. This could mean that the variable was uninitialized. Not found: Container localhost does not exist. (Could not find resource: localhost/fc2/kernel)
2020-02-21
1
勿忘初心
* Serving Flask app "app.py" (lazy loading) * Environment: development * Debug mode: on * Running on http://0.0.0.0:5000/ (Press CTRL+C to quit) * Restarting with stat * Debugger is active! * Debugger PIN: 225-553-833 Traceback (most recent call last): 。。。。 return _bootstrap._gcd_import(name[level:], package, level) File "<frozen importlib._bootstrap>", line 1006, in _gcd_import File "<frozen importlib._bootstrap>", line 983, in _find_and_load File "<frozen importlib._bootstrap>", line 965, in _find_and_load_unlocked ModuleNotFoundError: No module named 'tensorflow_core.keras' Using TensorFlow backend. Using TensorFlow backend.
2020-01-08
勿忘初心
环境中tf 和keras 能正常引用 但是在flask启动的时候 就报错 ModuleNotFoundError: No module named 'tensorflow_core.keras'
2020-01-08
1
J.Smile
with graph.as_default(): AttributeError: 'function' object has no attribute 'as_default' 报错了呢
2019-12-28
AA-DENNIS
老师,你好,我在deploy_app.py中添加了下面的代码: if __name__ == '__main__': app.run(host='0.0.0.0' port= 5001, debug=True)  启动命令: python deploy_app.py 出现下面的异常需要如何解决呢? if not _DISABLE_TRACKING.value: AttributeError: '_thread._local' object has no attribute 'value'
2019-10-07
收起评论