Add RUN.md, the unattended-run entry point
SETUP.md walks the phases one at a time, which is what you want when something broke. It is the wrong document to hand someone leaving for the weekend. RUN.md is the three commands to run before walking away, what each layer of retry covers, and what to read on Monday. It states plainly which single step cannot be automated (the HuggingFace gate needs a browser) and that the gate is per-account, so copying the token is enough. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -9,7 +9,8 @@
|
||||
|
||||
| 경로 | 내용 |
|
||||
|---|---|
|
||||
| [SETUP.md](SETUP.md) | **새 머신에서 시작하는 절차** — 여기부터 |
|
||||
| [RUN.md](RUN.md) | **무인 실행 — 명령 하나로 학습까지. 여기부터** |
|
||||
| [SETUP.md](SETUP.md) | 단계별 수동 실행 (문제 생겼을 때 확인용) |
|
||||
| [docs/pipeline.html](docs/pipeline.html) | 6단계 공정 정의 (브라우저로 열 것) |
|
||||
| [docs/SUM-Parts-검토노트.md](docs/SUM-Parts-검토노트.md) | 트러블슈팅 16건, 데이터 스키마 실측, 라이선스 |
|
||||
| [scripts/](scripts/) | 환경 구축 · 학습 · 평가 · 변환 스크립트 47개 |
|
||||
@@ -23,24 +24,27 @@
|
||||
- **제약**: 저자가 학습 가중치를 공개하지 않아 직접 학습이 유일한 경로
|
||||
- **VRAM**: 논문 설정 `voxel_max 64000`은 16.5GB 필요 → 12GB 카드 불가, 24GB 필요
|
||||
|
||||
## 빠른 시작
|
||||
## 빠른 시작 (무인)
|
||||
|
||||
```bash
|
||||
bash scripts/setup_env.sh
|
||||
bash scripts/setup_pointnext.sh
|
||||
bash scripts/patch_numpy_aliases.sh
|
||||
bash scripts/patch_unlabeled_test.sh
|
||||
bash scripts/patch_val_mode.sh
|
||||
python scripts/verify_env.py # ALL OK 확인
|
||||
# 1. HF 토큰 (게이트는 계정 단위 — 이미 수락한 계정 토큰을 복사)
|
||||
mkdir -p ~/.cache/huggingface && echo hf_xxxxx > ~/.cache/huggingface/token
|
||||
|
||||
bash scripts/download_data.sh all # HF 게이트 수동 수락 선행
|
||||
bash scripts/prepare_full_split.sh
|
||||
bash scripts/link_data.sh
|
||||
# 2. 사전점검 — OK 안 나오면 여기서 해결하고 갈 것
|
||||
bash scripts/test_preflight.sh
|
||||
|
||||
bash scripts/launch_overnight.sh pointvector-xl
|
||||
# 3. 실행. 베어 머신 → 학습 완료까지 5~8시간, 멈춰도 이어간다
|
||||
setsid nohup bash scripts/keepalive.sh > ~/keepalive.out 2>&1 &
|
||||
```
|
||||
|
||||
자세한 것은 [SETUP.md](SETUP.md).
|
||||
확인:
|
||||
|
||||
```bash
|
||||
cat ~/sum-parts/runs/run_all/STATUS
|
||||
cat ~/sum-parts/runs/coarse_eval/coarse.txt # 4클래스 통합 성적
|
||||
```
|
||||
|
||||
자세한 것은 [RUN.md](RUN.md).
|
||||
|
||||
## 라이선스
|
||||
|
||||
|
||||
Reference in New Issue
Block a user