Click or drag to resize

Status Enumeration

https://www.emgu.com
Tensorflow lite status

Namespace:  Emgu.TF.Lite
Assembly:  Emgu.TF.Lite (in Emgu.TF.Lite.dll) Version: 2.16.1.1623+4bf999fc3b81f861a8c2aa1b11ce6bfb8f610804
Syntax
public enum Status
Members
  Member nameValueDescription
Ok0 Ok
Error1 Error
DelegateError2 Generally referring to an error from a TfLiteDelegate itself.
ApplicationError3 Generally referring to an error in applying a delegate due to incompatibility between runtime and delegate, e.g., this error is returned when trying to apply a TfLite delegate onto a model graph that's already immutable.
DelegateDataNotFound4 Generally referring to serialized delegate data not being found. See tflite::delegates::Serialization.
DelegateDataWriteError5 Generally referring to data-writing issues in delegate serialization. See tflite::delegates::Serialization.
See Also