- // Generally referring to data-reading issues in delegate serialization.
- // See tflite::delegates::Serialization.
- kTfLiteDelegateDataReadError = 6,
-
- // Generally referring to issues when the TF Lite model has ops that cannot be
- // resolved at runtime. This could happen when the specific op is not
- // registered or built with the TF Lite framework.
- kTfLiteUnresolvedOps = 7;
-
- // Types supported by tensor
- /** enum TfLiteType */
- public static final int
- kTfLiteNoType = 0,
- kTfLiteFloat32 = 1,
- kTfLiteInt32 = 2,
- kTfLiteUInt8 = 3,
- kTfLiteInt64 = 4,
- kTfLiteString = 5,
- kTfLiteBool = 6,
- kTfLiteInt16 = 7,
- kTfLiteComplex64 = 8,