#!/usr/bin/env bash
set +e
cd /home/jiachen/TRELLIS
export CUDA_VISIBLE_DEVICES=7
cmd=( /home/jiachen/miniconda3/bin/conda run --no-capture-output -n trellis2 python /home/jiachen/TRELLIS/experiments/nonorthogonal_gpt_orthoview/train_trellis2_vggt_spatial_adapter.py --device cuda:0 --steps 100 --accumulation 1 --checkpoint-steps 1\,25\,50\,100 --velocity-trust-region-cap 0.10 --output /home/jiachen/TRELLIS/experiments/nonorthogonal_gpt_orthoview/outputs/data_survey/vggt_spatial_adapter/a80_smoke16_velocity_adapter_cap010_gpu7 )
"${cmd[@]}"
exit_code=$?
status="完成"
if [ "$exit_code" -ne 0 ]; then status="失败"; fi
python /home/jiachen/TRELLIS/experiments/nonorthogonal_gpt_orthoview/notify_bark_experiment.py --experiment a80_smoke16_velocity_adapter_cap010_gpu7 --status "$status" --description Toys4K\ smoke16；velocity\ trust-region\ spatial\ adapter；cap=0.10；100\ steps；作为旧\ adapter\ 路线的并行对照。 --output /home/jiachen/TRELLIS/experiments/nonorthogonal_gpt_orthoview/outputs/data_survey/vggt_spatial_adapter/a80_smoke16_velocity_adapter_cap010_gpu7 --exit-code "$exit_code"
exit "$exit_code"
