chore: 适配本机 xsl 路径(RTX 5090 机器)

将所有绝对路径从 /home/ubuntu 改回 /home/xsl,覆盖启动脚本、
configure.ini 及训练/测试脚本。纯路径替换,无功能性改动。

本分支(xsl5090)用于本机(RTX 5090)运行;master 维持 /home/ubuntu
供远程 ubuntu 机器使用。
This commit is contained in:
xsl
2026-07-18 16:26:16 +08:00
parent b2738fba7d
commit 9b7324cd26
31 changed files with 162 additions and 162 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
#!/bin/bash
# 重新同步 conda 环境(上次被 sed 损坏,这次纯净拷贝)
set -u
CONDA_ENVS="/home/ubuntu/miniconda3/envs"
LOGDIR="/home/ubuntu/change_hair/project/logs"
CONDA_ENVS="/home/xsl/miniconda3/envs"
LOGDIR="/home/xsl/change_hair/project/logs"
mkdir -p "$CONDA_ENVS" "$LOGDIR"
echo "conda 环境重传开始: $(date '+%H:%M:%S')" | tee -a "$LOGDIR/sync_conda.log"