- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章基于tf.shape(tensor)和tensor.shape()的区别说明由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
#tf.shape(tensor)和tensor.shape()的区别 。
1
2
3
4
5
6
7
8
9
10
11
12
13
|
a
=
tf.zeros([
4
,
5
,
4
,
5
,
6
])
print
(
type
(a.shape))
print
(a.shape.ndims)
#多少个维度
print
(a.shape.as_list())
#返回列表
print
(
type
(tf.shape(a)))
print
(
type
(tf.shape(a)[
0
]))
b
=
a.shape.as_list()
c
=
tf.shape(a)
b[
1
]
=
tf.shape(a)[
1
]
print
(b)
sess
=
tf.Session()
d
=
sess.run(c)
print
(d)
|
1
2
3
4
5
6
7
8
|
outputs:
<
class
'tensorflow.python.framework.tensor_shape.TensorShape'
>
5
[
4
,
5
,
4
,
5
,
6
]
<
class
'tensorflow.python.framework.ops.Tensor'
>
<
class
'tensorflow.python.framework.ops.Tensor'
>
[
4
, <tf.Tensor
'strided_slice_1:0'
shape
=
() dtype
=
int32>,
4
,
5
,
6
]
[
4
5
4
5
6
]
|
其中tf.shape(tensor)使用的是动态的,即必须要在session中运行后才能显示出来,但是tensor.shape()是静态的,即通过定义的shape可以惊天的运行出来.
原因:在我们定义的时候,比如进行placeholder的时候我们可能会定义某些维度为None,在静态的时候是看不出来的,只能在运行的时候找到维度.
**使用:**可以在获得某些tensor的维度的时候进行检验,防止维度为None.
补充知识:tensorflow.python.framework.tensor_shape.TensorShape 类 。
TensorShape 是tensorflow中关于张量shape的类(class). 。
使用示例如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import
tensorflow.compat.v1 as tf
from
tensorflow.python.framework
import
tensor_shape
from
tensorflow.python.framework
import
constant_op
tensor_test1
=
[
10
,
10
,
10
]
tensor_test2
=
[
None
,
10
,
10
]
p1
=
tensor_shape.as_shape(tensor_test1)
# 得到的是一个类实例,该类实例包含一个属性,是 tensor_test1 的value
const
=
constant_op.constant(p1.as_list())
print
(
"type(p1) = "
,
type
(p1))
print
(
"p1 = "
,p1)
# 使用p1时会自动调用p1中的value属性
print
(
"p1.is_fully_defined() = "
,p1.is_fully_defined())
# is_fully_defined 是 TensorShape 类的一个内部函数
print
(
"p1.ndims = "
,p1.ndims)
# ndims 也是TensorShape的一个属性值
print
(
"p1.as_list() = "
,p1.as_list())
# 把TensorShape的value属性转换成python中的list类型
print
(
"const = "
,const)
|
结果如下:
1
2
3
4
5
6
|
type
(p1)
=
<
class
'tensorflow.python.framework.tensor_shape.TensorShape'
>
p1
=
(
10
,
10
,
10
)
p1.is_fully_defined()
=
True
p1.ndims
=
3
p1.as_list()
=
[
10
,
10
,
10
]
const
=
Tensor(
"Const:0"
, shape
=
(
3
,), dtype
=
int32)
|
以上这篇基于tf.shape(tensor)和tensor.shape()的区别说明就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持我.
原文链接:https://blog.csdn.net/yinheju/article/details/84380913 。
最后此篇关于基于tf.shape(tensor)和tensor.shape()的区别说明的文章就讲到这里了,如果你想了解更多关于基于tf.shape(tensor)和tensor.shape()的区别说明的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
在 Tensorflow(从 v1.2.1 开始)中,似乎有(至少)两个并行 API 来构建计算图。 tf.nn 中有函数,如 conv2d、avg_pool、relu、dropout,tf.laye
我正在处理眼睛轨迹数据和卷积神经网络。我被要求使用 tf.reduce_max(lastconv, axis=2)代替 MaxPooling 层和 tf.reduce_sum(lastconv,axi
TensorFlow 提供了 3 种不同的数据存储格式 tf.train.Feature .它们是: tf.train.BytesList tf.train.FloatList tf.train.In
我正在尝试为上下文强盗问题 (https://medium.com/emergent-future/simple-reinforcement-learning-with-tensorflow-part
我在使用 Tensorflow 时遇到问题: 以下代码为卷积 block 生成正确的图: def conv_layer(self, inputs, filter_size = 3, num_filte
我正在将我的训练循环迁移到 Tensorflow 2.0 API .在急切执行模式下,tf.GradientTape替换 tf.gradients .问题是,它们是否具有相同的功能?具体来说: 在函数
tensorflow 中 tf.control_dependencies(tf.get_collection(tf.GraphKeys.UPDATE_OPS)) 的目的是什么? 更多上下文:
我一直在努力学习 TensorFlow,我注意到不同的函数用于相同的目标。例如,为了平方变量,我看到了 tf.square()、tf.math.square() 和 tf.keras.backend.
我正在尝试使用自动编码器开发图像着色器。有 13000 张训练图像。如果我使用 tf.data,每个 epoch 大约需要 45 分钟,如果我使用 tf.utils.keras.Sequence 大约
我尝试按照 tensorflow 教程实现 MNIST CNN 神经网络,并找到这些实现 softmax 交叉熵的方法给出了不同的结果: (1) 不好的结果 softmax = tf.nn.softm
其实,我正在coursera上做deeplearning.ai的作业“Art Generation with Neural Style Transfer”。在函数 compute_layer_styl
训练神经网络学习“异或” 我正在尝试使用“批量归一化”,我创建了一个批量归一化层函数“batch_norm1”。 import tensorflow as tf import nump
我正在尝试协调来自 TF“图形和 session ”指南以及 TF“Keras”指南和 TF Estimators 指南的信息。现在在前者中它说 tf.Session 使计算图能够访问物理硬件以执行图
我正在关注此处的多层感知器示例:https://github.com/aymericdamien/TensorFlow-Examples我对函数 tf.nn.softmax_cross_entropy
回到 TensorFlow = 2.0 中消失了。因此,像这样的解决方案...... with tf.variable_scope("foo"): with tf.variable_scope
我按照官方网站中的步骤安装了tensorflow。但是,在该网站中,作为安装的最后一步,他们给出了一行代码来“验证安装”。但他们没有告诉这段代码会给出什么输出。 该行是: python -c "imp
代码: x = tf.constant([1.,2.,3.], shape = (3,2,4)) y = tf.constant([1.,2.,3.], shape = (3,21,4)) tf.ma
我正在尝试从 Github 训练一个 3D 分割网络.我的模型是用 Keras (Python) 实现的,这是一个典型的 U-Net 模型。模型,总结如下, Model: "functional_3"
我正在使用 TensorFlow 2。我正在尝试优化一个函数,该函数使用经过训练的 tensorflow 模型(毒药)的损失。 @tf.function def totalloss(x): x
试图了解 keras 优化器中的 SGD 优化代码 (source code)。在 get_updates 模块中,我们有: # momentum shapes = [K.int_shape(p) f
我是一名优秀的程序员,十分优秀!