Click or drag to resize

Status Enumeration

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

Namespace:  Emgu.TF.Lite
Assembly:  Emgu.TF.Lite.Netstandard (in Emgu.TF.Lite.Netstandard.dll) Version: 2.8.0.1418
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