sogeeking commited on
Commit
293a990
·
verified ·
1 Parent(s): 48464b0

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +28 -0
README.md ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ tags:
4
+ - pytorch-lightning
5
+ - neural-pde-solver
6
+ - operator-splitting
7
+ ---
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/best-checkpoint.ckpt` |
20
+
21
+ Load with PyTorch Lightning:
22
+
23
+ ```python
24
+ from train.train_generic import DISCOLitModule
25
+ model = DISCOLitModule.load_from_checkpoint("last.ckpt")
26
+ ```
27
+
28
+ Code: https://github.com/LouisSerrano/disco-ball