20-site LOSO: all 20 CC200 checkpoints, AUC=0.7260, 20-model ensemble
Browse files- .gitattributes +1 -0
- __pycache__/_charts.cpython-311.pyc +3 -0
- __pycache__/app.cpython-311.pyc +0 -0
- app.py +28 -12
- brain_gcn/__pycache__/__init__.cpython-311.pyc +0 -0
- brain_gcn/models/__pycache__/__init__.cpython-311.pyc +0 -0
- brain_gcn/models/__pycache__/advanced_models.cpython-311.pyc +0 -0
- brain_gcn/models/__pycache__/brain_gcn.cpython-311.pyc +0 -0
- brain_gcn/models/__pycache__/registry.cpython-311.pyc +0 -0
- brain_gcn/tasks/__pycache__/__init__.cpython-311.pyc +0 -0
- brain_gcn/tasks/__pycache__/classification.cpython-311.pyc +0 -0
- brain_gcn/utils/__pycache__/__init__.cpython-311.pyc +0 -0
- brain_gcn/utils/__pycache__/graph_conv.cpython-311.pyc +0 -0
- brain_gcn/utils/__pycache__/grl.cpython-311.pyc +0 -0
- checkpoints/cc200_caltech.ckpt +3 -0
- checkpoints/cc200_cmu.ckpt +3 -0
- checkpoints/cc200_kki.ckpt +3 -0
- checkpoints/cc200_leuven_1.ckpt +3 -0
- checkpoints/cc200_leuven_2.ckpt +3 -0
- checkpoints/cc200_max_mun.ckpt +3 -0
- checkpoints/cc200_nyu.ckpt +3 -0
- checkpoints/cc200_ohsu.ckpt +3 -0
- checkpoints/cc200_olin.ckpt +3 -0
- checkpoints/cc200_pitt.ckpt +3 -0
- checkpoints/cc200_sbl.ckpt +3 -0
- checkpoints/cc200_sdsu.ckpt +3 -0
- checkpoints/cc200_stanford.ckpt +3 -0
- checkpoints/cc200_trinity.ckpt +3 -0
- checkpoints/cc200_ucla_1.ckpt +3 -0
- checkpoints/cc200_ucla_2.ckpt +3 -0
- checkpoints/cc200_um_1.ckpt +3 -0
- checkpoints/cc200_um_2.ckpt +3 -0
- checkpoints/cc200_usm.ckpt +3 -0
- checkpoints/cc200_yale.ckpt +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
__pycache__/_charts.cpython-311.pyc filter=lfs diff=lfs merge=lfs -text
|
__pycache__/_charts.cpython-311.pyc
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3f065fbad81dddb7ace40ec0c27dd0a872e35186fb8728f130acaa1f52cfc45b
|
| 3 |
+
size 161576
|
__pycache__/app.cpython-311.pyc
ADDED
|
Binary file (64.6 kB). View file
|
|
|
app.py
CHANGED
|
@@ -27,10 +27,26 @@ _ATLAS_CFG = {
|
|
| 27 |
"net_bounds": [0, 38, 69, 99, 137, 165, 180, 200],
|
| 28 |
"net_colors": ["#e63946", "#f4a261", "#457b9d", "#2dc653", "#a8dadc", "#8b5cf6", "#6b7280"],
|
| 29 |
"ckpts": {
|
| 30 |
-
"
|
| 31 |
-
"
|
| 32 |
-
"
|
| 33 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 34 |
},
|
| 35 |
},
|
| 36 |
"aal": {
|
|
@@ -422,7 +438,7 @@ def run_gcn(file_path):
|
|
| 422 |
<div style="font-size:0.65rem;color:#8b95a7;letter-spacing:2px;text-transform:uppercase;margin-bottom:12px;font-weight:500">Leave-One-Site-Out Ensemble</div>
|
| 423 |
<table style="width:100%;border-collapse:collapse">{rows}</table>
|
| 424 |
<div style="margin-top:12px;padding-top:10px;border-top:1px solid #252a35;color:#5e6675;font-size:0.76rem">
|
| 425 |
-
LOSO AUC = 0.
|
| 426 |
</div></div>"""
|
| 427 |
|
| 428 |
# ── Report ──
|
|
@@ -519,11 +535,11 @@ HEADER = """
|
|
| 519 |
<!-- Stat pills -->
|
| 520 |
<div style="display:flex;gap:10px;flex-wrap:wrap">
|
| 521 |
<div style="background:#161922;border:1px solid #252a35;border-radius:8px;padding:10px 18px;text-align:center">
|
| 522 |
-
<div style="font-size:1.35rem;font-weight:700;color:#ef4444;font-variant-numeric:tabular-nums">0.
|
| 523 |
<div style="color:#5e6675;font-size:0.62rem;text-transform:uppercase;letter-spacing:1px;margin-top:2px">LOSO AUC</div>
|
| 524 |
</div>
|
| 525 |
<div style="background:#161922;border:1px solid #252a35;border-radius:8px;padding:10px 18px;text-align:center">
|
| 526 |
-
<div style="font-size:1.35rem;font-weight:700;color:#f4f4f5;font-variant-numeric:tabular-nums">
|
| 527 |
<div style="color:#5e6675;font-size:0.62rem;text-transform:uppercase;letter-spacing:1px;margin-top:2px">Held-out subjects</div>
|
| 528 |
</div>
|
| 529 |
<div style="background:#161922;border:1px solid #252a35;border-radius:8px;padding:10px 18px;text-align:center">
|
|
@@ -538,8 +554,8 @@ HEADER = """
|
|
| 538 |
</div>
|
| 539 |
|
| 540 |
<div style="margin-top:14px;display:flex;gap:8px;flex-wrap:wrap;align-items:center">
|
| 541 |
-
<span style="background:#2a1215;border:1px solid #ef444433;color:#ef4444;font-size:0.75rem;font-weight:600;padding:4px 10px;border-radius:20px">AUC 0.
|
| 542 |
-
<span style="background:#1a1f2e;border:1px solid #457b9d44;color:#93c5fd;font-size:0.75rem;padding:4px 10px;border-radius:20px">
|
| 543 |
<span style="background:#1a1f15;border:1px solid #22c55e33;color:#22c55e;font-size:0.75rem;padding:4px 10px;border-radius:20px">CC200 · AAL · Harvard-Oxford</span>
|
| 544 |
<span style="background:#1f1a10;border:1px solid #fb923c33;color:#fb923c;font-size:0.75rem;padding:4px 10px;border-radius:20px">Qwen2.5-7B on AMD MI300X</span>
|
| 545 |
<span style="background:#161922;border:1px solid #252a35;color:#8b95a7;font-size:0.75rem;padding:4px 10px;border-radius:20px">1,102 ABIDE I subjects</span>
|
|
@@ -644,7 +660,7 @@ VALIDATION = f"""
|
|
| 644 |
<tr><td style="padding:7px 0;color:#8b95a7;border-bottom:1px solid #1e2330">BrainNetCNN (Kawahara 2017)</td><td style="padding:7px 0;text-align:right;color:#cbd5e1;border-bottom:1px solid #1e2330;font-variant-numeric:tabular-nums">0.74</td></tr>
|
| 645 |
<tr><td style="padding:7px 0;color:#8b95a7;border-bottom:1px solid #1e2330">GCN + FC (Ktena 2018)</td><td style="padding:7px 0;text-align:right;color:#cbd5e1;border-bottom:1px solid #1e2330;font-variant-numeric:tabular-nums">0.70</td></tr>
|
| 646 |
<tr><td style="padding:7px 0;color:#8b95a7;border-bottom:1px solid #1e2330">ABIDE site-specific SVM</td><td style="padding:7px 0;text-align:right;color:#cbd5e1;border-bottom:1px solid #1e2330;font-variant-numeric:tabular-nums">0.76</td></tr>
|
| 647 |
-
<tr><td style="padding:7px 0;color:#f4f4f5;font-weight:600">BrainConnect-ASD (LOSO)</td><td style="padding:7px 0;text-align:right;color:#ef4444;font-weight:700;font-variant-numeric:tabular-nums">0.
|
| 648 |
</table>
|
| 649 |
<div style="margin-top:10px;color:#5e6675;font-size:0.74rem;line-height:1.5">
|
| 650 |
All prior results use <i>same-site</i> train/test splits. Ours is cross-site — a fundamentally harder evaluation.
|
|
@@ -724,10 +740,10 @@ ARCHITECTURE = """
|
|
| 724 |
<!-- Spec table -->
|
| 725 |
<div style="background:#161922;border:1px solid #252a35;border-radius:8px;overflow:hidden">
|
| 726 |
<table style="width:100%;border-collapse:collapse;font-size:0.85rem">
|
| 727 |
-
<tr><td style="padding:10px 16px;color:#8b95a7;width:150px;font-size:0.76rem;text-transform:uppercase;letter-spacing:0.5px">Dataset</td><td style="padding:10px 16px;color:#cbd5e1">ABIDE I · 1,102 subjects ·
|
| 728 |
<tr style="border-top:1px solid #252a35"><td style="padding:10px 16px;color:#8b95a7;font-size:0.76rem;text-transform:uppercase;letter-spacing:0.5px">Parcellation</td><td style="padding:10px 16px;color:#cbd5e1">CC200 (200 ROIs) · AAL-116 (116 ROIs) · Harvard-Oxford (111 ROIs)</td></tr>
|
| 729 |
<tr style="border-top:1px solid #252a35"><td style="padding:10px 16px;color:#8b95a7;font-size:0.76rem;text-transform:uppercase;letter-spacing:0.5px">Model</td><td style="padding:10px 16px;color:#cbd5e1">AdversarialBrainModeNetwork · K=16 modes · hidden_dim=64</td></tr>
|
| 730 |
-
<tr style="border-top:1px solid #252a35"><td style="padding:10px 16px;color:#8b95a7;font-size:0.76rem;text-transform:uppercase;letter-spacing:0.5px">Validation</td><td style="padding:10px 16px;color:#cbd5e1">LOSO AUC = <span style="color:#ef4444;font-weight:600">0.
|
| 731 |
<tr style="border-top:1px solid #252a35"><td style="padding:10px 16px;color:#8b95a7;font-size:0.76rem;text-transform:uppercase;letter-spacing:0.5px">Interpretability</td><td style="padding:10px 16px;color:#cbd5e1">Real-time gradient saliency · 7-network aggregation · 3D brain surface</td></tr>
|
| 732 |
</table>
|
| 733 |
</div>
|
|
|
|
| 27 |
"net_bounds": [0, 38, 69, 99, 137, 165, 180, 200],
|
| 28 |
"net_colors": ["#e63946", "#f4a261", "#457b9d", "#2dc653", "#a8dadc", "#8b5cf6", "#6b7280"],
|
| 29 |
"ckpts": {
|
| 30 |
+
"CALTECH": Path("checkpoints/cc200_caltech.ckpt"),
|
| 31 |
+
"CMU": Path("checkpoints/cc200_cmu.ckpt"),
|
| 32 |
+
"KKI": Path("checkpoints/cc200_kki.ckpt"),
|
| 33 |
+
"LEUVEN_1": Path("checkpoints/cc200_leuven_1.ckpt"),
|
| 34 |
+
"LEUVEN_2": Path("checkpoints/cc200_leuven_2.ckpt"),
|
| 35 |
+
"MAX_MUN": Path("checkpoints/cc200_max_mun.ckpt"),
|
| 36 |
+
"NYU": Path("checkpoints/cc200_nyu.ckpt"),
|
| 37 |
+
"OHSU": Path("checkpoints/cc200_ohsu.ckpt"),
|
| 38 |
+
"OLIN": Path("checkpoints/cc200_olin.ckpt"),
|
| 39 |
+
"PITT": Path("checkpoints/cc200_pitt.ckpt"),
|
| 40 |
+
"SBL": Path("checkpoints/cc200_sbl.ckpt"),
|
| 41 |
+
"SDSU": Path("checkpoints/cc200_sdsu.ckpt"),
|
| 42 |
+
"STANFORD": Path("checkpoints/cc200_stanford.ckpt"),
|
| 43 |
+
"TRINITY": Path("checkpoints/cc200_trinity.ckpt"),
|
| 44 |
+
"UCLA_1": Path("checkpoints/cc200_ucla_1.ckpt"),
|
| 45 |
+
"UCLA_2": Path("checkpoints/cc200_ucla_2.ckpt"),
|
| 46 |
+
"UM_1": Path("checkpoints/cc200_um_1.ckpt"),
|
| 47 |
+
"UM_2": Path("checkpoints/cc200_um_2.ckpt"),
|
| 48 |
+
"USM": Path("checkpoints/cc200_usm.ckpt"),
|
| 49 |
+
"YALE": Path("checkpoints/cc200_yale.ckpt"),
|
| 50 |
},
|
| 51 |
},
|
| 52 |
"aal": {
|
|
|
|
| 438 |
<div style="font-size:0.65rem;color:#8b95a7;letter-spacing:2px;text-transform:uppercase;margin-bottom:12px;font-weight:500">Leave-One-Site-Out Ensemble</div>
|
| 439 |
<table style="width:100%;border-collapse:collapse">{rows}</table>
|
| 440 |
<div style="margin-top:12px;padding-top:10px;border-top:1px solid #252a35;color:#5e6675;font-size:0.76rem">
|
| 441 |
+
LOSO AUC = 0.7260 · 1,102 held-out subjects · 20 acquisition sites
|
| 442 |
</div></div>"""
|
| 443 |
|
| 444 |
# ── Report ──
|
|
|
|
| 535 |
<!-- Stat pills -->
|
| 536 |
<div style="display:flex;gap:10px;flex-wrap:wrap">
|
| 537 |
<div style="background:#161922;border:1px solid #252a35;border-radius:8px;padding:10px 18px;text-align:center">
|
| 538 |
+
<div style="font-size:1.35rem;font-weight:700;color:#ef4444;font-variant-numeric:tabular-nums">0.7260</div>
|
| 539 |
<div style="color:#5e6675;font-size:0.62rem;text-transform:uppercase;letter-spacing:1px;margin-top:2px">LOSO AUC</div>
|
| 540 |
</div>
|
| 541 |
<div style="background:#161922;border:1px solid #252a35;border-radius:8px;padding:10px 18px;text-align:center">
|
| 542 |
+
<div style="font-size:1.35rem;font-weight:700;color:#f4f4f5;font-variant-numeric:tabular-nums">1,102</div>
|
| 543 |
<div style="color:#5e6675;font-size:0.62rem;text-transform:uppercase;letter-spacing:1px;margin-top:2px">Held-out subjects</div>
|
| 544 |
</div>
|
| 545 |
<div style="background:#161922;border:1px solid #252a35;border-radius:8px;padding:10px 18px;text-align:center">
|
|
|
|
| 554 |
</div>
|
| 555 |
|
| 556 |
<div style="margin-top:14px;display:flex;gap:8px;flex-wrap:wrap;align-items:center">
|
| 557 |
+
<span style="background:#2a1215;border:1px solid #ef444433;color:#ef4444;font-size:0.75rem;font-weight:600;padding:4px 10px;border-radius:20px">AUC 0.7260 cross-site</span>
|
| 558 |
+
<span style="background:#1a1f2e;border:1px solid #457b9d44;color:#93c5fd;font-size:0.75rem;padding:4px 10px;border-radius:20px">20-model LOSO ensemble</span>
|
| 559 |
<span style="background:#1a1f15;border:1px solid #22c55e33;color:#22c55e;font-size:0.75rem;padding:4px 10px;border-radius:20px">CC200 · AAL · Harvard-Oxford</span>
|
| 560 |
<span style="background:#1f1a10;border:1px solid #fb923c33;color:#fb923c;font-size:0.75rem;padding:4px 10px;border-radius:20px">Qwen2.5-7B on AMD MI300X</span>
|
| 561 |
<span style="background:#161922;border:1px solid #252a35;color:#8b95a7;font-size:0.75rem;padding:4px 10px;border-radius:20px">1,102 ABIDE I subjects</span>
|
|
|
|
| 660 |
<tr><td style="padding:7px 0;color:#8b95a7;border-bottom:1px solid #1e2330">BrainNetCNN (Kawahara 2017)</td><td style="padding:7px 0;text-align:right;color:#cbd5e1;border-bottom:1px solid #1e2330;font-variant-numeric:tabular-nums">0.74</td></tr>
|
| 661 |
<tr><td style="padding:7px 0;color:#8b95a7;border-bottom:1px solid #1e2330">GCN + FC (Ktena 2018)</td><td style="padding:7px 0;text-align:right;color:#cbd5e1;border-bottom:1px solid #1e2330;font-variant-numeric:tabular-nums">0.70</td></tr>
|
| 662 |
<tr><td style="padding:7px 0;color:#8b95a7;border-bottom:1px solid #1e2330">ABIDE site-specific SVM</td><td style="padding:7px 0;text-align:right;color:#cbd5e1;border-bottom:1px solid #1e2330;font-variant-numeric:tabular-nums">0.76</td></tr>
|
| 663 |
+
<tr><td style="padding:7px 0;color:#f4f4f5;font-weight:600">BrainConnect-ASD (LOSO)</td><td style="padding:7px 0;text-align:right;color:#ef4444;font-weight:700;font-variant-numeric:tabular-nums">0.7260</td></tr>
|
| 664 |
</table>
|
| 665 |
<div style="margin-top:10px;color:#5e6675;font-size:0.74rem;line-height:1.5">
|
| 666 |
All prior results use <i>same-site</i> train/test splits. Ours is cross-site — a fundamentally harder evaluation.
|
|
|
|
| 740 |
<!-- Spec table -->
|
| 741 |
<div style="background:#161922;border:1px solid #252a35;border-radius:8px;overflow:hidden">
|
| 742 |
<table style="width:100%;border-collapse:collapse;font-size:0.85rem">
|
| 743 |
+
<tr><td style="padding:10px 16px;color:#8b95a7;width:150px;font-size:0.76rem;text-transform:uppercase;letter-spacing:0.5px">Dataset</td><td style="padding:10px 16px;color:#cbd5e1">ABIDE I · 1,102 subjects · 20 acquisition sites</td></tr>
|
| 744 |
<tr style="border-top:1px solid #252a35"><td style="padding:10px 16px;color:#8b95a7;font-size:0.76rem;text-transform:uppercase;letter-spacing:0.5px">Parcellation</td><td style="padding:10px 16px;color:#cbd5e1">CC200 (200 ROIs) · AAL-116 (116 ROIs) · Harvard-Oxford (111 ROIs)</td></tr>
|
| 745 |
<tr style="border-top:1px solid #252a35"><td style="padding:10px 16px;color:#8b95a7;font-size:0.76rem;text-transform:uppercase;letter-spacing:0.5px">Model</td><td style="padding:10px 16px;color:#cbd5e1">AdversarialBrainModeNetwork · K=16 modes · hidden_dim=64</td></tr>
|
| 746 |
+
<tr style="border-top:1px solid #252a35"><td style="padding:10px 16px;color:#8b95a7;font-size:0.76rem;text-transform:uppercase;letter-spacing:0.5px">Validation</td><td style="padding:10px 16px;color:#cbd5e1">LOSO AUC = <span style="color:#ef4444;font-weight:600">0.7260</span> · 1,102 held-out subjects · 20 acquisition sites</td></tr>
|
| 747 |
<tr style="border-top:1px solid #252a35"><td style="padding:10px 16px;color:#8b95a7;font-size:0.76rem;text-transform:uppercase;letter-spacing:0.5px">Interpretability</td><td style="padding:10px 16px;color:#cbd5e1">Real-time gradient saliency · 7-network aggregation · 3D brain surface</td></tr>
|
| 748 |
</table>
|
| 749 |
</div>
|
brain_gcn/__pycache__/__init__.cpython-311.pyc
CHANGED
|
Binary files a/brain_gcn/__pycache__/__init__.cpython-311.pyc and b/brain_gcn/__pycache__/__init__.cpython-311.pyc differ
|
|
|
brain_gcn/models/__pycache__/__init__.cpython-311.pyc
CHANGED
|
Binary files a/brain_gcn/models/__pycache__/__init__.cpython-311.pyc and b/brain_gcn/models/__pycache__/__init__.cpython-311.pyc differ
|
|
|
brain_gcn/models/__pycache__/advanced_models.cpython-311.pyc
CHANGED
|
Binary files a/brain_gcn/models/__pycache__/advanced_models.cpython-311.pyc and b/brain_gcn/models/__pycache__/advanced_models.cpython-311.pyc differ
|
|
|
brain_gcn/models/__pycache__/brain_gcn.cpython-311.pyc
CHANGED
|
Binary files a/brain_gcn/models/__pycache__/brain_gcn.cpython-311.pyc and b/brain_gcn/models/__pycache__/brain_gcn.cpython-311.pyc differ
|
|
|
brain_gcn/models/__pycache__/registry.cpython-311.pyc
CHANGED
|
Binary files a/brain_gcn/models/__pycache__/registry.cpython-311.pyc and b/brain_gcn/models/__pycache__/registry.cpython-311.pyc differ
|
|
|
brain_gcn/tasks/__pycache__/__init__.cpython-311.pyc
CHANGED
|
Binary files a/brain_gcn/tasks/__pycache__/__init__.cpython-311.pyc and b/brain_gcn/tasks/__pycache__/__init__.cpython-311.pyc differ
|
|
|
brain_gcn/tasks/__pycache__/classification.cpython-311.pyc
CHANGED
|
Binary files a/brain_gcn/tasks/__pycache__/classification.cpython-311.pyc and b/brain_gcn/tasks/__pycache__/classification.cpython-311.pyc differ
|
|
|
brain_gcn/utils/__pycache__/__init__.cpython-311.pyc
CHANGED
|
Binary files a/brain_gcn/utils/__pycache__/__init__.cpython-311.pyc and b/brain_gcn/utils/__pycache__/__init__.cpython-311.pyc differ
|
|
|
brain_gcn/utils/__pycache__/graph_conv.cpython-311.pyc
CHANGED
|
Binary files a/brain_gcn/utils/__pycache__/graph_conv.cpython-311.pyc and b/brain_gcn/utils/__pycache__/graph_conv.cpython-311.pyc differ
|
|
|
brain_gcn/utils/__pycache__/grl.cpython-311.pyc
CHANGED
|
Binary files a/brain_gcn/utils/__pycache__/grl.cpython-311.pyc and b/brain_gcn/utils/__pycache__/grl.cpython-311.pyc differ
|
|
|
checkpoints/cc200_caltech.ckpt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:765d21f0bf00e5a8bac2dd15e1881223aa2856312ac9bddf1fd7b36a1282152a
|
| 3 |
+
size 269514
|
checkpoints/cc200_cmu.ckpt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:369cee52f2688d8f1ff31d2c0102f332536ed2db83f1d32df34f33b017f6e775
|
| 3 |
+
size 269514
|
checkpoints/cc200_kki.ckpt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:48dc4ab8dca8de87961b21fbd6bfd6c6e4a7d43d3dcb63a33bb7492422b98db4
|
| 3 |
+
size 269514
|
checkpoints/cc200_leuven_1.ckpt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:53ba94493e095f2570199c085a7893580595dfa0a5f9a7d155fcf48472dbba09
|
| 3 |
+
size 268941
|
checkpoints/cc200_leuven_2.ckpt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:24146600ec666b82afb3545da24db809a76f24530678550b92eda34b194e9ebb
|
| 3 |
+
size 269514
|
checkpoints/cc200_max_mun.ckpt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d96ff8e6b742727219bd4b8f0d4f5ffe298d5a66c7d9e1946b6bde60982a31c2
|
| 3 |
+
size 268560
|
checkpoints/cc200_nyu.ckpt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:39323fb0a79090ad8b3cff70a878503cb5e67c7bfd79379f6767356fba1f7da4
|
| 3 |
+
size 269514
|
checkpoints/cc200_ohsu.ckpt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6aee8f80b81ae51683e6bdbf29256e7cbac91599bbe89183814112f1670b1e16
|
| 3 |
+
size 269514
|
checkpoints/cc200_olin.ckpt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f7a5ab54238e30c8968ab69286ae9b0c59db36851caa0816be866d4755c4f3d3
|
| 3 |
+
size 269514
|
checkpoints/cc200_pitt.ckpt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:faa729c5527fa5c4912607c70a29f88071d09fb6dfc9a0356b9db1bb60b1010c
|
| 3 |
+
size 269514
|
checkpoints/cc200_sbl.ckpt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2469dea4db7c85ce80a26322fa6f4c18e9ccb563ed9129452613789d90979d41
|
| 3 |
+
size 269514
|
checkpoints/cc200_sdsu.ckpt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:08951edd63d52cce2a8b20a40dd419803f5decf45185d03b21802162385762d9
|
| 3 |
+
size 268115
|
checkpoints/cc200_stanford.ckpt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9b0622c3ee25efe5dcab48b133d4830dd327c458d5e04cbb9985c951ca491584
|
| 3 |
+
size 269514
|
checkpoints/cc200_trinity.ckpt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:85f091608debc8875bd080b28bbdd22e443bb1b78ed500ef77996f895e21e6f6
|
| 3 |
+
size 269514
|
checkpoints/cc200_ucla_1.ckpt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b31c2d36210e04527601cbd88c39e959045af83e0b603e4e2ea2d78ff05eb2e8
|
| 3 |
+
size 268560
|
checkpoints/cc200_ucla_2.ckpt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3560233bfe5d504ad4023501c45e1c8dff1ab01f1dc5ed6f888c3c9463521bf1
|
| 3 |
+
size 269514
|
checkpoints/cc200_um_1.ckpt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e80fb9f6dcef19f70394963352518bb040c6b9f525bf581efdebd7e70efa77d5
|
| 3 |
+
size 269514
|
checkpoints/cc200_um_2.ckpt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bd7b48511310a1181097afe964aa8f3554b7587997d1ab792782561dd86971c2
|
| 3 |
+
size 269322
|
checkpoints/cc200_usm.ckpt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1b2fb6253a7d8a93579129d26de55bec9a0c3b96864ed5d79b07b63e33677c68
|
| 3 |
+
size 269514
|
checkpoints/cc200_yale.ckpt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fcadb01e484f926ea6d6ae97ebf7ed159389f52a5a0f6189dcaaf534c9d35e42
|
| 3 |
+
size 268560
|