Csed-dev commited on
Commit
b7a2cd0
·
verified ·
1 Parent(s): 3b9c1bf

Add dataset card

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