Improve model card: add pipeline tag, library name, and explicit links
Browse filesThis PR enhances the model card by adding essential metadata and improving discoverability.
Specifically, it includes:
- `pipeline_tag: other` to help users discover the model when browsing by task.
- `library_name: pytorch` as evidence from the GitHub repository shows PyTorch compatibility.
- Direct links to the paper and the GitHub repository at the top of the model card for easier access to resources.
README.md
CHANGED
|
@@ -1,17 +1,21 @@
|
|
| 1 |
---
|
| 2 |
-
license: bsd-3-clause
|
| 3 |
language:
|
| 4 |
- en
|
|
|
|
| 5 |
tags:
|
| 6 |
- AI4Science
|
| 7 |
- PDEs
|
| 8 |
- Foundation Model
|
| 9 |
- Physics Foundation Model
|
| 10 |
- LANL
|
|
|
|
|
|
|
| 11 |
---
|
| 12 |
|
| 13 |
# MORPH 1.0
|
| 14 |
|
|
|
|
|
|
|
| 15 |
## Highlights:
|
| 16 |
|
| 17 |
- We introduce **MORPH**, a PDE foundation model designed to accommodate **heterogeneous data** across diverse physical phenomenon
|
|
@@ -74,3 +78,4 @@ If you use MORPH in your research, please cite:
|
|
| 74 |
primaryClass={cs.CV},
|
| 75 |
url={https://arxiv.org/abs/2509.21670}
|
| 76 |
}
|
|
|
|
|
|
| 1 |
---
|
|
|
|
| 2 |
language:
|
| 3 |
- en
|
| 4 |
+
license: bsd-3-clause
|
| 5 |
tags:
|
| 6 |
- AI4Science
|
| 7 |
- PDEs
|
| 8 |
- Foundation Model
|
| 9 |
- Physics Foundation Model
|
| 10 |
- LANL
|
| 11 |
+
pipeline_tag: other
|
| 12 |
+
library_name: pytorch
|
| 13 |
---
|
| 14 |
|
| 15 |
# MORPH 1.0
|
| 16 |
|
| 17 |
+
[📖 Paper](https://huggingface.co/papers/2509.21670) | [💻 Code](https://github.com/lanl/MORPH)
|
| 18 |
+
|
| 19 |
## Highlights:
|
| 20 |
|
| 21 |
- We introduce **MORPH**, a PDE foundation model designed to accommodate **heterogeneous data** across diverse physical phenomenon
|
|
|
|
| 78 |
primaryClass={cs.CV},
|
| 79 |
url={https://arxiv.org/abs/2509.21670}
|
| 80 |
}
|
| 81 |
+
```
|