Datasets:

Modalities:
Text
Formats:
text
ArXiv:
Libraries:
Datasets
License:
File size: 3,068 Bytes
3fe4bba
 
 
 
1a76bd8
3fe4bba
8c4421e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3fe4bba
 
8c4421e
3fe4bba
 
 
 
1a76bd8
8c4421e
 
 
1a76bd8
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
---
license: mit
---

# Weight Space Representation Learning on Diverse NeRF Architectures (ICLR 2026)

[[arXiv](https://arxiv.org/abs/2502.09623) | [project page](https://cvlab-unibo.github.io/gmnerf/)]

Main dataset structure:
```
.
└── nerf/
    └── shapenet/
        ├── hash/                             # compressed into _hash.tar
        │   └── class_id/
        │       └── nerf_id/
        │           ├── train/
        │           │   └── *.png              # object views used to train the NeRF
        │           ├── grid.pth               # occupancy grid parameters
        │           ├── nerf_weights.pth       # NeRF parameters
        │           └── transforms_train.json  # camera poses
        ├── mlp/                               # compressed into _mlp.tar
        │   └── class_id/
        │       └── nerf_id/
        │           ├── train/
        │           │   └── *.png                 
        │           ├── grid.pth                
        │           ├── nerf_weights.pth        
        │           └── transforms_train.json
        ├── triplane/                          # compressed into _triplane.tar
        │   └── class_id/
        │       └── nerf_id/
        │           ├── train/
        │           │   └── *.png                 
        │           ├── grid.pth                
        │           ├── nerf_weights.pth        
        │           └── transforms_train.json
        ├── test.txt                           # test split
        ├── train.txt                          # training split
        └── val.txt                            # validation split
```

The official code repository will be [available soon](https://github.com/CVLAB-Unibo/gmnerf). In the meantime, here are some links to the (unpolished) code used to train the NeRFs contained in the dataset:

* [MLP-based NeRF](https://github.com/frallebini/nerf-training/blob/42e1749f5743789003da53aa6f567562497baf39/radiance_fields/nerf_nerf2vec.py#L65)
* [Tri-planar NeRF](https://github.com/frallebini/nerf-training/blob/42e1749f5743789003da53aa6f567562497baf39/radiance_fields/nerf_triplane.py#L20)
* [Hash-based NeRF](https://github.com/frallebini/nerf-training/blob/42e1749f5743789003da53aa6f567562497baf39/radiance_fields/nerf_hash_single_mlp_separate_enc.py#L22)

If you are interested in running this code, follow [this README](https://github.com/CVLAB-Unibo/nf2vec/blob/main/README.md) to install the required libraries.

If you find our work useful, please cite us:

```bibtex
@inproceedings{ballerini2026weight,
  title     = {Weight Space Representation Learning on Diverse {NeRF} Architectures},
  author    = {Ballerini, Francesco and Zama Ramirez, Pierluigi and Di Stefano, Luigi and Salti, Samuele},
  booktitle = {The Fourteenth International Conference on Learning Representations},
  year      = {2026}
```