Datasets:

Tasks:
Other
ArXiv:
License:

Add links to paper, GitHub, project page, and metadata

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +13 -5
README.md CHANGED
@@ -1,5 +1,7 @@
1
  ---
2
  license: mit
 
 
3
  tags:
4
  - physics-simulation
5
  - physics-foundation-model
@@ -7,7 +9,9 @@ tags:
7
 
8
  # GeoPT
9
 
10
- This repository contains the physics simulation data for the paper GeoPT: Scaling Physics Simulation via Lifted Geometric Pre-Training.
 
 
11
 
12
  GeoPT is a unified model pre-trained on large-scale geometric data for general physics simulation, unlocking a scalable path for neural simulation.
13
 
@@ -31,8 +35,12 @@ GeoPT is evaluated on the following five simulation tasks.
31
 
32
  ```python
33
  from datasets import load_dataset
34
- load_dataset("GeoPT/Downstream_Physics_Simulation") # for AirCraft, DTCHull, Car-Crash, Radiosity
35
- load_dataset("neashton/drivaerml") # for DrivAerML
 
 
 
 
36
  ```
37
 
38
  NASA-CRM can be obtained from [Google Drive](https://drive.google.com/drive/folders/1KhoZiEHlZhGI8omMwHrp2mZRKGiSAydO).
@@ -47,11 +55,11 @@ NASA-CRM can be obtained from [Google Drive](https://drive.google.com/drive/fold
47
 
48
  If you find this repo useful, please cite our paper.
49
 
50
- ```
51
  @article{wu2026GeoPT,
52
  title={GeoPT: Scaling Physics Simulation via Lifted Geometric Pre-Training},
53
  author={Haixu Wu, Minghao Guo, Zongyi Li, Zhiyang Dou, Mingsheng Long, Kaiming He, Wojciech Matusik},
54
- booktitle={arXiv preprint arXiv:2602.20399},
55
  year={2026}
56
  }
57
  ```
 
1
  ---
2
  license: mit
3
+ task_categories:
4
+ - other
5
  tags:
6
  - physics-simulation
7
  - physics-foundation-model
 
9
 
10
  # GeoPT
11
 
12
+ [Project Page](https://physics-scaling.github.io/GeoPT/) | [Paper](https://huggingface.co/papers/2602.20399) | [GitHub](https://github.com/Physics-Scaling/GeoPT)
13
+
14
+ This repository contains the physics simulation data for the paper **GeoPT: Scaling Physics Simulation via Lifted Geometric Pre-Training**.
15
 
16
  GeoPT is a unified model pre-trained on large-scale geometric data for general physics simulation, unlocking a scalable path for neural simulation.
17
 
 
35
 
36
  ```python
37
  from datasets import load_dataset
38
+
39
+ # For AirCraft, DTCHull, Car-Crash, Radiosity
40
+ load_dataset("GeoPT/Downstream_Physics_Simulation")
41
+
42
+ # For DrivAerML
43
+ load_dataset("neashton/drivaerml")
44
  ```
45
 
46
  NASA-CRM can be obtained from [Google Drive](https://drive.google.com/drive/folders/1KhoZiEHlZhGI8omMwHrp2mZRKGiSAydO).
 
55
 
56
  If you find this repo useful, please cite our paper.
57
 
58
+ ```bibtex
59
  @article{wu2026GeoPT,
60
  title={GeoPT: Scaling Physics Simulation via Lifted Geometric Pre-Training},
61
  author={Haixu Wu, Minghao Guo, Zongyi Li, Zhiyang Dou, Mingsheng Long, Kaiming He, Wojciech Matusik},
62
+ journal={arXiv preprint arXiv:2602.20399},
63
  year={2026}
64
  }
65
  ```