Advertisement
Guest User

Untitled

a guest
Dec 18th, 2020
271
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. PS C:\Projekte\yolo-v3-master> python detect.py images 0.5 0.6 samples_source/2person.jpg
  2. 2020-12-18 17:41:08.938946: W tensorflow/stream_executor/platform/default/dso_loader.cc:60] Could not load dynamic library 'cudart64_110.dll'; dlerror: cudart64_110.dll not found
  3. 2020-12-18 17:41:08.945683: I tensorflow/stream_executor/cuda/cudart_stub.cc:29] Ignore above cudart dlerror if you do not have a GPU set up on your machine.
  4. 2020-12-18 17:41:18.865479: I tensorflow/compiler/jit/xla_cpu_device.cc:41] Not creating XLA devices, tf_xla_enable_xla_devices not set
  5. 2020-12-18 17:41:18.984190: I tensorflow/stream_executor/platform/default/dso_loader.cc:49] Successfully opened dynamic library nvcuda.dll
  6. 2020-12-18 17:41:19.908280: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1720] Found device 0 with properties:
  7. pciBusID: 0000:01:00.0 name: Quadro M1000M computeCapability: 5.0
  8. coreClock: 1.0715GHz coreCount: 4 deviceMemorySize: 2.00GiB deviceMemoryBandwidth: 74.65GiB/s
  9. 2020-12-18 17:41:19.919637: W tensorflow/stream_executor/platform/default/dso_loader.cc:60] Could not load dynamic library 'cudart64_110.dll'; dlerror: cudart64_110.dll not found
  10. 2020-12-18 17:41:19.924839: W tensorflow/stream_executor/platform/default/dso_loader.cc:60] Could not load dynamic library 'cublas64_11.dll'; dlerror: cublas64_11.dll not found
  11. 2020-12-18 17:41:19.935016: W tensorflow/stream_executor/platform/default/dso_loader.cc:60] Could not load dynamic library 'cublasLt64_11.dll'; dlerror: cublasLt64_11.dll not found
  12. 2020-12-18 17:41:19.942377: W tensorflow/stream_executor/platform/default/dso_loader.cc:60] Could not load dynamic library 'cufft64_10.dll'; dlerror: cufft64_10.dll not found
  13. 2020-12-18 17:41:19.958042: W tensorflow/stream_executor/platform/default/dso_loader.cc:60] Could not load dynamic library 'curand64_10.dll'; dlerror: curand64_10.dll not found
  14. 2020-12-18 17:41:19.973101: W tensorflow/stream_executor/platform/default/dso_loader.cc:60] Could not load dynamic library 'cusolver64_10.dll'; dlerror: cusolver64_10.dll not found
  15. 2020-12-18 17:41:19.982206: W tensorflow/stream_executor/platform/default/dso_loader.cc:60] Could not load dynamic library 'cusparse64_11.dll'; dlerror: cusparse64_11.dll not found
  16. 2020-12-18 17:41:19.997208: W tensorflow/stream_executor/platform/default/dso_loader.cc:60] Could not load dynamic library 'cudnn64_8.dll'; dlerror: cudnn64_8.dll not found
  17. 2020-12-18 17:41:20.002890: W tensorflow/core/common_runtime/gpu/gpu_device.cc:1757] Cannot dlopen some GPU libraries. Please make sure the missing libraries mentioned above are installed properly if you would like to use GPU. Follow the guide at https://www.tensorflow.org/install/gpu for how to download and setup the required libraries for your platform.
  18. Skipping registering GPU devices...
  19. 2020-12-18 17:41:20.033368: I tensorflow/core/platform/cpu_feature_guard.cc:142] This TensorFlow binary is optimized with oneAPI Deep Neural Network Library (oneDNN) to use the following CPU instructions in performance-critical operations:  AVX2
  20. To enable them in other operations, rebuild TensorFlow with the appropriate compiler flags.
  21. 2020-12-18 17:41:20.046217: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1261] Device interconnect StreamExecutor with strength 1 edge matrix:
  22. 2020-12-18 17:41:20.056307: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1267]
  23. 2020-12-18 17:41:20.069136: I tensorflow/compiler/jit/xla_gpu_device.cc:99] Not creating XLA devices, tf_xla_enable_xla_devices not set
  24. 2020-12-18 17:41:20.160534: I tensorflow/compiler/mlir/mlir_graph_optimization_pass.cc:196] None of the MLIR optimization passes are enabled (registered 0 passes)
  25. Traceback (most recent call last):
  26.   File "C:\SDKs etc\Python 3.8\lib\site-packages\tensorflow\python\client\session.py", line 1375, in _do_call
  27.     return fn(*args)
  28.   File "C:\SDKs etc\Python 3.8\lib\site-packages\tensorflow\python\client\session.py", line 1359, in _run_fn
  29.     return self._call_tf_sessionrun(options, feed_dict, fetch_list,
  30.   File "C:\SDKs etc\Python 3.8\lib\site-packages\tensorflow\python\client\session.py", line 1451, in _call_tf_sessionrun
  31.     return tf_session.TF_SessionRun_wrapper(self._session, options, feed_dict,
  32. tensorflow.python.framework.errors_impl.UnimplementedError: The Conv2D op currently only supports the NHWC tensor format on the CPU. The op was given the format: NCHW
  33.          [[{{node yolo_v3_model/conv2d/Conv2D}}]]
  34.  
  35. During handling of the above exception, another exception occurred:
  36.  
  37. Traceback (most recent call last):
  38.   File "detect.py", line 146, in <module>
  39.     main(sys.argv[1], float(sys.argv[2]), float(sys.argv[3]), sys.argv[4:])
  40.   File "detect.py", line 47, in main
  41.     detection_result = sess.run(detections, feed_dict={inputs: batch})
  42.   File "C:\SDKs etc\Python 3.8\lib\site-packages\tensorflow\python\client\session.py", line 967, in run
  43.     result = self._run(None, fetches, feed_dict, options_ptr,
  44.   File "C:\SDKs etc\Python 3.8\lib\site-packages\tensorflow\python\client\session.py", line 1190, in _run
  45.     results = self._do_run(handle, final_targets, final_fetches,
  46.   File "C:\SDKs etc\Python 3.8\lib\site-packages\tensorflow\python\client\session.py", line 1368, in _do_run
  47.     return self._do_call(_run_fn, feeds, fetches, targets, options,
  48.   File "C:\SDKs etc\Python 3.8\lib\site-packages\tensorflow\python\client\session.py", line 1394, in _do_call
  49.     raise type(e)(node_def, op, message)
  50. tensorflow.python.framework.errors_impl.UnimplementedError: The Conv2D op currently only supports the NHWC tensor format on the CPU. The op was given the format: NCHW
  51.          [[node yolo_v3_model/conv2d/Conv2D (defined at C:\Projekte\yolo-v3-master\yolo_v3.py:52) ]]
  52.  
  53. Errors may have originated from an input operation.
  54. Input Source operations connected to node yolo_v3_model/conv2d/Conv2D:
  55.  yolo_v3_model/truediv (defined at C:\Projekte\yolo-v3-master\yolo_v3.py:360)
  56.  
  57. Original stack trace for 'yolo_v3_model/conv2d/Conv2D':
  58.   File "detect.py", line 146, in <module>
  59.     main(sys.argv[1], float(sys.argv[2]), float(sys.argv[3]), sys.argv[4:])
  60.   File "detect.py", line 42, in main
  61.     detections = model(inputs, training=False)
  62.   File "C:\Projekte\yolo-v3-master\yolo_v3.py", line 362, in __call__
  63.     route1, route2, inputs = darknet53(inputs, training=training,
  64.   File "C:\Projekte\yolo-v3-master\yolo_v3.py", line 82, in darknet53
  65.     inputs = conv2d_fixed_padding(inputs, filters=32, kernel_size=3,
  66.   File "C:\Projekte\yolo-v3-master\yolo_v3.py", line 52, in conv2d_fixed_padding
  67.     return tf.keras.layers.Conv2D(
  68.   File "C:\SDKs etc\Python 3.8\lib\site-packages\tensorflow\python\keras\engine\base_layer_v1.py", line 786, in __call__
  69.     outputs = call_fn(cast_inputs, *args, **kwargs)
  70.   File "C:\SDKs etc\Python 3.8\lib\site-packages\tensorflow\python\keras\layers\convolutional.py", line 248, in call
  71.     outputs = self._convolution_op(inputs, self.kernel)
  72.   File "C:\SDKs etc\Python 3.8\lib\site-packages\tensorflow\python\util\dispatch.py", line 201, in wrapper
  73.     return target(*args, **kwargs)
  74.   File "C:\SDKs etc\Python 3.8\lib\site-packages\tensorflow\python\ops\nn_ops.py", line 1013, in convolution_v2
  75.     return convolution_internal(
  76.   File "C:\SDKs etc\Python 3.8\lib\site-packages\tensorflow\python\ops\nn_ops.py", line 1143, in convolution_internal
  77.     return op(
  78.   File "C:\SDKs etc\Python 3.8\lib\site-packages\tensorflow\python\ops\nn_ops.py", line 2597, in _conv2d_expanded_batch
  79.     return gen_nn_ops.conv2d(
  80.   File "C:\SDKs etc\Python 3.8\lib\site-packages\tensorflow\python\ops\gen_nn_ops.py", line 968, in conv2d
  81.     _, _, _op, _outputs = _op_def_library._apply_op_helper(
  82.   File "C:\SDKs etc\Python 3.8\lib\site-packages\tensorflow\python\framework\op_def_library.py", line 748, in _apply_op_helper
  83.     op = g._create_op_internal(op_type_name, inputs, dtypes=None,
  84.   File "C:\SDKs etc\Python 3.8\lib\site-packages\tensorflow\python\framework\ops.py", line 3528, in _create_op_internal
  85.     ret = Operation(
  86.   File "C:\SDKs etc\Python 3.8\lib\site-packages\tensorflow\python\framework\ops.py", line 1990, in __init__
  87.     self._traceback = tf_stack.extract_stack()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement