Files
ieemoo-ai-predict/working.sh
2022-04-08 19:46:46 +08:00

19 lines
553 B
Bash

#!/bin/sh
# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('/root/anaconda3/bin/conda' 'shell.bash' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "/root/anaconda3/etc/profile.d/conda.sh" ]; then
. "/root/anaconda3/etc/profile.d/conda.sh"
else
export PATH="/root/anaconda3/bin:$PATH"
fi
fi
unset __conda_setup
conda activate y5
nohup python iePredict.py > log/error.log 2>&1 &
nohup python iePredict_1.py > log/error_1.log 2>&1 &