在Windows中导出等效项以使用Tensorflow对象检测API

Raj*_*r.R 0 python tensorflow

我一直在尝试安装Tensorflow Object Detection API,我遇到了以下错误:

import error :no module named ' nets ' and the solution is by setting the python path like this :export PYTHONPATH=$PYTHONPATH:`pwd`:`pwd`/slim
Run Code Online (Sandbox Code Playgroud)

但在Windows中,这相当于什么呢?

Aja*_*jai 5

这应该工作:

set PYTHONPATH=$PYTHONPATH:`../tensorflow/model`:`../tensorflow/models/slim`
Run Code Online (Sandbox Code Playgroud)