gpt4 book ai didi

python - 实例化 tf.test.TestCase 时出现 test_session 弃用警告

转载 作者:行者123 更新时间:2023-11-28 20:35:26 24 4
gpt4 key购买 nike

我知道test_session is deprecated in tensorflow 1.13 :

Warning: THIS FUNCTION IS DEPRECATED. It will be removed in a future version. Instructions for updating: Use self.session() or self.cached_session() instead.

我通过仅继承 tf.test.TestCase 创建了一个单元测试(据我所知,它没有被弃用?)。我很小心,没有明确调用 test_session:

class TestModelFn(tf.test.TestCase):

def test_nothing(self):
pass

但是,当我运行这个测试时,我看到了:

test_nothing (the_thing.test.objective.cost_based.test_model.TestModelFn) ... ok
test_session (the_thing.test.objective.cost_based.test_model.TestModelFn)
Use cached_session instead. (deprecated) ... skipped 'Not a test.'

为什么会这样?我正在使用 tensorflow 1.13.1

最佳答案

发生这种情况是因为 test_session 被命名为测试方法,因此您的测试运行器将尝试运行它触发弃用警告和 'Not a test'信息。

关于python - 实例化 tf.test.TestCase 时出现 test_session 弃用警告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55895269/

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