|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- #!/bin/bash
- # Copyright 2020 Huawei Technologies Co., Ltd
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- # ============================================================================
- if [ $# != 1 ]
- then
- echo "Usage: sh run_eval.sh [USE_DEVICE_ID]"
- exit 1
- fi
-
- dirname_path=$(dirname "$(pwd)")
- echo ${dirname_path}
- export PYTHONPATH=${dirname_path}:$PYTHONPATH
-
- export RANK_SIZE=1
- export RANK_ID=0
-
- USE_DEVICE_ID=$1
- echo 'start device '$USE_DEVICE_ID
- dev=`expr $USE_DEVICE_ID + 0`
- export DEVICE_ID=$dev
-
- EXECUTE_PATH=$(pwd)
- echo *******************EXECUTE_PATH= $EXECUTE_PATH
- if [ -d "${EXECUTE_PATH}/log_inference" ]; then
- echo "[INFO] Delete old log_inference log files"
- rm -rf ${EXECUTE_PATH}/log_inference
- fi
- mkdir ${EXECUTE_PATH}/log_inference
-
- cd ${EXECUTE_PATH}/log_inference
- env > ${EXECUTE_PATH}/log_inference/face_recognition.log
- python ${EXECUTE_PATH}/../eval.py &> ${EXECUTE_PATH}/log_inference/face_recognition.log &
-
- echo "[INFO] Start inference..."
|