2. train.txt, a list of tfrecords used for training.
2. dev.txt, a list of tfrecords used for validation.
3. test.txt, a list of tfrecords used for testing.
4. projection.txt, storing the global 4x4 camera projection matrix.
5. job.txt, storing ShapeNet's object IDs in each tfrecord.
## Training:
Run `main.py --model_dir=MODEL_DIR --dset=DSET`
where MODEL_DIR is a folder for storing model checkpoints: (see [tf.estimator](https://www.tensorflow.org/api_docs/python/tf/estimator/Estimator)), and DSET should point to the folder containing tfrecords (download above).
## Inference:
Run `main.py --model_dir=MODEL_DIR --input=INPUT --predict`
where MODEL_DIR is the model checkpoint folder, and INPUT is a folder containing png or jpeg test images.
We trained the network using the total batch size of 256 (8 x 32 replicas). You may have to tune the learning rate if your batch size is different.