Expand description
The static table of known deep-learning QSM models.
Weights are hosted externally and fetched on use (see super); nothing is
vendored here. Entries marked WeightStatus::Pending are recognized
targets whose ONNX weights are not yet converted and hosted — their url
and sha256 are filled in once the exported .onnx is uploaded (Hugging Face). Until then a host can still run them via bring-your-own-weights
($QSM_MODEL_DIR).
Editing checklist when a model goes from Pending → Available:
- export/convert to ONNX, upload the file,
- set
url,sha256(lowercase hex),bytes, - flip
statustoWeightStatus::Available, - confirm
inputs/outputs/size_divisormatch the exported graph.
Constants§
- MODELS 🔒
Functions§
- all_
models - All models known to QSM-Core, in a stable order.
- find_
model - Look up a model by its
ModelSpec::id(case-sensitive), e.g."qsmnet". - pending_
onnx 🔒