Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -8,15 +8,15 @@ tags:
|
|
| 8 |
|
| 9 |
# DISCO model checkpoints
|
| 10 |
|
| 11 |
-
Pretrained checkpoints for the ICML 2026 paper *Test-
|
| 12 |
-
|
| 13 |
|
| 14 |
| Equation | Checkpoint |
|
| 15 |
|---|---|
|
| 16 |
| Advection-diffusion (1D) | `advection-diffusion/last.ckpt` |
|
| 17 |
| Combined equation (1D) | `combined-equation/last.ckpt` |
|
| 18 |
| Reaction-diffusion (Gray-Scott, 2D) | `reaction-diffusion/last.ckpt` |
|
| 19 |
-
| Navier-Stokes / Euler (2D) | `navier-stokes/
|
| 20 |
|
| 21 |
Load with PyTorch Lightning:
|
| 22 |
|
|
@@ -25,4 +25,4 @@ from train.train_generic import DISCOLitModule
|
|
| 25 |
model = DISCOLitModule.load_from_checkpoint("last.ckpt")
|
| 26 |
```
|
| 27 |
|
| 28 |
-
Code: https://github.com/LouisSerrano/
|
|
|
|
| 8 |
|
| 9 |
# DISCO model checkpoints
|
| 10 |
|
| 11 |
+
Pretrained checkpoints for the ICML 2026 paper *Test-Time Generalization via Neural
|
| 12 |
+
Operator Splitting* (Serrano et al.).
|
| 13 |
|
| 14 |
| Equation | Checkpoint |
|
| 15 |
|---|---|
|
| 16 |
| Advection-diffusion (1D) | `advection-diffusion/last.ckpt` |
|
| 17 |
| Combined equation (1D) | `combined-equation/last.ckpt` |
|
| 18 |
| Reaction-diffusion (Gray-Scott, 2D) | `reaction-diffusion/last.ckpt` |
|
| 19 |
+
| Navier-Stokes / Euler (2D) | `navier-stokes/last.ckpt` |
|
| 20 |
|
| 21 |
Load with PyTorch Lightning:
|
| 22 |
|
|
|
|
| 25 |
model = DISCOLitModule.load_from_checkpoint("last.ckpt")
|
| 26 |
```
|
| 27 |
|
| 28 |
+
Code: https://github.com/LouisSerrano/neural-operator-splitting
|