File size: 1,907 Bytes
3f2dbd7
3e01d29
3f2dbd7
 
3e01d29
 
 
 
 
 
3f2dbd7
 
2caa397
 
3f2dbd7
 
 
 
2caa397
 
 
 
 
 
 
 
3f2dbd7
2caa397
3e01d29
2caa397
 
 
 
 
3e01d29
 
 
 
 
 
 
 
 
 
 
 
 
5a5ae50
 
 
 
 
 
 
 
 
 
 
 
 
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
task_categories:
- image-to-3d
tags:
- 3d-physics
- material-properties
- gaussian-splatting
- clip-features
- 3d-assets
---

# Pixie Dataset

This dataset contains data and pre-trained models for the paper [Pixie: Fast and Generalizable Supervised Learning of 3D Physics from Pixels](https://huggingface.co/papers/2508.17437).

- Project Page: https://pixie-3d.github.io/
- Code: https://github.com/vlongle/pixie

## Contents

- `checkpoints_continuous_mse/`: Continuous material property prediction model checkpoints
- `checkpoints_discrete/`: Discrete material classification model checkpoints
- `real_scene_data/`: Real scene data for evaluation
- `real_scene_models/`: Trained models for real scenes

## Sample Usage

First, use the download script in the Pixie repository to automatically download this data and models:

```bash
python scripts/download_data.py
```

Then, you can run the main pipeline with a synthetic Objaverse object, for example:

```python
python pipeline.py obj_id=f420ea9edb914e1b9b7adebbacecc7d8 material_mode=neural
```
This command will:
1. Download the specified Objaverse asset.
2. Render it and train 3D representations (NeRF, Gaussian Splatting).
3. Generate a voxel feature grid.
4. Use the trained neural networks to predict the physics field.
5. Run the MPM physics solver using the predicted physics parameters.

For more detailed usage, including real-scene processing and training, refer to the [Github repository's usage section](https://github.com/vlongle/pixie#usage).

## Citation

If you find this work useful, please consider citing:

```bibtex
@article{le2025pixie,
  title={Pixie: Fast and Generalizable Supervised Learning of 3D Physics from Pixels},
  author={Le, Long and Lucas, Ryan and Wang, Chen and Chen, Chuhao and Jayaraman, Dinesh and Eaton, Eric and Liu, Lingjie},
  journal={arXiv preprint arXiv:2508.17437},
  year={2025}
}
```