| 1234567891011121314151617181920 |
- #!/bin/bash
- set -e
- if [ $(which python3) ] && [ $(which pip3) ]; then
- export python=python3
- export pip=pip3
- fi
- root=$(cd $(dirname ${0})/..; pwd)
- tools=${root}/tools
- ${tools}/keras-update
- ${tools}/tf-update
- ${tools}/coreml-update
- ${tools}/caffe-update
- ${tools}/mxnet-update
- ${tools}/onnx-update
- ${tools}/tflite-update
- ${tools}/caffe2-update
|