我可以在 PC(x86、x64)平台上使用 Tensorflow lite 或 Tensorflow mobile 吗?如果可以的话,它们是否针对该平台上的推理进行了优化?
Can I use Tensorflow lite or Tensorflow mobile on PC (x86, x64) platform? If I can, are they optimized for inference on this platform?
在我看来,我可以在 PC 平台上使用 Tensorflow lite/mobile,但我不应该这样做。我应该在PC平台上使用普通的Tensorflow,在嵌入式系统上只使用lite或mobile。
TensorFlow Lite 有两部分:转换器和解释器。转换通过名为 TOCO 的转换器在您的桌面上进行。解释器适用于移动和嵌入式设备,因此针对这些设备进行了优化。
提供了有关转换器的更多详细信息here. More details about TensorFlow Lite generally are available here. To track the status of the converter on Windows follow GitHub issue 21085。
在我看来,我可以在 PC 平台上使用 Tensorflow lite/mobile,但我不应该这样做。我应该在PC平台上使用普通的Tensorflow,在嵌入式系统上只使用lite或mobile。
TensorFlow Lite 有两部分:转换器和解释器。转换通过名为 TOCO 的转换器在您的桌面上进行。解释器适用于移动和嵌入式设备,因此针对这些设备进行了优化。
提供了有关转换器的更多详细信息here. More details about TensorFlow Lite generally are available here. To track the status of the converter on Windows follow GitHub issue 21085。