Tensorflow
阿懿_
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Tensorflow学习笔记(1)--基本流程,会话控制,变量,占位符
import tensorflow as tf目标函数:y = 0.1 * x + 0.3假设函数:y = Weights * x + biases预期结果:Weight接近0.1 biase接近0.3###creat tensorflow structure start###Weights = tf.Variable(tf.random_uniform([1], -0.1, 1.0))#生成变...原创 2018-06-26 10:20:35 · 366 阅读 · 0 评论 -
Tensorflow object detection API 搭建目标检测环境
DependenciesTensorflow Object Detection API depends on the following libraries:Protobuf 3.0.0 Python-tk Pillow 1.0 lxml tf Slim (which is included in the "tensorflow/models/research/" checkout...原创 2018-10-29 21:20:53 · 519 阅读 · 0 评论
分享