You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
302 B
Bash
14 lines
302 B
Bash
#!/bin/bash
|
|
#
|
|
|
|
set -e
|
|
|
|
MASK_RCNN_URL=https://github.com/matterport/Mask_RCNN
|
|
|
|
cd ${HOME} && \
|
|
git clone ${MASK_RCNN_URL}.git && \
|
|
curl -L ${MASK_RCNN_URL}/releases/download/v2.0/mask_rcnn_coco.h5 -o Mask_RCNN/mask_rcnn_coco.h5
|
|
|
|
# TODO remove useless files
|
|
# tensorflow and Keras are installed globally
|