object-detection-api

Tensorflow Object Detection API on Windows - error “ModuleNotFoundError: No module named 'utils'”

夙愿已清 提交于 2019-11-30 07:28:31
问题 I'm attempting to get the TensorFlow Object Detection API https://github.com/tensorflow/models/tree/master/research/object_detection working on Windows by following the install instructions https://github.com/tensorflow/models/tree/master/research/object_detection Which seem to be for Linux/Mac. I can only get this to work if I put a script in the directory I cloned the above repo to. If I put the script in any other directory I get this error: ModuleNotFoundError: No module named 'utils' I

Estimator's model_fn includes params argument, but params are not passed to Estimator

前提是你 提交于 2019-11-30 04:54:56
问题 I'm trying to run Object Detection API locally. I believe I have everything set up as described in the TensorFlow Object Detection API documents, however, when I'm trying to run model_main.py, this warning shows and model doesn't train. (I can't really tell if model is training or not, because the process isn't terminated, but no further logs appear) WARNING:tensorflow:Estimator's model_fn (.model_fn at 0x0000024BDBB3D158>) includes params argument, but params are not passed to Estimator. The