当前位置:  开发笔记 > 编程语言 > 正文

运行Tensorflow单元测试

如何解决《运行Tensorflow单元测试》经验,为你挑选了1个好方法。

有没有办法手动运行Tensorflow单元测试?我想在修改TF源代码时执行完整性检查.

我看到有很多_test.py文件,其中的类执行许多测试操作,我无法弄清楚如何运行它们.应该有一个简单的方法吗?



1> mrry..:

假设您从Git下载了源代码,运行TensorFlow单元测试的最简单方法是使用Bazel :

# All tests (for C++ changes).
$ bazel test //tensorflow/...

# All Python tests (for Python front-end changes).
$ bazel test //tensorflow/python/...

# All tests (with GPU support).
$ bazel test -c opt --config=cuda //tensorflow/...
$ bazel test -c opt --config=cuda //tensorflow/python/...


`bazel test // tensorflow/core:ops_array_ops_test`
推荐阅读
Chloemw
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有