TensorFlow Lite 有低功耗模式吗?
Does TensorFlow Lite Have a Low Power Consumption Mode?
我看到 TF Lite 有一个 delegate that uses NNAPI for hardware acceleration. I was reading up on NNAPI and I saw that it has a compilation setting 叫做 ANEURALNETWORKS_PREFER_LOW_POWER
,它编译给定的 NNAPI 模型以优先考虑低功耗。 TF Lite 是否有使用此或任何省电模式的设置?我正在 Android Studio 上使用 TF Lite for Android 进行移动开发。
您可以通过设置 this option while creating the delegate as mentioned in the documentation 在 NNAPI 委托上使用低功耗选项。
我看到 TF Lite 有一个 delegate that uses NNAPI for hardware acceleration. I was reading up on NNAPI and I saw that it has a compilation setting 叫做 ANEURALNETWORKS_PREFER_LOW_POWER
,它编译给定的 NNAPI 模型以优先考虑低功耗。 TF Lite 是否有使用此或任何省电模式的设置?我正在 Android Studio 上使用 TF Lite for Android 进行移动开发。
您可以通过设置 this option while creating the delegate as mentioned in the documentation 在 NNAPI 委托上使用低功耗选项。