码迷,mamicode.com
首页 > 其他好文 > 详细

5.什么是tensor(下)

时间:2018-07-20 11:38:02      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:import   pre   ref   tensor   com   variable   highlight   info   name   

import tensorflow as tf

# tensorflow还支持变量的定义
var = tf.Variable(3)
print(var)  # <tf.Variable ‘Variable:0‘ shape=() dtype=int32_ref>

# 也可以指定类型和名字
var1 = tf.Variable(4, name="mmp", dtype=tf.float64)
print(var1)  # <tf.Variable ‘mmp:0‘ shape=() dtype=float64_ref>

# 关于参数shape,表示变量是几维的
var2 = tf.Variable([1, 2, 3])
print(var2)  # <tf.Variable ‘Variable_1:0‘ shape=(3,) dtype=int32_ref>

var3 = tf.Variable([[1, 2, 3], [4, 5, 6]])
print(var3)  # <tf.Variable ‘Variable_2:0‘ shape=(2, 3) dtype=int32_ref>

  技术分享图片

 

5.什么是tensor(下)

标签:import   pre   ref   tensor   com   variable   highlight   info   name   

原文地址:https://www.cnblogs.com/traditional/p/9339290.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!