TensorFlow Python API 可以直接访问。 http://devdocs.io/tensorflow~python/
Read More分类: TensorFlow
Tensorflow中的tf.argmax()函数
官方API定义 tf.argmax(input, axis=None, name=None, dimension=None) Returns the index with the …
Read Moretf.reshape TensorFlow reshape 函数
tf.reshape reshape( tensor, shape, name=None ) 调整一个张量 传入一个张量,这个操作返回一个张量,返回的张量…
Read MoreTensorFlow 模型的保存和恢复代码
代码参考《TensorFlow:实战Google深度学习框架》,本地手打,调试后复制出来,和原文会有差别。 不同于普通的保存和读取,读取的时候还是需要定义一下数据。之前想着 Ten…
Read Moretf.nn.conv2d 这个函数的功能是:给定4维的input和filter,计算出一个2维的卷积结果。
这个函数的功能是:给定4维的input和filter,计算出一个2维的卷积结果。 conv2d(input, filter, strides, padding, use_cudnn…
Read Moretf.Session.run() 执行操作,计算张量值
函数参数 run( fetches, feed_dict=None, options=None, run_metadata=None ) tf.Se…
Read More基于 TensorFlow 的第一个神经网络
基于 TensorFlow 的第一个神经网络 代码参考《TensorFlow:实战Google深度学习框架》,本地手打,调试后复制出来,和原文会有差别。 #!/usr/bin/en…
Read Moreplt.imshow 图像读取,展示
#!/usr/bin/env python # -*- coding: utf-8 -*- import matplotlib.pyplot as plt from scipy i…
Read More输出 TensorFlow 中的张量
代码参考《TensorFlow:实战Google深度学习框架》,本地手打,调试后复制出来,和原文会有差别。 #!/usr/bin/env python # -*- coding: …
Read MoreTensorFlow 不同图中定义和使用变量
代码参考《TensorFlow:实战Google深度学习框架》,本地手打,调试后复制出来,和原文会有差别。 #!/usr/bin/env python # -*- coding: …
Read More