After training a SAS DLPy model, which method exports it as a SAS ASTORE item for deployment via SAS Model Manager?
Select an answer to reveal the explanation.
Short Explanation and Infographic
Here's the deal — b is correct because SAS DLPy models are saved as SAS ASTORE items using model.save_to_astore(), which packages the model architecture and weights into a portable SAS artifact registerable in Model Manager for deployment and scoring. A is wrong; DLPy does not natively export to HDF5.
Full explanation below image
Full Explanation
B is correct because SAS DLPy models are saved as SAS ASTORE items using model.save_to_astore(), which packages the model architecture and weights into a portable SAS artifact registerable in Model Manager for deployment and scoring. A is wrong; DLPy does not natively export to HDF5. C is wrong; model.serialize() is not a DLPy method. D is wrong; PROC ASTORE manages existing ASTORE items but does not create them from DLPy model objects.