@tf.function ValueError: Creating variables on a non-first call to a function decorated with tf.function, unable to understand behaviour

@tf.function ValueError: Creating variables on a non-first call to a function decorated with tf.function, unable to understand behaviour

我想知道为什么这个功能:

@tf.function
def train(self,TargetNet,epsilon):
    if len(self.experience['s']) < self.min_experiences:
        return 0
    ids=np.random.randint(low=0,high=len(self.replay_buffer['s']),size=self.batch_size)
    states=np.asarray([self.experience['s'][i] for i in ids])
    actions=np.asarray([self.experience['a'][i] for i in ids])
    rewards=np.asarray([self.experience['r'][i] for i in ids])
    next_states=np.asarray([self.experience['s1'][i] for i in ids])
    dones = np.asarray([self.experience['done'][i] for i in ids])
    q_next_actions=self.get_action(next_states,epsilon)
    q_value_next=TargetNet.predict(next_states)
    q_value_next=tf.gather_nd(q_value_next,tf.stack((tf.range(self.batch_size),q_next_actions),axis=1))
    targets=tf.where(dones, rewards, rewards+self.gamma*q_value_next)

    with tf.GradientTape() as tape:
        estimates=tf.math.reduce_sum(self.predict(states)*tf.one_hot(actions,self.num_actions),axis=1)
        loss=tf.math.reduce_sum(tf.square(estimates - targets))
    variables=self.model.trainable_variables
    gradients=tape.gradient(loss,variables)
    self.optimizer.apply_gradients(zip(gradients,variables))

给出 ValueError:在非首次调用用 tf.function 修饰的函数时创建变量。 而这段代码非常相似:

@tf.function
def train(self, TargetNet):
    if len(self.experience['s']) < self.min_experiences:
        return 0
    ids = np.random.randint(low=0, high=len(self.experience['s']), size=self.batch_size)
    states = np.asarray([self.experience['s'][i] for i in ids])
    actions = np.asarray([self.experience['a'][i] for i in ids])
    rewards = np.asarray([self.experience['r'][i] for i in ids])
    states_next = np.asarray([self.experience['s2'][i] for i in ids])
    dones = np.asarray([self.experience['done'][i] for i in ids])
    value_next = np.max(TargetNet.predict(states_next), axis=1)
    actual_values = np.where(dones, rewards, rewards+self.gamma*value_next)

    with tf.GradientTape() as tape:
        selected_action_values = tf.math.reduce_sum(
            self.predict(states) * tf.one_hot(actions, self.num_actions), axis=1)
        loss = tf.math.reduce_sum(tf.square(actual_values - selected_action_values))
    variables = self.model.trainable_variables
    gradients = tape.gradient(loss, variables)
    self.optimizer.apply_gradients(zip(gradients, variables))

不抛出 error.Please 帮助我理解原因。

编辑:我从函数中删除了参数 epsilon,它 works.Is 因为 @tf.function 装饰器仅对单参数函数有效?

使用 tf.function 您正在转换装饰函数的内容:这意味着 TensorFlow 将尝试将您的热切代码编译成它的图形表示。

然而,变量是特殊对象。事实上,当您使用 TensorFlow 1.x(图形模式)时,您只定义了一次变量,然后 using/updating 它们。

在 tensorflow 2.0 中,如果你使用纯粹的急切执行,你可以多次声明和重复使用同一个变量,因为 tf.Variable - 在急切模式下 - 只是一个普通的 Python函数结束后立即销毁的对象,因此变量超出范围。

为了使 TensorFlow 能够正确转换创建状态(因此使用变量)的函数,您必须打破函数作用域,在函数外部声明变量。

简而言之,如果您有一个函数可以在 eager 模式下正常工作,例如:

def f():
    a = tf.constant([[10,10],[11.,1.]])
    x = tf.constant([[1.,0.],[0.,1.]])
    b = tf.Variable(12.)
    y = tf.matmul(a, x) + b
    return y

您必须将其结构更改为:

b = None

@tf.function
def f():
    a = tf.constant([[10, 10], [11., 1.]])
    x = tf.constant([[1., 0.], [0., 1.]])
    global b
    if b is None:
        b = tf.Variable(12.)
    y = tf.matmul(a, x) + b
    print("PRINT: ", y)
    tf.print("TF-PRINT: ", y)
    return y

f()

为了使其与 tf.function 装饰器一起正常工作。

我在几篇博文中介绍了这种(和其他)场景:第一部分在 Handling states breaking the function scope 部分分析了这种行为(但是我建议从头开始阅读,并阅读第 2 部分和第 3 部分).