1 Star 0 Fork 0

gvraky/faster-rcnn.pytorch

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
_init_paths.py 312 Bytes
一键复制 编辑 原始数据 按行查看 历史
jiasen 提交于 2017-08-23 15:43 . add train,test
import os.path as osp
import sys
def add_path(path):
if path not in sys.path:
sys.path.insert(0, path)
this_dir = osp.dirname(__file__)
# Add lib to PYTHONPATH
lib_path = osp.join(this_dir, 'lib')
add_path(lib_path)
coco_path = osp.join(this_dir, 'data', 'coco', 'PythonAPI')
add_path(coco_path)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/gvraky/faster-rcnn.pytorch.git
git@gitee.com:gvraky/faster-rcnn.pytorch.git
gvraky
faster-rcnn.pytorch
faster-rcnn.pytorch
master

搜索帮助