You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Training Generalizable Reconstruction (GenRe) on 13 ShapeNet Classes and Testing on 42 Unseen Classes
This is a repository with some minimal extensions of the original GenRe Repository to allow for training on different ShapeNet splits. Please refer to the original paper as well. The main focus of this repository is generating ground truth data for training. For setup please follow the instructions in the original repository.
To run our evaluation code, please compile OccNet extension modules in ./eval/mesh_gen_utils
python setup.py build_ext --inplace
Training Data Download
Download the training data for the 13/42 split on ShapeNet using the following command. Note that ~620GB of space is required to download this data.
bash download.sh
Training the Model
In the directory where the repository is cloned, make a symlink to where the data was extracted
ln -s path/to/data ./downloads/data/shapenet
Then as described in the original repository, follow the steps to train the GenRe model specifying 13_seen for the class argument.
Testing the Model
Download data_split.json by running cd util_scripts; wget https://www.dropbox.com/s/7shqu6krvs9x1ib/data_split.json; cd ..