List the available weight tags for a model.
Parameters
model_namestrFactory name, e.g.
"resnet_18".Returns
list of strTag names (e.g. ["IMAGENET1K_V1"]). Empty if the model has
no registered pretrained weights. The DEFAULT alias is not
listed separately — enum iteration yields only canonical
members.
Examples
>>> import lucid.weights as W
>>> W.list_pretrained("resnet_18")
['IMAGENET1K_V1']