Skip to main content

oxicuda_nerf/network/
mod.rs

1//! Neural network modules for NeRF.
2//!
3//! - `nerf_mlp`: Full 8-layer NeRF MLP with skip connection
4//! - `tiny_nerf`: Compact 4-layer NeRF for tests
5
6pub mod nerf_mlp;
7pub mod tiny_nerf;