gpt4 book ai didi

python - 如何使用 learning_phase 在 TF 2.3 Eager 中获得中间输出?

转载 作者:行者123 更新时间:2023-12-01 21:24:42 26 4
gpt4 key购买 nike

下面的示例适用于 2.2; K.function 在 2.3 中发生了显着变化,now building Eager execution 中的 Model,所以我们传递 Model(inputs=[learning_phase,...])

我确实有一个变通办法,但它很老套,而且比 K.function 复杂得多;如果没有人能展示一个简单的方法,我会发布我的。


from tensorflow.keras.layers import Input, Dense
from tensorflow.keras.models import Model
from tensorflow.python.keras import backend as K
import numpy as np

ipt = Input((16,))
x = Dense(16)(ipt)
out = Dense(16)(x)
model = Model(ipt, out)
model.compile('sgd', 'mse')

outs_fn = K.function([model.input, K.symbolic_learning_phase()],
[model.layers[1].output]) # error
x = np.random.randn(32, 16)
print(outs_fn([x, True]))
>>> ValueError: Input tensors to a Functional must come from `tf.keras.Input`. 
Received: Tensor("keras_learning_phase:0", shape=(), dtype=bool)
(missing previous layer metadata).

最佳答案

为了在急切模式下获取中间层的输出,没有必要构建K.function 并使用学习阶段。相反,我们可以构建一个模型来实现这一点:

partial_model = Model(model.inputs, model.layers[1].output)

x = np.random.rand(...)
output_train = partial_model([x], training=True) # runs the model in training mode
output_test = partial_model([x], training=False) # runs the model in test mode

或者,如果您坚持使用 K.function 并想在急切模式下切换学习阶段,您可以使用 tensorflow.python.keras 中的 eager_learning_phase_scope .backend(请注意,此模块是 tensorflow.keras.backend 的超集,并包含内部功能,例如提到的功能,可能会在未来版本中更改):

from tensorflow.python.keras.backend import eager_learning_phase_scope

fn = K.function([model.input], [model.layers[1].output])

# run in test mode, i.e. 0 means test
with eager_learning_phase_scope(value=0):
output_test = fn([x])

# run in training mode, i.e. 1 means training
with eager_learning_phase_scope(value=1):
output_train = fn([x])

关于python - 如何使用 learning_phase 在 TF 2.3 Eager 中获得中间输出?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63238203/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com