TensorFlow使用目标检测模型的问题

TensorFlow使用目标检测模型的问题

flyfish

环境:Anaconda
python3.6

缺少库
absl-py
kears

启动Anaconda
执行命令 anaconda-navigator
使用Anaconda界面操作安装库

测试命令
models/research$

python object_detection/builders/model_builder_test.py

安装了Keras 仍然有错误
AttributeError: module ‘tensorflow’ has no attribute ‘keras’
需要升级tensorflow

pip install -U tensorflow

执行命令的目录

export PYTHONPATH=$PYTHONPATH:`pwd`:`pwd`/slim

protoc object_detection/protos/*.proto --python_out=.

需要进入models/research目录执行

你可能感兴趣的:(深度学习)