llSourcell / YOLO_Object_Detection

This is the code for "YOLO Object Detection" by Siraj Raval on Youtube
GNU General Public License v3.0
1.73k stars 797 forks source link

import tensorflow as tf #4

Closed cclauss closed 5 years ago

cclauss commented 6 years ago

tf is used throughout this file but it is never imported.

PandaWhoCodes commented 6 years ago

I don't think it's required, since this code is imported darkflow/net/framework.py and then initialized by the constructor So the individual file might throw you an error but while running the module it should work just fine

cclauss commented 6 years ago

"Explicit is better than implicit." -- line two of the Zen of Python (PEP 20)

PandaWhoCodes commented 6 years ago

Well said.