TensorFlow Ones,Zeros

Posted 郭老猫

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TensorFlow Ones,Zeros相关的知识,希望对你有一定的参考价值。

 

 

import tensorflow as tf
b = tf.ones([2,4])+1
sess = tf.Session();
print(sess.run(b));

 

输出:

[[ 2.  2.  2.  2.]
 [ 2.  2.  2.  2.]]

 

参考链接

http://wiki.jikexueyuan.com/project/tensorflow-zh/resources/dims_types.html

什么是张量

http://blog.csdn.net/u014595019/article/details/52805444

常用函数说明

以上是关于TensorFlow Ones,Zeros的主要内容,如果未能解决你的问题,请参考以下文章

学习Tensorflow之基本操作

numpy -- zeros,ones,eyes函数

UVA 12063 Zeros and Ones(三维dp)

matlab ones和zeros函数

UVA - 10324 Zeros and Ones

7kyu Ones and Zeros