行動應用程式開發人員通常會與型別物件 (例如點陣圖) 或原始型別 (例如整數) 互動。不過,執行裝置端機器學習模型的 LiteRT 解譯器 API 會使用 ByteBuffer 形式的張量,這類張量可能難以偵錯和操控。LiteRT Android 支援程式庫旨在協助處理 LiteRT 模型的輸入和輸出內容,並簡化 LiteRT 解譯器的使用方式。
開始使用
匯入 Gradle 依附元件和其他設定
將 .tflite 模型檔案複製到要執行模型的 Android 模組資產目錄。指定檔案不得壓縮,並將 LiteRT 程式庫新增至模組的 build.gradle 檔案:
android {
// Other settings
// Specify tflite file should not be compressed for the app apk
aaptOptions {
noCompress "tflite"
}
}
dependencies {
// Other dependencies
// Import tflite dependencies
implementation 'org.tensorflow:tensorflow-lite:0.0.0-nightly-SNAPSHOT'
// The GPU delegate library is optional. Depend on it as needed.
implementation 'com.google.ai.edge.litert:litert-gpu:0.0.0-nightly-SNAPSHOT'
implementation 'com.google.ai.edge.litert:litert-support:0.0.0-nightly-SNAPSHOT'
}
如要瞭解不同版本的支援程式庫,請前往 MavenCentral 探索 LiteRT 支援程式庫 AAR。
基本圖像操作和轉換
LiteRT 支援程式庫提供一系列基本圖片處理方法,例如裁剪和調整大小。如要使用這項功能,請建立 ImagePreprocessor 並新增必要作業。如要將圖片轉換為 LiteRT 解譯器所需的張量格式,請建立 TensorImage 做為輸入內容:
import org.tensorflow.lite.DataType;
import org.tensorflow.lite.support.image.ImageProcessor;
import org.tensorflow.lite.support.image.TensorImage;
import org.tensorflow.lite.support.image.ops.ResizeOp;
// Initialization code
// Create an ImageProcessor with all ops required. For more ops, please
// refer to the ImageProcessor Architecture section in this README.
ImageProcessor imageProcessor =
new ImageProcessor.Builder()
.add(new ResizeOp(224, 224, ResizeOp.ResizeMethod.BILINEAR))
.build();
// Create a TensorImage object. This creates the tensor of the corresponding
// tensor type (uint8 in this case) that the LiteRT interpreter needs.
TensorImage tensorImage = new TensorImage(DataType.UINT8);
// Analysis code for every frame
// Preprocess the image
tensorImage.load(bitmap);
tensorImage = imageProcessor.process(tensorImage);
DataType,可透過中繼資料擷取器程式庫以及其他模型資訊讀取。
基本音訊資料處理
LiteRT 支援程式庫也會定義 TensorAudio 類別,包裝一些基本音訊資料處理方法。這項功能大多會與 AudioRecord 一起使用,並在循環緩衝區中擷取音訊樣本。
import android.media.AudioRecord;
import org.tensorflow.lite.support.audio.TensorAudio;
// Create an `AudioRecord` instance.
AudioRecord record = AudioRecord(...)
// Create a `TensorAudio` object from Android AudioFormat.
TensorAudio tensorAudio = new TensorAudio(record.getFormat(), size)
// Load all audio samples available in the AudioRecord without blocking.
tensorAudio.load(record)
// Get the `TensorBuffer` for inference.
TensorBuffer buffer = tensorAudio.getTensorBuffer()
建立輸出物件並執行模型
執行模型前,我們需要建立用於儲存結果的容器物件:
import org.tensorflow.lite.DataType;
import org.tensorflow.lite.support.tensorbuffer.TensorBuffer;
// Create a container for the result and specify that this is a quantized model.
// Hence, the 'DataType' is defined as UINT8 (8-bit unsigned integer)
TensorBuffer probabilityBuffer =
TensorBuffer.createFixedSize(new int[]{1, 1001}, DataType.UINT8);
載入模型並執行推論:
import java.nio.MappedByteBuffer;
import org.tensorflow.lite.InterpreterFactory;
import org.tensorflow.lite.InterpreterApi;
// Initialise the model
try{
MappedByteBuffer tfliteModel
= FileUtil.loadMappedFile(activity,
"mobilenet_v1_1.0_224_quant.tflite");
InterpreterApi tflite = new InterpreterFactory().create(
tfliteModel, new InterpreterApi.Options());
} catch (IOException e){
Log.e("tfliteSupport", "Error reading model", e);
}
// Running inference
if(null != tflite) {
tflite.run(tImage.getBuffer(), probabilityBuffer.getBuffer());
}
存取結果
開發人員可透過 probabilityBuffer.getFloatArray() 直接存取輸出內容。如果模型產生量化輸出內容,請記得轉換結果。如果是 MobileNet 量化模型,開發人員必須將每個輸出值除以 255,才能取得每個類別的機率,範圍從 0 (最不可能) 到 1 (最有可能)。
選用:將對應結果對應至標籤
開發人員也可以選擇將結果對應至標籤。首先,將包含標籤的文字檔案複製到模組的資產目錄。接著,請使用下列程式碼載入標籤檔案:
import org.tensorflow.lite.support.common.FileUtil;
final String ASSOCIATED_AXIS_LABELS = "labels.txt";
List<String> associatedAxisLabels = null;
try {
associatedAxisLabels = FileUtil.loadLabels(this, ASSOCIATED_AXIS_LABELS);
} catch (IOException e) {
Log.e("tfliteSupport", "Error reading label file", e);
}
下列程式碼片段示範如何將機率與類別標籤建立關聯:
import java.util.Map;
import org.tensorflow.lite.support.common.TensorProcessor;
import org.tensorflow.lite.support.common.ops.NormalizeOp;
import org.tensorflow.lite.support.label.TensorLabel;
// Post-processor which dequantize the result
TensorProcessor probabilityProcessor =
new TensorProcessor.Builder().add(new NormalizeOp(0, 255)).build();
if (null != associatedAxisLabels) {
// Map of labels and their corresponding probability
TensorLabel labels = new TensorLabel(associatedAxisLabels,
probabilityProcessor.process(probabilityBuffer));
// Create a map to access the result based on label
Map<String, Float> floatMap = labels.getMapWithFloatValue();
}
目前應用範圍
目前版本的 LiteRT 支援程式庫涵蓋:
- 常見資料型別 (浮點數、uint8、圖片、音訊和這些物件的陣列) 做為 tflite 模型的輸入和輸出。
- 基本圖片作業 (裁剪圖片、調整大小和旋轉)。
- 正規化和量化
- 檔案公用程式
後續版本將改善對文字相關應用程式的支援。
ImageProcessor 架構
ImageProcessor 的設計可讓圖片操作作業預先定義,並在建構過程中進行最佳化。ImageProcessor 目前支援三種基本前處理作業,如下方程式碼片段中的三則註解所述:
import org.tensorflow.lite.support.common.ops.NormalizeOp;
import org.tensorflow.lite.support.common.ops.QuantizeOp;
import org.tensorflow.lite.support.image.ops.ResizeOp;
import org.tensorflow.lite.support.image.ops.ResizeWithCropOrPadOp;
import org.tensorflow.lite.support.image.ops.Rot90Op;
int width = bitmap.getWidth();
int height = bitmap.getHeight();
int size = height > width ? width : height;
ImageProcessor imageProcessor =
new ImageProcessor.Builder()
// Center crop the image to the largest square possible
.add(new ResizeWithCropOrPadOp(size, size))
// Resize using Bilinear or Nearest neighbour
.add(new ResizeOp(224, 224, ResizeOp.ResizeMethod.BILINEAR));
// Rotation counter-clockwise in 90 degree increments
.add(new Rot90Op(rotateDegrees / 90))
.add(new NormalizeOp(127.5, 127.5))
.add(new QuantizeOp(128.0, 1/128.0))
.build();
如要進一步瞭解正規化和量化,請參閱這篇文章。
支援資料庫的最終目標是支援所有tf.image轉換。也就是說,轉換方式會與 TensorFlow 相同,且實作方式與作業系統無關。
開發人員也可以建立自訂處理器。在這些情況下,請務必與訓練程序保持一致,也就是說,訓練和推論都應套用相同的預先處理,以提高重現性。
量化
啟動 TensorImage 或 TensorBuffer 等輸入或輸出物件時,您需要將其類型指定為 DataType.UINT8 或 DataType.FLOAT32。
TensorImage tensorImage = new TensorImage(DataType.UINT8);
TensorBuffer probabilityBuffer =
TensorBuffer.createFixedSize(new int[]{1, 1001}, DataType.UINT8);
TensorProcessor 可用於量化輸入張量或取消量化輸出張量。舉例來說,處理量化輸出 TensorBuffer 時,開發人員可以使用 DequantizeOp 將結果反量化為介於 0 和 1 之間的浮點機率:
import org.tensorflow.lite.support.common.TensorProcessor;
// Post-processor which dequantize the result
TensorProcessor probabilityProcessor =
new TensorProcessor.Builder().add(new DequantizeOp(0, 1/255.0)).build();
TensorBuffer dequantizedBuffer = probabilityProcessor.process(probabilityBuffer);
張量的量化參數可透過中繼資料擷取器程式庫讀取。