Skip to content

Commit

Permalink
add dummy docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Zhengqing Wang committed Jun 30, 2024
1 parent 1a13b81 commit 9ccdec4
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 0 deletions.
Empty file added docs/data_preparation.md
Empty file.
Binary file added docs/fig/arch.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions docs/installation.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
- ### Installation
**Step 1.** Create conda environment and activate.
```
conda create --name puzzlefusionpp python=3.8 -y
conda activate puzzlefusionpp
```

**Step 2.** Install PyTorch.
```
conda install -y pytorch==2.0.1 torchvision==0.15.2 torchaudio==2.0.2 pytorch-cuda=11.7 -c pytorch -c nvidia
```


**Step 3.** Install PyTorch3d.


pip3 install -r requirements.txt
Empty file added docs/sampling.md
Empty file.
20 changes: 20 additions & 0 deletions docs/training.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
## Training

The training consists of three modules as detailed in the paper. We train the models on 4 Nvidia RTX A6000 GPUs.

**Stage 1**: VQVAE:
```
sh ./scripts/train_vqvae.sh
```

**Stage 2**: SE3 denoiser:
```
sh ./sripts/train_denoiser.sh
```

**Stage 3**: Pairwise alignment verifier:
```
sh ./sripts/train_verifier.sh
```

We also have provided checkpoint for easier testing [here]().

0 comments on commit 9ccdec4

Please sign in to comment.