gpt4 book ai didi

python - 值错误 : Could not find matching function to call loaded from the SavedModel

转载 作者:太空宇宙 更新时间:2023-11-04 01:52:58 25 4
gpt4 key购买 nike

我正在尝试加载我通过保存的 tf-agents 策略

try:
PolicySaver(collect_policy).save(model_dir + 'collect_policy')
except TypeError:
tf.saved_model.save(collect_policy, model_dir + 'collect_policy')

try/except block 的快速解释:最初创建策略时,我可以通过 PolicySaver 保存它,但是当我再次加载它以进行另一次训练时,它是一个 SavedModel 因此不能被 PolicySaver 保存。

这似乎工作正常,但现在我想使用这个策略进行 self 播放,所以我在我的 AIPlayer 中使用 self.policy = tf.saved_model.load(policy_path) 加载策略类(class)。但是,当我尝试使用它进行预测时,它不起作用。这是(测试)代码:

def decide(self, table):
state = table.getState()
timestep = ts.restart(np.array([table.getState()], dtype=np.float))
prediction = self.policy.action(timestep)
print(prediction)

传入函数的 table 包含游戏状态,ts.restart() 函数是从我的自定义 pyEnvironment 中复制的,因此时间步构造为与在环境中完全相同的方式。但是,我收到以下行的错误消息 prediction=self.policy.action(timestep):

ValueError: Could not find matching function to call loaded from the SavedModel. Got:
Positional arguments (2 total):
* TimeStep(step_type=<tf.Tensor 'time_step:0' shape=() dtype=int32>, reward=<tf.Tensor 'time_step_1:0' shape=() dtype=float32>, discount=<tf.Tensor 'time_step_2:0' shape=() dtype=float32>, observation=<tf.Tensor 'time_step_3:0' shape=(1, 79) dtype=float64>)
* ()
Keyword arguments: {}

Expected these arguments to match one of the following 2 option(s):

Option 1:
Positional arguments (2 total):
* TimeStep(step_type=TensorSpec(shape=(None,), dtype=tf.int32, name='time_step/step_type'), reward=TensorSpec(shape=(None,), dtype=tf.float32, name='time_step/reward'), discount=TensorSpec(shape=(None,), dtype=tf.float32, name='time_step/discount'), observation=TensorSpec(shape=(None,
79), dtype=tf.float64, name='time_step/observation'))
* ()
Keyword arguments: {}

Option 2:
Positional arguments (2 total):
* TimeStep(step_type=TensorSpec(shape=(None,), dtype=tf.int32, name='step_type'), reward=TensorSpec(shape=(None,), dtype=tf.float32, name='reward'), discount=TensorSpec(shape=(None,), dtype=tf.float32, name='discount'), observation=TensorSpec(shape=(None, 79), dtype=tf.float64, name='observation'))
* ()
Keyword arguments: {}

我做错了什么?问题真的只是张量名称还是形状?我该如何更改?

任何关于如何进一步调试它的想法都将受到赞赏。

最佳答案

我通过手动构建 TimeStep 让它工作:

    step_type = tf.convert_to_tensor(
[0], dtype=tf.int32, name='step_type')
reward = tf.convert_to_tensor(
[0], dtype=tf.float32, name='reward')
discount = tf.convert_to_tensor(
[1], dtype=tf.float32, name='discount')
observations = tf.convert_to_tensor(
[state], dtype=tf.float64, name='observations')
timestep = ts.TimeStep(step_type, reward, discount, observations)
prediction = self.policy.action(timestep)

关于python - 值错误 : Could not find matching function to call loaded from the SavedModel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57565249/

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