2

TensorFlow Lite 最近发布了。代码库带有一个演示 ios 应用程序

我想创建/运行相同的应用程序,但使用 Swift。我已按照以下步骤操作:

https://github.com/tensorflow/tensorflow/blob/master/tensorflow/contrib/lite/g3doc/ios.md#using-in-your-own-application

这还不够。

1)我认为我现在缺少的是一些桥接头。

2)我也不确定这些特定的 Obj-C 包含如何快速显示:

#include "tensorflow/contrib/lite/kernels/register.h"
#include "tensorflow/contrib/lite/model.h"
#include "tensorflow/contrib/lite/string_util.h"
#include "tensorflow/contrib/lite/tools/mutable_op_resolver.h"

3)打包好的ios app中必须要包含TensorFlow根目录(200+mb)吗?

4

1 回答 1

0

目前,您需要从 Objective-C++ 调用 TFLite C++ API。您可以制作一个精简的 Objective-C++ 类来调用 TFLite,并从 Swift 中使用它。

未来可能会提供更多语言支持。

对于问题(3),编译后的库只有几百字节。查看由tensorflow/contrib/lite/build_ios_universal_lib.sh.

于 2018-07-27T20:50:02.183 回答