update 353 B

1234567891011121314151617181920
  1. #!/bin/bash
  2. set -e
  3. if [ $(which python3) ] && [ $(which pip3) ]; then
  4. export python=python3
  5. export pip=pip3
  6. fi
  7. root=$(cd $(dirname ${0})/..; pwd)
  8. tools=${root}/tools
  9. ${tools}/keras-update
  10. ${tools}/tf-update
  11. ${tools}/coreml-update
  12. ${tools}/caffe-update
  13. ${tools}/mxnet-update
  14. ${tools}/onnx-update
  15. ${tools}/tflite-update
  16. ${tools}/caffe2-update