This commit is contained in:
lichen
2022-04-08 19:46:46 +08:00
commit 5ea52d9d38
41 changed files with 9171 additions and 0 deletions

18
working.sh Normal file
View File

@ -0,0 +1,18 @@
#!/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 &