Skip to content

Commit

Permalink
Fix TensorFlow Lite install script
Browse files Browse the repository at this point in the history
  • Loading branch information
lutzroeder committed Jan 28, 2019
1 parent d6c8a8c commit 796bfec
Show file tree
Hide file tree
Showing 9 changed files with 2 additions and 1 deletion.
Empty file modified tools/caffe2-script.py
100755 → 100644
Empty file.
Empty file modified tools/coreml-script.py
100755 → 100644
Empty file.
Empty file modified tools/keras-script.py
100755 → 100644
Empty file.
Empty file modified tools/mxnet-script.py
100755 → 100644
Empty file.
Empty file modified tools/onnx-script.py
100755 → 100644
Empty file.
Empty file modified tools/pytorch-script.py
100755 → 100644
Empty file.
Empty file modified tools/sklearn-script.py
100755 → 100644
Empty file.
Empty file modified tools/tf-script.py
100755 → 100644
Empty file.
3 changes: 2 additions & 1 deletion tools/tflite
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ sync() {

install() {
bold "flatbuffers install"
echo 1
case "$(uname)" in
"Linux")
if [ -z "$(which cmake)" ]; then
Expand All @@ -56,7 +57,7 @@ install() {
esac
echo "Build flatbuffers..."
pushd "${third_party}/flatbuffers" > /dev/null
cmake -G "Unix Makefiles"
cmake -G "Unix Makefiles" .
make
popd > /dev/null
if [ ! -d "${virtualenv}" ]; then
Expand Down

0 comments on commit 796bfec

Please sign in to comment.