eladrich / latent-nerf

Official Implementation for "Latent-NeRF for Shape-Guided Generation of 3D Shapes and Textures"
MIT License
687 stars 48 forks source link

Could you provide the hyperparameters to reproduce the results of latent-nerf in the readme? #23

Open thuwzy opened 1 year ago

thuwzy commented 1 year ago

I tried to reproduce the result with default parameters. However, I got worse results than the reported results.

thuwzy commented 1 year ago

https://user-images.githubusercontent.com/40787266/221347907-cdab01e5-40a3-42ba-ab34-db42e14ace61.mp4

My result of hamburger, which is not as good as the one in the paper.

JDihlmann commented 1 year ago

Would also be interested in this!

JDihlmann commented 1 year ago

@thuwzy I found out that you can use the latent-tune mode (documented in the paper not the ReadMe) to receive better results. Simply set your nerf_type: latent_tune in the config.yaml and adjust your train_w/h and eval_w/h accordingly. You also have to fix the code according to this and beware that this will take up way more memory!

thuwzy commented 1 year ago

@JDihlmann Thank you for your kind response!