Created
August 16, 2018 17:44
-
-
Save 0x61726b/a51b8627bf40a54de73bd189049c4533 to your computer and use it in GitHub Desktop.
asdas
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
D:\Arken\Py\py_64_venv\Scripts\python.exe "D:\Program Files\JetBrains\PyCharm 2017.1.4\helpers\pydev\pydevd.py" --multiproc --qt-support --client 127.0.0.1 --port 52537 --file D:/Arken/Py/darkflow-master/src/test.py | |
pydev debugger: process 12044 is connecting | |
Connected to pydev debugger (build 171.4694.38) | |
Parsing ./cfg/yolov2.cfg | |
Parsing cfg/yolo.cfg | |
Loading yolov2.weights ... | |
Successfully identified 203934260 bytes | |
Finished in 0.03806471824645996s | |
Model has a coco model name, loading coco labels. | |
Building net ... | |
Source | Train? | Layer description | Output size | |
-------+--------+----------------------------------+--------------- | |
| | input | (?, 608, 608, 3) | |
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 608, 608, 32) | |
Load | Yep! | maxp 2x2p0_2 | (?, 304, 304, 32) | |
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 304, 304, 64) | |
Load | Yep! | maxp 2x2p0_2 | (?, 152, 152, 64) | |
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 152, 152, 128) | |
Load | Yep! | conv 1x1p0_1 +bnorm leaky | (?, 152, 152, 64) | |
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 152, 152, 128) | |
Load | Yep! | maxp 2x2p0_2 | (?, 76, 76, 128) | |
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 76, 76, 256) | |
Load | Yep! | conv 1x1p0_1 +bnorm leaky | (?, 76, 76, 128) | |
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 76, 76, 256) | |
Load | Yep! | maxp 2x2p0_2 | (?, 38, 38, 256) | |
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 38, 38, 512) | |
Load | Yep! | conv 1x1p0_1 +bnorm leaky | (?, 38, 38, 256) | |
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 38, 38, 512) | |
Load | Yep! | conv 1x1p0_1 +bnorm leaky | (?, 38, 38, 256) | |
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 38, 38, 512) | |
Load | Yep! | maxp 2x2p0_2 | (?, 19, 19, 512) | |
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 19, 19, 1024) | |
Load | Yep! | conv 1x1p0_1 +bnorm leaky | (?, 19, 19, 512) | |
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 19, 19, 1024) | |
Load | Yep! | conv 1x1p0_1 +bnorm leaky | (?, 19, 19, 512) | |
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 19, 19, 1024) | |
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 19, 19, 1024) | |
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 19, 19, 1024) | |
Load | Yep! | concat [16] | (?, 38, 38, 512) | |
Load | Yep! | conv 1x1p0_1 +bnorm leaky | (?, 38, 38, 64) | |
Load | Yep! | local flatten 2x2 | (?, 19, 19, 256) | |
Load | Yep! | concat [27, 24] | (?, 19, 19, 1280) | |
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 19, 19, 1024) | |
Load | Yep! | conv 1x1p0_1 linear | (?, 19, 19, 425) | |
-------+--------+----------------------------------+--------------- | |
Running entirely on CPU | |
2018-08-16 20:44:04.974037: I T:\src\github\tensorflow\tensorflow\core\platform\cpu_feature_guard.cc:141] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 | |
Finished in 10.890024423599243s | |
Traceback (most recent call last): | |
File "D:\Program Files\JetBrains\PyCharm 2017.1.4\helpers\pydev\pydevd.py", line 1591, in <module> | |
globals = debugger.run(setup['file'], None, None, is_module) | |
File "D:\Program Files\JetBrains\PyCharm 2017.1.4\helpers\pydev\pydevd.py", line 1018, in run | |
pydev_imports.execfile(file, globals, locals) # execute the script | |
File "D:\Program Files\JetBrains\PyCharm 2017.1.4\helpers\pydev\_pydev_imps\_pydev_execfile.py", line 18, in execfile | |
exec(compile(contents+"\n", file, 'exec'), glob, loc) | |
File "D:/Arken/Py/darkflow-master/src/test.py", line 20, in <module> | |
result = tfnet.return_predict(img) | |
File "D:\Arken\Py\darkflow-master\darkflow\net\flow.py", line 78, in return_predict | |
'Image is not a np.ndarray' | |
AssertionError: Image is not a np.ndarray | |
Backend TkAgg is interactive backend. Turning interactive mode on. | |
Process finished with exit code 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment