-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ad26921
commit 7f57825
Showing
1 changed file
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# NeRfFromScratch | ||
Implementing NeRF from scratch, by following the [original research paper. ](https://arxiv.org/abs/2003.08934) | ||
|
||
|
||
|
||
I first started out by creating a 2D "nerf", which just memorizes a photo: https://github.com/shahanneda/NeRfFromScratch/blob/main/single-image.ipynb | ||
|
||
And then I moved on to making it 3D: https://github.com/shahanneda/NeRfFromScratch/blob/main/3d_image.ipynb | ||
|
||
Then, to run overnight training runs, I extracted some code to classes and more proper python files, and also integrated with weights and biases to run many different training runs with different parameters: | ||
![image](https://github.com/shahanneda/NeRfFromScratch/assets/17485954/55f503f2-5c9a-4b01-b32f-95a4fa7e045c) | ||
|