我试图为一个变分自动编码器(VAE)编写一个自定义训练循环,它由两个独立的tf.keras.Model对象组成。VAE的目的是进行多类分类.通常,编码器模型的输出作为输入输入到解码器模型。解码器是一个循环译码器。同样,在VAE中还涉及两个损失函数:重建损失(分类交叉熵)和潜在损失。我当前架构的灵感是基于这个github上的pytorch实现。
Problem:每当我对解码器模型使用tape.gradient(loss, decoder.trainable_weights)计算梯度时,返回的列表中只有每个元素的NoneType对象。我认为我在使用reconstruction_tensor时犯了一些错误,这是我在下面编写的代码的底部。因为我需要迭代解码过程,所以在不返回渐变的reconstruction_tensor元素列表的情况下,如何使用类似的NoneType呢?如果愿意,可以使用此colab笔记本运行代码。
为了进一步阐明这个问题中的张量是什么样子,我将说明原始输入、将指定“令牌”的零张量,以及基于解码器预测的“令牌”的零张量的单个更新:
Example original input tensor of shape (batch_size, max_seq_length, num_classes):
_ _ _ _ _ _ _ _
| | 1 0 0 0 | | 0 1 0 0 | | 0 0 0 1 | |
| | 0 1 0 0 | | 1 0 0 0 | | 1 0 0 0 | |
|_ |_ 0 0 1 0 _| , |_ 0 0 0 1 _|, |_ 0 1 0 0 _| _|
Initial zeros tensor:
_ _ _ _ _ _ _ _
| | 0 0 0 0 | | 0 0 0 0 | | 0 0 0 0 | |
| | 0 0 0 0 | | 0 0 0 0 | | 0 0 0 0 | |
|_ |_ 0 0 0 0 _| , |_ 0 0 0 0 _|, |_ 0 0 0 0 _| _|
Example zeros tensor after a single iteration of the decoding loop:
_ _ _ _ _ _ _ _
| | 0.2 0.4 0.1 0.3 | | 0.1 0.2 0.6 0.1 | | 0.7 0.05 0.05 0.2 | |
| | 0 0 0 0 | | 0 0 0 0 | | 0 0 0 0 | |
|_ |_ 0 0 0 0 _| , |_ 0 0 0 0 _|, |_ 0 0 0 0 _| _|下面是再现问题的代码:
# Arbitrary data
batch_size = 3
max_seq_length = 3
num_classes = 4
original_inputs = tf.one_hot(tf.argmax((np.random.randn(batch_size, max_seq_length, num_classes)), axis=2), depth=num_classes)
latent_dims = 5 # Must be less than (max_seq_length * num_classes)
def sampling(inputs):
"""Reparametrization function. Used for Lambda layer"""
mus, log_vars = inputs
epsilon = tf.keras.backend.random_normal(shape=tf.keras.backend.shape(mus))
z = mus + tf.keras.backend.exp(log_vars/2) * epsilon
return z
def latent_loss_fxn(mus, log_vars):
"""Return latent loss for means and log variance."""
return -0.5 * tf.keras.backend.mean(1. + log_vars - tf.keras.backend.exp(log_vars) - tf.keras.backend.pow(mus, 2))
class DummyEncoder(tf.keras.Model):
def __init__(self, latent_dimension):
"""Define the hidden layer (bottleneck) and sampling layers"""
super().__init__()
self.hidden = tf.keras.layers.Dense(units=32)
self.dense_mus = tf.keras.layers.Dense(units=latent_dimension)
self.dense_log_vars = tf.keras.layers.Dense(units=latent_dimension)
self.sampling = tf.keras.layers.Lambda(function=sampling)
def call(self, inputs):
"""Define forward computation that outputs z, mu, log_var of input."""
dense_projection = self.hidden(inputs)
mus = self.dense_mus(dense_projection)
log_vars = self.dense_log_vars(dense_projection)
z = self.sampling([mus, log_vars])
return z, mus, log_vars
class DummyDecoder(tf.keras.Model):
def __init__(self, num_classes):
"""Define GRU layer and the Dense output layer"""
super().__init__()
self.gru = tf.keras.layers.GRU(units=1, return_sequences=True, return_state=True)
self.dense = tf.keras.layers.Dense(units=num_classes, activation='softmax')
def call(self, x, hidden_states=None):
"""Define forward computation"""
outputs, h_t = self.gru(x, hidden_states)
# The purpose of this computation is to use the unnormalized log
# probabilities from the GRU to produce normalized probabilities via
# the softmax activation function in the Dense layer
reconstructions = self.dense(outputs)
return reconstructions, h_t
# Instantiate the models
encoder_model = DummyEncoder(latent_dimension=5)
decoder_model = DummyDecoder(num_classes=num_classes)
# Instantiate reconstruction loss function
cce_loss_fxn = tf.keras.losses.CategoricalCrossentropy()
# Begin tape
with tf.GradientTape(persistent=True) as tape:
# Flatten the inputs for the encoder
reshaped_inputs = tf.reshape(original_inputs, shape=(tf.shape(original_inputs)[0], -1))
# Encode the input
z, mus, log_vars = encoder_model(reshaped_inputs, training=True)
# Expand dimensions of z so it meets recurrent decoder requirements of
# (batch, timesteps, features)
z = tf.expand_dims(z, axis=1)
################################
# SUSPECTED CAUSE OF PROBLEM
################################
# A tensor that will be modified based on model outputs
reconstruction_tensor = tf.Variable(tf.zeros_like(original_inputs))
################################
# END SUSPECTED CAUSE OF PROBLEM
################################
# A decoding loop to iteratively generate the next token (i.e., outputs)...
# in the sequence
hidden_states = None
for ith_token in range(max_seq_length):
# Reconstruct the ith_token for a given sample in the batch
reconstructions, hidden_states = decoder_model(z, hidden_states, training=True)
# Reshape the reconstructions to allow assigning to reconstruction_tensor
reconstructions = tf.squeeze(reconstructions)
# After the loop is done iterating, this tensor is the model's prediction of the
# original inputs. Therefore, after a single iteration of the loop,
# a single token prediction for each sample in the batch is assigned to
# this tensor.
reconstruction_tensor = reconstruction_tensor[:, ith_token,:].assign(reconstructions)
# Calculates losses
recon_loss = cce_loss_fxn(original_inputs, reconstruction_tensor)
latent_loss = latent_loss_fxn(mus, log_vars)
loss = recon_loss + latent_loss
# Calculate gradients
encoder_gradients = tape.gradient(loss, encoder_model.trainable_weights)
decoder_gradients = tape.gradient(loss, decoder_model.trainable_weights)
# Release tape
del tape
# Inspect gradients
print('Valid Encoder Gradients:', not(None in encoder_gradients))
print('Valid Decoder Gradients:', not(None in decoder_gradients), ' -- ', decoder_gradients)
>>> Valid Encoder Gradients: True
>>> Valid Decoder Gradients: False -- [None, None, None, None, None]发布于 2021-07-22 16:23:29
找到了解决我问题的方法:
tf.Variable在GradientTape()上下文管理器中的使用一定有问题。虽然我不知道这个问题是什么,但是通过将reconstructions_tensor替换为一个列表,并在解码迭代时附加到该列表中,然后再对列表进行堆叠,就可以不存在问题地计算梯度。colab笔记本电脑反映了这些变化。有关修补程序,请参见下面的代码段:
....
....
with tf.GradientTape(persistent=True) as tape:
....
....
# FIX
reconstructions_tensor = []
hidden_states = None
for ith_token in range(max_seq_length):
# Reconstruct the ith_token for a given sample in the batch
reconstructions, hidden_states = decoder_model(z, hidden_states, training=True)
# Reshape the reconstructions
reconstructions = tf.squeeze(reconstructions)
# FIX
# Appending to the list which will eventually be stacked
reconstructions_tensor.append(reconstructions)
# FIX
# Stack the reconstructions along axis=1 to get same result as previous assignment with zeros tensor
reconstructions_tensor = tf.stack(reconstructions_tensor, axis=1)
....
....
# Successful gradient computations and subsequent optimization of models
# ....编辑1:
如果一个模型可以在图形模式下运行,我不认为这个“解决方案”是理想的。我有限的理解是,图形模式不能很好地处理python对象,比如list。
https://stackoverflow.com/questions/68474451
复制相似问题