Closed stevecheckoway closed 2 years ago
The super() calls are using the wrong class name. By doing this, they're skipping the __init__() for the actual super class.
super()
__init__()
This breaks calling predict() because self.lock has not been assigned.
predict()
self.lock
The change for the tflite backend has been tested. The change for onnx has not been tested, but seems correct.
tflite
onnx
The
super()
calls are using the wrong class name. By doing this, they're skipping the__init__()
for the actual super class.This breaks calling
predict()
becauseself.lock
has not been assigned.The change for the
tflite
backend has been tested. The change foronnx
has not been tested, but seems correct.