import tflite_runtime.interpreter as tflite TensorFlow Lite 런타임 패키지 정보 Python으로 TensorFlow Lite 모델 실행을 빠르게 시작하려면 모든 TensorFlow 패키지 대신 TensorFlow Lite 인터프리터만 설치할 수 있습니다. 이 단순화된 Python 패키지를 tflite_runtime이라고 합니다. tflite_runtime 패키지의 크기는 전체 tensorflow 패키지의 극히 일부이며 TensorFlow Lite로 추론을 실행하는 데 필요한 최소한의 코드를 포함합니다. 여기에는 기본적으로 Interpreter Python 클래스가 포함됩니다. 이 작은 패키지는 .tflite 모델만 실행하고 대용량 TensorFlow 라이브러리로 디스크 공간을 낭비하지 않으려는 경우에 이상적입니다. 참고: TensorF.. 이전 1 다음