Skip to content

Commit 6b81dba

Browse files
committed
readme typo
1 parent 51f8a52 commit 6b81dba

File tree

2 files changed

+1
-42
lines changed

2 files changed

+1
-42
lines changed

README.md

Lines changed: 1 addition & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,58 +1,29 @@
11
# VIRDO
2-
3-
<<<<<<< HEAD
42
## Quick Start
53
**Reconstruction & latent space composition** [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/drive/15T89qRkZuOFfcHYEa24mlZUuFeni1QqI#scrollTo=izxG2oGAriLK&uniqifier=1)
64

75
**inference using partial pointcloud** [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/drive/1ZY5LVsKR8qN99C0EeyyqVnsWWg4v6vPN#scrollTo=f53ea8fc)
86

9-
=======
10-
<<<<<<< HEAD
11-
>>>>>>> no lfs
127
## Step 0: Set up the environment
138
```angular2html
149
conda create -n virdo python=3.8
1510
conda activate virdo
16-
<<<<<<< HEAD
17-
=======
18-
```
19-
## Colab Examples
20-
### Reconstruction & Latent Space Composition
21-
22-
[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/drive/15T89qRkZuOFfcHYEa24mlZUuFeni1QqI#scrollTo=izxG2oGAriLK&uniqifier=1)
23-
24-
### Inference Using Partial Pointcloud
25-
[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/drive/1ZY5LVsKR8qN99C0EeyyqVnsWWg4v6vPN#scrollTo=f53ea8fc)
26-
27-
28-
## Preparation
29-
Datasets and pretrained models can be downloaded from [here](https://www.dropbox.com/sh/4gnme6f0srhnk23/AAABlA6n8cfyo-GsaiDEqLoba?dl=0). Then put the files as below:
30-
```
31-
>>>>>>> no lfs
3211
conda install pytorch==1.7.0 torchvision==0.8.0 torchaudio==0.7.0 cudatoolkit=11.0 -c pytorch
3312
conda install pytorch3d=0.5.0 -c pytorch3d
3413
pip install open3d==0.14.1
3514
pip install plyfile==0.7.4
3615
pip install scikit-image
3716
```
3817

39-
<<<<<<< HEAD
40-
## Step 1: Download pretrained model and dataset
41-
Make sure to install wget ```$ apt-get install wget``` and unzip ```$ apt-get install unzip```
42-
=======
4318

4419
## Step 1: Download pretrained model and dataset
45-
Makesure to install curl ```$ apt-get install curl``` and unzip ```$ apt-get install unzip```
46-
>>>>>>> no lfs
20+
Make sure to install wget ```$ apt-get install wget``` and unzip ```$ apt-get install unzip```
4721
```angular2html
4822
source download.sh
4923
download_dataset
5024
download_pretrained
5125
```
52-
<<<<<<< HEAD
53-
=======
5426
### (Optionally) Manual
55-
>>>>>>> no lfs
5627
Alternatively, you can manually download the datasets and pretrained models from [here](https://www.dropbox.com/sh/4gnme6f0srhnk23/AAABlA6n8cfyo-GsaiDEqLoba?dl=0). Then put the files as below:
5728
```
5829
── VIRDO
@@ -68,7 +39,6 @@ Alternatively, you can manually download the datasets and pretrained models from
6839
## Step 2: Pretrain nominal shapes
6940
```
7041
python pretrain.py --name <log name> --gpu_id 0
71-
<<<<<<< HEAD
7242
```
7343
If you want to check the result of your pretrained model,
7444
```
@@ -80,6 +50,4 @@ then you will see the nominal reconstructions in /output/ directory.
8050
## Step 3: Train entire dataset
8151
```angular2html
8252
python train.py --pretrain_path <path> --checkpoints_dir <dir>
83-
=======
84-
>>>>>>> no lfs
8553
```

download.sh

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,14 @@
11
download_dataset(){
22
(
33
cd 'data'
4-
<<<<<<< HEAD
54
wget https://www.dropbox.com/s/xtyotb99gqb72xp/virdo_simul_dataset.pickle
6-
=======
7-
curl https://www.dropbox.com/s/xtyotb99gqb72xp/virdo_simul_dataset.pickle?dl=0 -L -O -J
8-
unzip -o data.zip virdo_simul_dataset.pickle
9-
>>>>>>> no lfs
105
)
116
}
127

138
download_pretrained(){
149
(
1510
cd 'pretrained_model'
16-
<<<<<<< HEAD
1711
wget https://www.dropbox.com/s/7h2sqc6ouzlk94y/pretrained_model.zip
18-
=======
19-
curl https://www.dropbox.com/sh/s1r9gxd9dz4wdkk/AADK6mHvrPtFYo_xD4EmZZdda?dl=0 -L -O -J
20-
>>>>>>> no lfs
2112
unzip -o pretrained_model.zip
2213
)
2314
}

0 commit comments

Comments
 (0)