We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Steps to Reproduce
$ python3 bnpipeline.py --pipeline-config /etc/dyda/pipelines/configs/object_detection_and_tracking_aikea.config --disable-warmup -vvv --debug
$ python3 camera-ces-with-roi-v2.py --stream-src rtsp://192.168.1.1:8080/video/h264 --fps 2 --debug
I added exception handling in bnpipeline.py, and got the exception
bnpipeline.py
[W 200719 12:23:52 bnpipeline:74] 'Interpreter' object has no attribute 'set_num_threads'
Environment
2.2.0
The text was updated successfully, but these errors were encountered:
Paul also met this issue when implementing the BerryNet YOLOv4 engine.
We suspect that this is caused by TensorFlow API change (1.x -> 2.x) and are checking it.
The set_num_threads method disappears from tf.lite.Interpreter.
set_num_threads
tf.lite.Interpreter
https://www.tensorflow.org/api_docs/python/tf/lite/Interpreter
Confirmed that it's a TensorFlow issue.
PINTO0309/Tensorflow-bin#22
The Python API of SetNumThreads is not available in current TF. The community's patch has been accepted, and this issue should be fixed in the future.
SetNumThreads
Sorry, something went wrong.
No branches or pull requests
Steps to Reproduce
I added exception handling in
bnpipeline.py
, and got the exceptionEnvironment
2.2.0
The text was updated successfully, but these errors were encountered: