Views
No views yet

MPM-Verse-MaterialSim-Small/Sand3DNCLAWSmall,| Model Name | n (Reduced) | N (Full) |
|---|---|---|
giorom-3d-t-sand3d-long | 3.0K | 32K |
giorom-3d-t-water3d | 1.7K | 55K |
giorom-3d-t-elasticity | 2.6K | 78K |
giorom-3d-t-plasticine | 1.1K | 5K |
giorom-2d-t-water | 0.12K | 1K |
giorom-2d-t-sand | 0.3K | 2K |
giorom-2d-t-jelly | 0.2K | 1.9K |
giorom-2d-t-multimaterial | 0.25K | 2K |
[n, D, W]n: Number of particles (reduced-order, n ≪ N)D: Dimension (2D or 3D)W: Time window (past velocity states)[c^D, D] where:c ∈ {8, 16, 32}n - δn ≤ c^D ≤ n + δnpip install transformers huggingface_hub torchgit clone https://github.com/HrishikeshVish/GIOROM/
cd GIOROM1from models.giorom3d_T import PhysicsEngine
2from models.config import TimeStepperConfig
3
4time_stepper_config = TimeStepperConfig()
5
6simulator = PhysicsEngine(time_stepper_config)
7repo_id = "hrishivish23/giorom-3d-t-sand3d"
8time_stepper_config = time_stepper_config.from_pretrained(repo_id)
9simulator = simulator.from_pretrained(repo_id, config=time_stepper_config)1import torch
2| Model Name | Model ID |
|---|---|
giorom-3d-t-sand3d-long | hrishivish23/giorom-3d-t-sand3d-long |
giorom-3d-t-water3d | hrishivish23/giorom-3d-t-water3d |
{8×8, 16×16, 32×32}1e-4AdamaxMSE + Physics Regularization (Loss computed on Euler integrated outputs)1M+ steps21@article{viswanath2024reduced,
2 title={Reduced-Order Neural Operators: Learning Lagrangian Dynamics on Highly Sparse Graphs},
3 author={Viswanath, Hrishikesh and Chang, Yue and Berner, Julius and Chen, Peter Yichen and Bera, Aniket},
4 journal={arXiv preprint arXiv:2407.03925},
5 year={2024}
6}