我在哪里可以找到有关为验证 Tenserflow 对象检测的功能而进行的测试的更多信息 API

Where can I find more information about the tests made to verify the functionality of the Tenserflow Object Detection API

我在学校的一个小组项目中,我们目前正在使用 tensorflow object detection API。对象检测效果很好,但我们对 API 的开发人员如何测试它非常感兴趣。是否有人为该项目做出了贡献或知道我在哪里可以找到有关测试的更多信息?

是的,API 已经过良好测试。

您可以在python同级同名+后缀“_test”的文件中找到每个模块的测试

例如模块:

https://github.com/tensorflow/models/blob/master/research/object_detection/model_lib.py

测试时间:

https://github.com/tensorflow/models/blob/master/research/object_detection/model_lib_test.py