File size: 1,434 Bytes
b7a2cd0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | ---
license: cc-by-4.0
tags:
- sparse-matrices
- linear-systems
- preconditioners
- numerical-linear-algebra
- graph-neural-networks
- scientific-computing
---
# MatrixPFN Notebooks
Executable Colab notebooks for [MatrixPFN](https://pypi.org/project/matrixpfn/) — Graph Neural Networks as learned preconditioners for sparse linear systems.
## Notebooks
| Notebook | Description |
|---|---|
| `07_MatrixPFN_EndToEnd.ipynb` | Full pipeline: train ContextResGCN, benchmark against Jacobi, solve with FGMRES |
| `colab_benchmark.ipynb` | SuiteSparse benchmark: 838/867 matrices × 6 classical preconditioners (ILU, AMG, Jacobi, Block Jacobi, GMRES-Inner, None) |
| `ablation_edge_features_v3.ipynb` | Definitive GCN vs MPNN ablation: 5 seeds, 1000 epochs, 3 domains |
## Usage
Open any notebook in Google Colab:
```
https://colab.research.google.com/github/...
```
Or download via the HuggingFace Hub:
```python
from huggingface_hub import hf_hub_download
path = hf_hub_download(
repo_id="Csed-dev/matrixpfn-notebooks",
repo_type="dataset",
filename="colab_benchmark.ipynb",
)
```
## Related
- **Package**: [matrixpfn on PyPI](https://pypi.org/project/matrixpfn/)
- **Evaluation dataset**: [Csed-dev/matrixpfn-suitesparse](https://huggingface.co/datasets/Csed-dev/matrixpfn-suitesparse) (867 SuiteSparse matrices)
- **Paper reference**: GNP ([arXiv 2406.00809v3](https://arxiv.org/abs/2406.00809v3))
|