图像分类是机器学习的常见用途,用于识别图像所代表的内容。例如,我们可能想知道给定图片中出现了什么类型的动物。预测图像所代表内容的任务称为图像分类。图像分类器经过训练可以识别各种图像类别。例如,一个模型可能经过训练可以识别代表三种不同类型动物的照片:兔子、仓鼠和狗。有关图像分类器的更多信息,请参阅 图像分类概述。
使用任务库 ImageClassifier
API 将您自定义的图像分类器或预训练的图像分类器部署到您的移动应用程序中。
ImageClassifier API 的主要功能
输入图像处理,包括旋转、调整大小和颜色空间转换。
输入图像的感兴趣区域。
标签图区域设置。
用于过滤结果的评分阈值。
前 k 个分类结果。
标签允许列表和拒绝列表。
支持的图像分类器模型
以下模型保证与 ImageClassifier
API 兼容。
由 TensorFlow Lite Model Maker for Image Classification 创建的模型。
TensorFlow Hub 上的 预训练图像分类模型。
满足 模型兼容性要求 的自定义模型。
在 Java 中运行推理
有关如何在 Android 应用程序中使用 ImageClassifier
的示例,请参阅 图像分类参考应用程序。
步骤 1:导入 Gradle 依赖项和其他设置
将 .tflite
模型文件复制到将运行模型的 Android 模块的 assets 目录。指定该文件不应压缩,并将 TensorFlow Lite 库添加到模块的 build.gradle
文件中
android {
// Other settings
// Specify tflite file should not be compressed for the app apk
aaptOptions {
noCompress "tflite"
}
}
dependencies {
// Other dependencies
// Import the Task Vision Library dependency (NNAPI is included)
implementation 'org.tensorflow:tensorflow-lite-task-vision'
// Import the GPU delegate plugin Library for GPU inference
implementation 'org.tensorflow:tensorflow-lite-gpu-delegate-plugin'
}
步骤 2:使用模型
// Initialization
ImageClassifierOptions options =
ImageClassifierOptions.builder()
.setBaseOptions(BaseOptions.builder().useGpu().build())
.setMaxResults(1)
.build();
ImageClassifier imageClassifier =
ImageClassifier.createFromFileAndOptions(
context, modelFile, options);
// Run inference
List<Classifications> results = imageClassifier.classify(image);
有关配置 ImageClassifier
的更多选项,请参阅 源代码和 javadoc。
在 iOS 中运行推理
步骤 1:安装依赖项
任务库支持使用 CocoaPods 进行安装。确保您的系统上已安装 CocoaPods。有关说明,请参阅 CocoaPods 安装指南。
有关将 pod 添加到 Xcode 项目的详细信息,请参阅 CocoaPods 指南。
在 Podfile 中添加 TensorFlowLiteTaskVision
pod。
target 'MyAppWithTaskAPI' do
use_frameworks!
pod 'TensorFlowLiteTaskVision'
end
确保您将用于推理的 .tflite
模型存在于您的应用程序包中。
步骤 2:使用模型
Swift
// Imports
import TensorFlowLiteTaskVision
// Initialization
guard let modelPath = Bundle.main.path(forResource: "birds_V1",
ofType: "tflite") else { return }
let options = ImageClassifierOptions(modelPath: modelPath)
// Configure any additional options:
// options.classificationOptions.maxResults = 3
let classifier = try ImageClassifier.classifier(options: options)
// Convert the input image to MLImage.
// There are other sources for MLImage. For more details, please see:
// https://developers.google.com/ml-kit/reference/ios/mlimage/api/reference/Classes/GMLImage
guard let image = UIImage (named: "sparrow.jpg"), let mlImage = MLImage(image: image) else { return }
// Run inference
let classificationResults = try classifier.classify(mlImage: mlImage)
Objective C
// Imports
#import <TensorFlowLiteTaskVision/TensorFlowLiteTaskVision.h>
// Initialization
NSString *modelPath = [[NSBundle mainBundle] pathForResource:@"birds_V1" ofType:@"tflite"];
TFLImageClassifierOptions *options =
[[TFLImageClassifierOptions alloc] initWithModelPath:modelPath];
// Configure any additional options:
// options.classificationOptions.maxResults = 3;
TFLImageClassifier *classifier = [TFLImageClassifier imageClassifierWithOptions:options
error:nil];
// Convert the input image to MLImage.
UIImage *image = [UIImage imageNamed:@"sparrow.jpg"];
// There are other sources for GMLImage. For more details, please see:
// https://developers.google.com/ml-kit/reference/ios/mlimage/api/reference/Classes/GMLImage
GMLImage *gmlImage = [[GMLImage alloc] initWithImage:image];
// Run inference
TFLClassificationResult *classificationResult =
[classifier classifyWithGMLImage:gmlImage error:nil];
有关配置 TFLImageClassifier
的更多选项,请参阅 源代码。
在 Python 中运行推理
步骤 1:安装 pip 包
pip install tflite-support
步骤 2:使用模型
# Imports
from tflite_support.task import vision
from tflite_support.task import core
from tflite_support.task import processor
# Initialization
base_options = core.BaseOptions(file_name=model_path)
classification_options = processor.ClassificationOptions(max_results=2)
options = vision.ImageClassifierOptions(base_options=base_options, classification_options=classification_options)
classifier = vision.ImageClassifier.create_from_options(options)
# Alternatively, you can create an image classifier in the following manner:
# classifier = vision.ImageClassifier.create_from_file(model_path)
# Run inference
image = vision.TensorImage.create_from_file(image_path)
classification_result = classifier.classify(image)
有关配置 ImageClassifier
的更多选项,请参阅 源代码。
在 C++ 中运行推理
// Initialization
ImageClassifierOptions options;
options.mutable_base_options()->mutable_model_file()->set_file_name(model_path);
std::unique_ptr<ImageClassifier> image_classifier = ImageClassifier::CreateFromOptions(options).value();
// Create input frame_buffer from your inputs, `image_data` and `image_dimension`.
// See more information here: tensorflow_lite_support/cc/task/vision/utils/frame_buffer_common_utils.h
std::unique_ptr<FrameBuffer> frame_buffer = CreateFromRgbRawBuffer(
image_data, image_dimension);
// Run inference
const ClassificationResult result = image_classifier->Classify(*frame_buffer).value();
查看 源代码 以了解配置 ImageClassifier
的更多选项。
示例结果
以下是一个 鸟类分类器 的分类结果示例。
Results:
Rank #0:
index : 671
score : 0.91406
class name : /m/01bwb9
display name: Passer domesticus
Rank #1:
index : 670
score : 0.00391
class name : /m/01bwbt
display name: Passer montanus
Rank #2:
index : 495
score : 0.00391
class name : /m/0bwm6m
display name: Passer italiae
使用您自己的模型和测试数据尝试使用简单的 ImageClassifier 的 CLI 演示工具。
模型兼容性要求
ImageClassifier
API 期望一个具有强制性 TFLite 模型元数据 的 TFLite 模型。查看使用 TensorFlow Lite 元数据写入器 API 为图像分类器创建元数据的示例。
兼容的图像分类器模型应满足以下要求
输入图像张量 (kTfLiteUInt8/kTfLiteFloat32)
- 大小为
[batch x height x width x channels]
的图像输入。 - 不支持批处理推理 (
batch
必须为 1)。 - 仅支持 RGB 输入 (
channels
必须为 3)。 - 如果类型为 kTfLiteFloat32,则需要将 NormalizationOptions 附加到元数据以进行输入归一化。
- 大小为
输出分数张量 (kTfLiteUInt8/kTfLiteFloat32)
- 具有
N
个类别,并且具有 2 或 4 个维度,即[1 x N]
或[1 x 1 x 1 x N]
- 可选(但建议)标签映射作为 AssociatedFile,类型为 TENSOR_AXIS_LABELS,每行包含一个标签。查看 示例标签文件。第一个这样的 AssociatedFile(如果有)用于填充结果的
label
字段(在 C++ 中命名为class_name
)。display_name
字段从其语言环境与创建时使用的ImageClassifierOptions
的display_names_locale
字段匹配的 AssociatedFile(如果有)中填充(默认情况下为“en”,即英语)。如果这些都没有,则只会填充结果的index
字段。
- 具有