51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#FLOW
TensorFlow学习资源
#TensorFlow学习资源###学习网站------------------------------[TensorFlow中文社区](http://www.tensorfly.cn/)-[TensorFlow官方网站](https://www.tensorflow.org/) 非常详细的速查文档http:...
代码星球
·
2020-11-01
TensorFlow
学习资源
TensorFlow机器学习框架-学习笔记-001
#TensorFlow机器学习框架-学习笔记-001###测试TensorFlow环境是否安装完成-----------------------------```importtensorflowastfhello=tf.constant('Hello,TensorFlow!')sess=tf.Session()prin...
代码星球
·
2020-11-01
学习
TensorFlow
机器
框架
笔记
Google TensorFlow 机器学习框架介绍和使用
TensorFlow是Google开源的第二代用于数字计算(numericalcomputation)的软件库。它是基于数据流图的处理框架,图中的节点表示数学运算(mathematicaloperations),边表示运算节点之间的数据交互。TensorFlow从字面意义上来讲有两层含义,一个是Tensor,它代表的是...
代码星球
·
2020-11-01
Google
TensorFlow
机器
学习
框架
tensorflow 如何看shape
https://blog.csdn.net/yinxingtianxia/article/details/78121941输入:x=tf.truncated_normal([32,32,3],dtype=tf.float32)print(tf.shape(x))print(x.get_shape())print(x.g...
代码星球
·
2020-10-13
tensorflow
如何
shape
tensorflow pb ckpt pbtxt
ckpt存储参数值pbtxt存储网络图pb既存储参数值又存储网络图...
代码星球
·
2020-10-13
tensorflow
pb
ckpt
pbtxt
android部署tensorflow
https://www.jianshu.com/p/ddeb0400452f...
代码星球
·
2020-10-13
android
部署
tensorflow
tensorflow与android编译
我的过程:1.下载tensorflow2.下载ndk、sdk然后放到了tensorflow的目录下3,修改workspace4.运行命令:bazelbuild-copt//tensorflow/tools/pip_package:build_pip_package https://blog.csd...
代码星球
·
2020-10-13
tensorflow
android
编译
安卓装tensorflow
1.https://blog.csdn.net/masa_fish/article/details/54096996tensorflow有很多中安装方式,但你要想和android结合,就只能采用源码安装的方式,因为这样才能编译出so、jar文件2.https://blog.csdn.net/nuannuanyingyi...
代码星球
·
2020-10-13
安卓
tensorflow
android上部署tensorflow
https://www.jianshu.com/p/ddeb0400452f按照这个博客就可以https://github.com/CrystalChen1017/TSFOnAndroid这个博客对应有一个github的仓库,里面有一个完整的demo,并且有编译好的jar和so文件如果自己去编译jarso文件,实在是太...
代码星球
·
2020-10-13
android
部署
tensorflow
windows 10 64bit下安装Tensorflow+Keras+VS2015+CUDA8.0 GPU加速
原文地址:http://www.jianshu.com/p/c245d46d43f02016年11月29日,GoogleBrain工程师团队宣布在TensorFlow0.12中加入初步的Windows支持。但是目前只支持64位,而且Python版本为3.5版本,需要CUDA8.0。之前Tensorflow对window...
代码星球
·
2020-10-11
windows
64bit
安装
Tensorflow+Keras+VS2015+CUDA8.0
GPU
tensorflow一个很好的博客
http://blog.csdn.net/mydear_11000/article/details/53197891...
代码星球
·
2020-10-11
tensorflow
一个
好的
博客
tensorflow训练代码
fromtensorflow.examples.tutorials.mnistimportinput_dataimporttensorflowastfmnist=input_data.read_data_sets("MNIST_data/",one_hot=True)sess=tf.InteractiveS...
代码星球
·
2020-10-11
tensorflow
训练
代码
tensorflow的一些函数
1.tf.constant(value,dtype=None,shape=None,name='Const')注意这个函数创造的是一个常数tensor,而不是一个具体的常数value:即可以是list,也可以是valuedtype:对应生成的tensor里的元素的类型#Constant1-DTensorpopulate...
代码星球
·
2020-10-11
tensorflow
一些
函数
如何查看tensorflow版本与存储位置
importtensorflowastftf.__version____看着是一个下划线,实际上是两个下划线,中间有空格tf.__path_ ...
代码星球
·
2020-10-11
如何
查看
tensorflow
版本
存储
tensorflow安装
Ubuntu安装tensorflow先安装python-dev,再安装tensorflow就好了$sudoapt-getinstallpython-dev$pipinstallhttps://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.5.0-cp2...
代码星球
·
2020-10-11
tensorflow
安装
首页
上一页
...
6
7
8
9
10
...
下一页
尾页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他