In SAS DLPy, which function is used to instantiate a pre-built convolutional neural network architecture like ResNet-50?
Select an answer to reveal the explanation.
Short Explanation and Infographic
Here's the deal — a is correct because SAS DLPy provides pre-built architecture functions in the dlpy.applications module, including ResNet50(), which instantiates the ResNet-50 architecture against a CAS session. B is wrong because SAS DLPy does not use a Sequential() API like Keras.
Full explanation below image
Full Explanation
A is correct because SAS DLPy provides pre-built architecture functions in the dlpy.applications module, including ResNet50(), which instantiates the ResNet-50 architecture against a CAS session. B is wrong because SAS DLPy does not use a Sequential() API like Keras. C is wrong because there is no cas.deepLearn.buildResNet50() CAS action (the action set uses different naming). D is wrong because PROC HPNEURAL does not support an ARCHITECTURE= option for pre-built deep learning architectures.