#!/usr/bin/env bash
set +e
cd /home/jiachen/TRELLIS
export CUDA_VISIBLE_DEVICES=6
cmd=( /home/jiachen/miniconda3/bin/conda run --no-capture-output -n trellis2 python /home/jiachen/TRELLIS/experiments/nonorthogonal_gpt_orthoview/train_trellis2_vggt_state_anchor.py --device cuda:0 --steps 100 --accumulation 1 --checkpoint-steps 1\,25\,50\,100 --state-loss-weight 0.25 --output /home/jiachen/TRELLIS/experiments/nonorthogonal_gpt_orthoview/outputs/data_survey/vggt_spatial_adapter/a80_smoke16_state_anchor_state025_gpu6 )
"${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_state_anchor_state025_gpu6 --status "$status" --description Toys4K\ smoke16；state-anchor\ controller；state\ loss\ weight=0.25；100\ steps；测试较弱状态锚定约束。 --output /home/jiachen/TRELLIS/experiments/nonorthogonal_gpt_orthoview/outputs/data_survey/vggt_spatial_adapter/a80_smoke16_state_anchor_state025_gpu6 --exit-code "$exit_code"
exit "$exit_code"
