Models#
Choose a published model by the output you need. Every repository below is a
portable pimm export: from_pretrained() downloads the weights,
rebuilds the architecture from config.json, loads strictly, switches to eval
mode, and returns the model.
import pimm
model = pimm.from_pretrained(
"DeepLearnPhysics/Panda-Semantic",
device="cuda",
)
Important
The portable loader reconstructs the architecture, not an executable data
pipeline. An export made from a full run may retain a sanitized data section,
but from_pretrained does not build or apply it. Reproduce the coordinate,
energy, sampling, and collation steps from the release recipe before calling a
model. See Prepare an input batch.
Choose a model#
Goal |
Model |
What |
Published metric |
|---|---|---|---|
Build a Panda task model |
A |
Not applicable |
|
Label every point |
|
See TODO below |
|
Find particles and assign PID |
Query masks/classes; |
See TODO below |
|
Group points by interaction |
Query masks/classes; |
See TODO below |
|
Continue PoLAr-MAE pretraining |
Self-supervised loss terms, not a downstream prediction |
Not applicable |
|
Run four-class PoLAr-MAE segmentation |
|
\(\mathrm{mF1} \approx 0.82\), as reported by the model card |
\(N\) is the total number of points in the packed batch. The Hub repository names above use their canonical capitalization; Hub lookup itself is case-insensitive.
The two maintained collections are the quickest way to see new releases:
TODO
Add signed-off, held-out Panda metrics and their evaluation protocols to the model cards, then replace the three TODO cells above. Each value needs its split, preprocessing contract, and metric definition.
Output and label lookup#
Model |
Registry type |
Labels or objective |
Next step |
|---|---|---|---|
Panda Base |
|
Masked-point pretrained encoder; no task head |
Attach a head and fine-tune |
Panda Semantic |
shower, track, Michel, delta, LED |
|
|
Panda Particle |
photon, electron, muon, pion, proton, LED |
||
Panda Interaction |
stuff, thing |
||
PoLAr-MAE Pretrain |
masked geometry reconstruction and energy infilling |
Read |
|
PoLAr-MAE Semantic |
shower, track, Michel, delta |
|
The model cards are the authority for provenance and intended use. The recipe configs are the authority for preprocessing and training settings.
Open the matching recipe#
Model |
In-repository recipe |
|---|---|
Panda Base |
|
Panda Semantic |
|
Panda Particle |
|
Panda Interaction |
|
PoLAr-MAE Pretrain |
|
PoLAr-MAE Semantic |
Next#
Goal |
Guide |
|---|---|
Run inference or fine-tune released weights |
|
Publish portable weights |