转自:http://blog.csdn.net/qq_32166627/article/details/52734387 侵删。 tensorflow中有一类在tensor的某一维度上求值的函数。如: 求最大值tf.reduce_max(input_tensor, reduction_indices ...
分类:
其他好文 时间:
2017-03-15 16:44:51
阅读次数:
182
https://www.tensorflow.org/versions/r0.12/api_docs/python/array_ops.html#reshape 例子: ...
分类:
其他好文 时间:
2017-03-11 10:40:11
阅读次数:
179
tensor是torch的核心,理论上四大框架如果不考虑直接汇编,使用更底层的语言,那么运算的速度和结果都应该是一样的。 caffe有blob数据块减小数据读取时候造成的时间损失,而tensor也是一样。(本人只了解过caffe、torch,其它两款没碰过) tensor像是numpy的升级版,对速 ...
分类:
其他好文 时间:
2017-03-01 16:34:50
阅读次数:
557
solution to include bits/stdc++.h in visual c++ By Tensor, 2 years ago, , This is just a method i used to make me able to include bits/stdc++.h in vis ...
分类:
编程语言 时间:
2017-02-10 20:37:30
阅读次数:
4154
原文链接:https://zhuanlan.zhihu.com/p/22410917 TensorFlow 是 Google 基于 DistBelief 进行研发的第二代人工智能学习系统,被广泛用于语音识别或图像识别等多项机器深度学习领域。其命名来源于本身的运行原理。Tensor(张量)意味着 N ...
分类:
其他好文 时间:
2017-02-06 23:56:15
阅读次数:
715
http://www.infoq.com/cn/articles/deeplearning-tensorflow-casestudy http://www.tuicool.com/articles/amq2qir ...
分类:
其他好文 时间:
2017-02-03 18:42:41
阅读次数:
377
打开Python Shell,先输入import tensorflow as tf,然后可以执行以下命令。 Tensorflow中的常量创建方法: 其中,'Hello,world!'是常量初始值;tf.string是常量类型,可以省略。常量和变量都可以去构建Tensorflow中的图。 Tensor ...
分类:
其他好文 时间:
2017-02-02 11:14:17
阅读次数:
201
local length = part2:size(1) local file = io.open('/home/xbwang/Desktop/part2original','a') for j = 1,length do number = part2[j] file:write(tostring(... ...
分类:
其他好文 时间:
2017-01-22 12:26:45
阅读次数:
183
一、python安装 centos自带python2.7.5,这一步可以省略掉。 二、python-pip pip--python index package,累世linux的yum,安装管理python软件包用的。 三、安装tensorflow 安装基于linux和python2.7的tensor ...
分类:
系统相关 时间:
2017-01-20 14:49:01
阅读次数:
531
线性变化后,往往希望进行非线性变化,常用的非线性变化函数有Sigmoid,Tanh,ReLU。会发现,经过这三个函数变化后,Tensor的维度并不发生变化。 tanh(双曲正切函数): ...
分类:
其他好文 时间:
2017-01-20 12:51:57
阅读次数:
134