JNeRF is an NeRF benchmark based on Jittor. JNeRF supports Instant-NGP capable of training NeRF in 5 seconds and achieves similar performance and speed to the paper.
5s training demo of Instant-NGP implemented by JNeRF:
Install
JNeRF environment requirements:
System: Linux(e.g. Ubuntu/CentOS/Arch), macOS, or Windows Subsystem of Linux (WSL)
Python version >= 3.7
CPU compiler (require at least one of the following)
g++ (>=5.4.0)
clang (>=8.0)
GPU compiler (optional)
nvcc (>=10.0 for g++ or >=10.2 for clang)
GPU library: cudnn-dev (recommend tar file installation, reference link)
GPU supporting:
sm arch >= sm_61 (GTX 10x0 / TITAN Xp and above)
to use fp16: sm arch >= sm_70 (TITAN V / V100 and above). JNeRF will automatically use original fp32 if the requirements are not meet.
to use FullyFusedMLP: sm arch >= sm_75 (RTX 20x0 and above). JNeRF will automatically use original MLPs if the requirements are not meet.
If you have any installation problems for Jittor, please refer to Jittor
Step 2: Install JNeRF
JNeRF is a benchmark toolkit and can be updated frequently, so installing in editable mode is recommended.
Thus any modifications made to JNeRF will take effect without reinstallation.
cd python
python -m pip install -e .
After installation, you can import jnerf in python interpreter to check if it is successful or not.
Getting Started
Datasets
We use fox datasets and blender lego datasets for training demonstrations.
Fox Dataset
We provided fox dataset (from Instant-NGP) in this repository at ./data/fox.
If you want to train JNerf with your own dataset, then you should follow the format of our datasets. You should split your datasets into training, validation and testing sets. Each set should be paired with a json file that describes the camera parameters of each images.
Config
We organize our configs of JNeRF in projects/. You are referred to ./projects/ngp/configs/ngp_base.py to learn how it works.
Train from scratch
You can train from scratch on the lego scene with the following command. It should be noted that since jittor is a just-in-time compilation framework, it will take some time to compile on the first run.
NOTE: Competitors participating in the Jittor AI Challenge can use ./projects/ngp/configs/ngp_comp.py as config.
Test with pre-trained model
After training, the ckpt file params.pkl will be automatically saved in ./logs/lego/. And you can modify the ckpt file path by setting the ckpt_path in the config file.
Set the --task of the command to test to test with pre-trained model:
python tools/run_net.py --config-file ./projects/ngp/configs/ngp_base.py --task test
Performance
Instant-ngp implemented by JNeRF achieves similar performance and speed to the paper. The performance comparison can be seen in the table below and training speed of JNeRF-NGP on RTX 3090 is about 133 iters/s.
Models
implementation
Dataset
PSNR
Instant-ngp
paper
lego
36.39(5min)
Instant-ngp
JNeRF
lego
36.41(5min)
NeRF
JNeRF
lego
32.49
Plan of Models
JNeRF will support more valuable NeRF models in the future, if you are also interested in JNeRF and want to improve it, welcome to submit PR!
Supported Doing ➕TODO
Instant-NGP
NeRF
Mip-NeRF
➕ Plenoxels
➕ StylizedNeRF
➕ NeRF-Editing
➕ DrawingInStyles
➕ NSVF
➕ NeRFactor
➕ pixelNeRF
➕ Recursive-NeRF
➕ StyleNeRF
➕ EG3D
➕ …
Contact Us
If you are interested in JNeRF or NeRF research and want to build the JNeRF community with us, contributing is very welcome, please contact us!
Their licenses can be seen at licenses/, many thanks for their nice work!
Citation
@article{hu2020jittor,
title={Jittor: a novel deep learning framework with meta-operators and unified graph execution},
author={Hu, Shi-Min and Liang, Dun and Yang, Guo-Ye and Yang, Guo-Wei and Zhou, Wen-Yang},
journal={Science China Information Sciences},
volume={63},
number={222103},
pages={1--21},
year={2020}
}
@article{mueller2022instant,
author = {Thomas M\"uller and Alex Evans and Christoph Schied and Alexander Keller},
title = {Instant Neural Graphics Primitives with a Multiresolution Hash Encoding},
journal = {ACM Trans. Graph.},
issue_date = {July 2022},
volume = {41},
number = {4},
month = jul,
year = {2022},
pages = {102:1--102:15},
articleno = {102},
numpages = {15},
url = {https://doi.org/10.1145/3528223.3530127},
doi = {10.1145/3528223.3530127},
publisher = {ACM},
address = {New York, NY, USA},
}
@inproceedings{mildenhall2020nerf,
title={NeRF: Representing Scenes as Neural Radiance Fields for View Synthesis},
author={Ben Mildenhall and Pratul P. Srinivasan and Matthew Tancik and Jonathan T. Barron and Ravi Ramamoorthi and Ren Ng},
year={2020},
booktitle={ECCV},
}
Introduction
JNeRF is an NeRF benchmark based on Jittor. JNeRF supports Instant-NGP capable of training NeRF in 5 seconds and achieves similar performance and speed to the paper.
5s training demo of Instant-NGP implemented by JNeRF:
Install
JNeRF environment requirements:
Step 1: Install the requirements
If you have any installation problems for Jittor, please refer to Jittor
Step 2: Install JNeRF
JNeRF is a benchmark toolkit and can be updated frequently, so installing in editable mode is recommended. Thus any modifications made to JNeRF will take effect without reinstallation.
After installation, you can
import jnerf
in python interpreter to check if it is successful or not.Getting Started
Datasets
We use fox datasets and blender lego datasets for training demonstrations.
Fox Dataset
We provided fox dataset (from Instant-NGP) in this repository at
./data/fox
.Lego Dataset
You can download the lego dataset in nerf_example_data.zip at https://drive.google.com/drive/folders/128yBriW1IG_3NJ5Rp7APSTZsJqdJdfc1. And move
lego
folder to./data/lego
.Customized Datasets
If you want to train JNerf with your own dataset, then you should follow the format of our datasets. You should split your datasets into training, validation and testing sets. Each set should be paired with a json file that describes the camera parameters of each images.
Config
We organize our configs of JNeRF in projects/. You are referred to
./projects/ngp/configs/ngp_base.py
to learn how it works.Train from scratch
You can train from scratch on the
lego
scene with the following command. It should be noted that since jittor is a just-in-time compilation framework, it will take some time to compile on the first run.NOTE: Competitors participating in the Jittor AI Challenge can use
./projects/ngp/configs/ngp_comp.py
as config.Test with pre-trained model
After training, the ckpt file
params.pkl
will be automatically saved in./logs/lego/
. And you can modify the ckpt file path by setting theckpt_path
in the config file.Set the
--task
of the command totest
to test with pre-trained model:Performance
Instant-ngp implemented by JNeRF achieves similar performance and speed to the paper. The performance comparison can be seen in the table below and training speed of JNeRF-NGP on RTX 3090 is about 133 iters/s.
Plan of Models
JNeRF will support more valuable NeRF models in the future, if you are also interested in JNeRF and want to improve it, welcome to submit PR!
Contact Us
If you are interested in JNeRF or NeRF research and want to build the JNeRF community with us, contributing is very welcome, please contact us!
Email: jittor@qq.com
JNeRF QQ Group: 689063884
If you have any questions about Jittor, you can file an issue, or join our Jittor QQ Group: 761222083
Acknowledgements
The original implementation comes from the following cool project:
Their licenses can be seen at
licenses/
, many thanks for their nice work!Citation