aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/lite/experimental/objc/apis
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/contrib/lite/experimental/objc/apis')
-rw-r--r--tensorflow/contrib/lite/experimental/objc/apis/TFLInterpreter.h188
-rw-r--r--tensorflow/contrib/lite/experimental/objc/apis/TFLInterpreterOptions.h37
-rw-r--r--tensorflow/contrib/lite/experimental/objc/apis/TFLQuantizationParameters.h36
-rw-r--r--tensorflow/contrib/lite/experimental/objc/apis/TFLTensor.h77
4 files changed, 0 insertions, 338 deletions
diff --git a/tensorflow/contrib/lite/experimental/objc/apis/TFLInterpreter.h b/tensorflow/contrib/lite/experimental/objc/apis/TFLInterpreter.h
deleted file mode 100644
index c07ffc06ff..0000000000
--- a/tensorflow/contrib/lite/experimental/objc/apis/TFLInterpreter.h
+++ /dev/null
@@ -1,188 +0,0 @@
-// Copyright 2018 Google Inc. All rights reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at:
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-#import <Foundation/Foundation.h>
-
-@class TFLInterpreterOptions;
-@class TFLTensor;
-
-NS_ASSUME_NONNULL_BEGIN
-
-/**
- * @enum TFLInterpreterErrorCode
- * This enum specifies various error codes related to `TFLInterpreter`.
- */
-typedef NS_ENUM(NSUInteger, TFLInterpreterErrorCode) {
- /** Provided tensor index is invalid. */
- TFLInterpreterErrorCodeInvalidTensorIndex,
-
- /** Input data has invalid byte size. */
- TFLInterpreterErrorCodeInvalidInputByteSize,
-
- /** Provided shape is invalid. It must be a non-empty array of positive unsigned integers. */
- TFLInterpreterErrorCodeInvalidShape,
-
- /** Provided model cannot be loaded. */
- TFLInterpreterErrorCodeFailedToLoadModel,
-
- /** Failed to create `TFLInterpreter`. */
- TFLInterpreterErrorCodeFailedToCreateInterpreter,
-
- /** Failed to invoke `TFLInterpreter`. */
- TFLInterpreterErrorCodeFailedToInvoke,
-
- /** Failed to retrieve a tensor. */
- TFLInterpreterErrorCodeFailedToGetTensor,
-
- /** Failed to resize an input tensor. */
- TFLInterpreterErrorCodeFailedToResizeInputTensor,
-
- /** Failed to copy data into an input tensor. */
- TFLInterpreterErrorCodeFailedToCopyDataToInputTensor,
-
- /** Failed to get data from an output tensor. */
- TFLInterpreterErrorCodeFailedToGetDataFromOutputTensor,
-
- /** Failed to allocate memory for tensors. */
- TFLInterpreterErrorCodeFailedToAllocateTensors,
-
- /** Operaton not allowed without allocating memory for tensors first. */
- TFLInterpreterErrorCodeAllocateTensorsRequired,
-
- /** Operaton not allowed without invoking the interpreter first. */
- TFLInterpreterErrorCodeInvokeInterpreterRequired,
-};
-
-/**
- * A TensorFlow Lite model interpreter.
- */
-@interface TFLInterpreter : NSObject
-
-/** The total number of input tensors. 0 if the interpreter creation failed. */
-@property(nonatomic, readonly) NSUInteger inputTensorCount;
-
-/** The total number of output tensors. 0 if the interpreter creation failed. */
-@property(nonatomic, readonly) NSUInteger outputTensorCount;
-
-/** Unavailable. */
-- (instancetype)init NS_UNAVAILABLE;
-
-/**
- * Initializes a new TensorFlow Lite interpreter instance with the given model file path and the
- * default interpreter options.
- *
- * @param modelPath An absolute path to a TensorFlow Lite model file stored locally on the device.
- *
- * @return A new instance of `TFLInterpreter` with the given model and the default interpreter
- * options.
- */
-- (instancetype)initWithModelPath:(NSString *)modelPath;
-
-/**
- * Initializes a new TensorFlow Lite interpreter instance with the given model file path and
- * options.
- *
- * @param modelPath An absolute path to a TensorFlow Lite model file stored locally on the device.
- * @param options Options to use for configuring the TensorFlow Lite interpreter.
- *
- * @return A new instance of `TFLInterpreter` with the given model and options.
- */
-- (instancetype)initWithModelPath:(NSString *)modelPath
- options:(TFLInterpreterOptions *)options NS_DESIGNATED_INITIALIZER;
-
-/**
- * Invokes the interpreter to run inference.
- *
- * @param error An optional error parameter populated when there is an error in invoking the
- * interpreter.
- *
- * @return Whether the invocation is successful. Returns NO if an error occurred.
- */
-- (BOOL)invokeWithError:(NSError **)error;
-
-/**
- * Returns the input tensor at the given index.
- *
- * @param index The index of an input tensor.
- * @param error An optional error parameter populated when there is an error in looking up the input
- * tensor.
- *
- * @return The input tensor at the given index. `nil` if there is an error.
- */
-- (nullable TFLTensor *)inputTensorAtIndex:(NSUInteger)index error:(NSError **)error;
-
-/**
- * Returns the output tensor at the given index.
- *
- * @param index The index of an output tensor.
- * @param error An optional error parameter populated when there is an error in looking up the
- * output tensor.
- *
- * @return The output tensor at the given index. `nil` if there is an error.
- */
-- (nullable TFLTensor *)outputTensorAtIndex:(NSUInteger)index error:(NSError **)error;
-
-/**
- * Resizes the input tensor at the given index to the specified shape (an array of positive unsigned
- * integers).
- *
- * @param index The index of an input tensor.
- * @param shape Shape that the given input tensor should be resized to. It should be an array of
- * positive unsigned integer(s) containing the size of each dimension.
- * @param error An optional error parameter populated when there is an error in resizing the input
- * tensor.
- *
- * @return Whether the input tensor was resized successfully. Returns NO if an error occurred.
- */
-- (BOOL)resizeInputTensorAtIndex:(NSUInteger)index
- toShape:(NSArray<NSNumber *> *)shape
- error:(NSError **)error;
-
-/**
- * Copies the given data into the input tensor at the given index. This is allowed only before the
- * interpreter is invoked.
- *
- * @param data The data to set. The byte size of the data must match what's required by the given
- * input tensor.
- * @param index The index of an input tensor.
- * @param error An optional error parameter populated when there is an error in setting the data.
- *
- * @return Whether the data was set into the input tensor successfully. Returns NO if an error
- * occurred.
- */
-- (BOOL)copyData:(NSData *)data toInputTensorAtIndex:(NSUInteger)index error:(NSError **)error;
-
-/**
- * Gets the data from the output tensor at the given index. The interpreter invocation has to
- * complete before the data can be retrieved from an output tensor.
- *
- * @param index The index of an output tensor.
- * @param error An optional error parameter populated when there is an error in getting the data.
- *
- * @return The data of the output tensor at the given index. `nil` if there is an error.
- */
-- (nullable NSData *)dataFromOutputTensorAtIndex:(NSUInteger)index error:(NSError **)error;
-
-/**
- * Allocates memory for tensors.
- *
- * @param error An optional error parameter populated when there is an error in allocating memory.
- *
- * @return Whether memory allocation is successful. Returns NO if an error occurred.
- */
-- (BOOL)allocateTensorsWithError:(NSError **)error;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/tensorflow/contrib/lite/experimental/objc/apis/TFLInterpreterOptions.h b/tensorflow/contrib/lite/experimental/objc/apis/TFLInterpreterOptions.h
deleted file mode 100644
index 6461fbf017..0000000000
--- a/tensorflow/contrib/lite/experimental/objc/apis/TFLInterpreterOptions.h
+++ /dev/null
@@ -1,37 +0,0 @@
-// Copyright 2018 Google Inc. All rights reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at:
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-#import <Foundation/Foundation.h>
-
-NS_ASSUME_NONNULL_BEGIN
-
-/** Custom configuration options for a TensorFlow Lite interpreter. */
-@interface TFLInterpreterOptions : NSObject
-
-/**
- * Maximum number of threads that the interpreter should run on. Defaults to 0 (unspecified, letting
- * TensorFlow Lite to optimize the threading decision).
- */
-@property(nonatomic) NSUInteger numberOfThreads;
-
-/**
- * Initializes a new instance of `TFLInterpreterOptions`.
- *
- * @return A new instance of `TFLInterpreterOptions`.
- */
-- (instancetype)init NS_DESIGNATED_INITIALIZER;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/tensorflow/contrib/lite/experimental/objc/apis/TFLQuantizationParameters.h b/tensorflow/contrib/lite/experimental/objc/apis/TFLQuantizationParameters.h
deleted file mode 100644
index 3d5cf793c5..0000000000
--- a/tensorflow/contrib/lite/experimental/objc/apis/TFLQuantizationParameters.h
+++ /dev/null
@@ -1,36 +0,0 @@
-// Copyright 2018 Google Inc. All rights reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at:
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-#import <Foundation/Foundation.h>
-
-NS_ASSUME_NONNULL_BEGIN
-
-/**
- * Parameters for asymmetric quantization. Quantized values can be converted to float values using:
- * `realValue = scale * (quantizedValue - zeroPoint)`.
- */
-@interface TFLQuantizationParameters : NSObject
-
-/** Scale of asymmetric quantization. */
-@property(nonatomic, readonly) float scale;
-
-/** Zero point of asymmetric quantization. */
-@property(nonatomic, readonly) int32_t zeroPoint;
-
-/** Unavailable. */
-- (instancetype)init NS_UNAVAILABLE;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/tensorflow/contrib/lite/experimental/objc/apis/TFLTensor.h b/tensorflow/contrib/lite/experimental/objc/apis/TFLTensor.h
deleted file mode 100644
index d08b8fc0e9..0000000000
--- a/tensorflow/contrib/lite/experimental/objc/apis/TFLTensor.h
+++ /dev/null
@@ -1,77 +0,0 @@
-// Copyright 2018 Google Inc. All rights reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at:
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-#import <Foundation/Foundation.h>
-
-@class TFLQuantizationParameters;
-
-NS_ASSUME_NONNULL_BEGIN
-
-/**
- * @enum TFLTensorDataType
- * This enum specifies supported TensorFlow Lite tensor data types.
- */
-typedef NS_ENUM(NSUInteger, TFLTensorDataType) {
- /** Tensor data type not available. This indicates an error with the model. */
- TFLTensorDataTypeNoType,
-
- /** 32-bit single precision floating point. */
- TFLTensorDataTypeFloat32,
-
- /** 32-bit signed integer. */
- TFLTensorDataTypeInt32,
-
- /** 8-bit unsigned integer. */
- TFLTensorDataTypeUInt8,
-
- /** 64-bit signed integer. */
- TFLTensorDataTypeInt64,
-
- /** Boolean. */
- TFLTensorDataTypeBool,
-
- /** 16-bit signed integer. */
- TFLTensorDataTypeInt16,
-};
-
-/**
- * An input or output tensor in a TensorFlow Lite model.
- */
-@interface TFLTensor : NSObject
-
-/** Name of the tensor. */
-@property(nonatomic, readonly, copy) NSString *name;
-
-/** Data type of the tensor. */
-@property(nonatomic, readonly) TFLTensorDataType dataType;
-
-/**
- * Shape of the tensor, an array of positive unsigned integer(s) containing the size of each
- * dimension. For example: the shape of [[[1, 1, 1], [2, 2, 2]], [[3, 3, 3], [4, 4, 4]]] is
- * [2, 2, 3].
- */
-@property(nonatomic, readonly, copy) NSArray<NSNumber *> *shape;
-
-/** Number of bytes for the tensor data. */
-@property(nonatomic, readonly) NSUInteger byteSize;
-
-/** Parameters for asymmetric quantization. `nil` if the tensor does not use quantization. */
-@property(nonatomic, readonly, nullable) TFLQuantizationParameters *quantizationParameters;
-
-/** Unavailable. */
-- (instancetype)init NS_UNAVAILABLE;
-
-@end
-
-NS_ASSUME_NONNULL_END