You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #!/usr/bin/env bash
-
- # shellcheck disable=SC1090
- source ~/anaconda3/etc/profile.d/conda.sh
- conda activate dev
-
- export PYTHONPATH="${PYTHONPATH}:${HOME}/Lab/Learnware/"
- echo ${PYTHONPATH}
- token="$(date +%s)"
- mkdir -p "./log"
- echo "The output is redirected to log/${token}.log with token ${token}"
-
- export CUDA_VISIBLE_DEVICES=1
- # shellcheck disable=SC2086
- nohup python -u main.py prepare_learnware --market_id="momo" > "./log/${token}.log" 2>&1 &
- echo "With PID = $!"
|