tensorflow/lite/g3doc/api_docs/swift/Enums/InterpreterError.html
public enum InterpreterError : Error, Equatable, Hashable
extension InterpreterError: LocalizedError
extension InterpreterError: CustomStringConvertible
Errors thrown by the TensorFlow Lite Interpreter.
`
invalidTensorIndex(index:maxIndex:)
`
Undocumented
Swift
case invalidTensorIndex(index: Int, maxIndex: Int)
`
invalidTensorDataCount(provided:required:)
`
Undocumented
Swift
case invalidTensorDataCount(provided: Int, required: Int)
`
invalidTensorDataType
`
Undocumented
Swift
case invalidTensorDataType
`
failedToLoadModel
`
Undocumented
Swift
case failedToLoadModel
`
failedToCreateInterpreter
`
Undocumented
Swift
case failedToCreateInterpreter
`
failedToResizeInputTensor(index:)
`
Undocumented
Swift
case failedToResizeInputTensor(index: Int)
`
failedToCopyDataToInputTensor
`
Undocumented
Swift
case failedToCopyDataToInputTensor
`
failedToAllocateTensors
`
Undocumented
Swift
case failedToAllocateTensors
`
allocateTensorsRequired
`
Undocumented
Swift
case allocateTensorsRequired
`
invokeInterpreterRequired
`
Undocumented
Swift
case invokeInterpreterRequired
`
tensorFlowLiteError(_:)
`
Undocumented
Swift
case tensorFlowLiteError(String)
`
errorDescription
`
A localized description of the interpreter error.
Swift
public var errorDescription: String? { get }
`
description
`
A textual representation of the TensorFlow Lite interpreter error.
Swift
public var description: String { get }