作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在 tensorflow 2.0 版中构建模型(由于与我的 cuda 版本兼容,因此无法升级,我无权更改)。我正在使用 tf.strategy.MirroredStrategy()
在 2 个 GPU 上训练我的模型。但是,我正在尝试实例化一个自定义密集层,其权重是不同密集层权重的转置。我的代码涉及这一行来构建自定义层:
from tensorflow.keras import backend as K
class DenseTied(Layer):
# Really long class, full code can be found at link below
def build(self, input_shape):
self.kernel = K.transpose(self.tied_to.kernel)
然后我在模型中使用它,如下所示:
from tensorflow.keras.layers import Input, Dense
def build_model(input_shape):
model_input = Input(shape=input_shape)
dense1 = Dense(6144, activation='relu')
dense_tied1 = DenseTied(49152, tied_to=dense1)
x = dense1(model_input)
model_output = dense_tied1(x)
model = Model(model_input, model_output)
model.compile(optimizer='adam', loss='mse')
return model
尝试构建此模型时出现错误:
AttributeError: 'tensorflow.python.framework.ops.EagerTensor' object has no attribute '_distribute_strategy'
.
self.kernel = K.transpose(self.tied_to.kernel)
看来
self.tied_to.kernel
是
<class 'tensorflow.python.distribute.values.MirroredVariable'>
类型但在调用
K.transpose()
之后在其上,结果输出的类型为
<class 'tensorflow.python.framework.ops.EagerTensor'>
.我尝试按照说明
here但它没有用。我得到
AttributeError: 'MirroredStrategy' object has no attribute 'run'
当它在文档中时。所以我想也许我的 Tensorflow 版本对于那种方法来说太旧了。
最佳答案
截至目前,该文档适用于 tensorflow 2.3。如果您使用的是 2.0,则应该是strategy.experimental_run_v2
而不是 strategy.run
.
关于python - 如何更新 tensorflow 2.0 中的镜像变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64508360/
我是一名优秀的程序员,十分优秀!