Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,14 +81,14 @@ pip install -r requirements.txt
### Training

```bash
python train.py --config configs/train_joint.yaml
python train.py --config configs/train.yaml
```

### Multi-GPU Training (DDP)

```bash
python -m torch.distributed.run --standalone --nnodes=1 --nproc_per_node=8 \
train.py --config configs/train_joint.yaml
train.py --config configs/train.yaml
```

### Inference
Expand Down
16 changes: 10 additions & 6 deletions configs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,15 @@

## 파일 목록

- `train_joint.yaml`
- **학습 설정** (joint protein-ligand graph 아키텍처)
- Slurm 스크립트 `scripts/slurm/run_train_joint*.sh`에서 기본으로 사용합니다.
- `train.yaml`
- **Cartesian 학습 설정** (per-atom velocity field)
- Slurm 스크립트 `scripts/slurm/run_train_full.sh`에서 기본으로 사용합니다.
- 추론 시에도 이 설정을 기반으로 모델을 로드합니다.

- `train_torsion.yaml`
- **SE(3) + Torsion 학습 설정** (translation + rotation + torsion)
- `train_torsion.py`에서 사용합니다.

## 공통 구조(개요)

설정 파일은 아래 섹션을 갖습니다.
Expand All @@ -34,21 +38,21 @@
### 학습 (로컬)

```bash
python train.py --config configs/train_joint.yaml
python train.py --config configs/train.yaml
```

### 멀티 GPU 학습 (DDP, 로컬/서버)

```bash
python -m torch.distributed.run --standalone --nnodes=1 --nproc_per_node=8 \
train.py --config configs/train_joint.yaml
train.py --config configs/train.yaml
```

### 추론/평가

```bash
python inference.py \
--config configs/train_joint.yaml \
--config configs/train.yaml \
--checkpoint /path/to/checkpoint.pt \
--device cuda
```
116 changes: 0 additions & 116 deletions configs/overfit_test.yaml

This file was deleted.

102 changes: 0 additions & 102 deletions configs/train_fast_overfit.yaml

This file was deleted.

Loading