matrixpfn-notebooks / README.md
Csed-dev's picture
Add dataset card
b7a2cd0 verified
metadata
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 — 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:

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