From ffa953454972fdaec5ec02675803b78114624f89 Mon Sep 17 00:00:00 2001 From: Blake Blackshear Date: Sun, 9 Feb 2020 07:39:49 -0600 Subject: [PATCH] update tflite to 2.1.0 --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9721f8dbd..d1abe96f3 100755 --- a/Dockerfile +++ b/Dockerfile @@ -37,9 +37,9 @@ RUN apt -qq update && apt -qq install --no-install-recommends -y \ && apt -qq install --no-install-recommends -y \ libedgetpu1-max \ ## Tensorflow lite (python 3.7 only) - && wget -q https://dl.google.com/coral/python/tflite_runtime-1.14.0-cp37-cp37m-linux_x86_64.whl \ - && python3.7 -m pip install tflite_runtime-1.14.0-cp37-cp37m-linux_x86_64.whl \ - && rm tflite_runtime-1.14.0-cp37-cp37m-linux_x86_64.whl \ + && wget -q https://dl.google.com/coral/python/tflite_runtime-2.1.0-cp37-cp37m-linux_x86_64.whl \ + && python3.7 -m pip install tflite_runtime-2.1.0-cp37-cp37m-linux_x86_64.whl \ + && rm tflite_runtime-2.1.0-cp37-cp37m-linux_x86_64.whl \ && rm -rf /var/lib/apt/lists/* \ && (apt-get autoremove -y; apt-get autoclean -y)