In SAS DLPy, a data scientist trains a deep learning model and uses the model.get_feature_maps() method. What does this method return?
Select an answer to reveal the explanation.
Short Explanation and Infographic
Here's the deal — b is correct because model.get_feature_maps() in SAS DLPy applies the model to input images and returns the activation outputs (feature maps) at specified intermediate layers, allowing the data scientist to visualize what patterns each convolutional layer has detected for specific inputs. A describes kernel weights, which are accessed through different DLPy methods.
Full explanation below image
Full Explanation
B is correct because model.get_feature_maps() in SAS DLPy applies the model to input images and returns the activation outputs (feature maps) at specified intermediate layers, allowing the data scientist to visualize what patterns each convolutional layer has detected for specific inputs. A describes kernel weights, which are accessed through different DLPy methods. C describes gradient inspection, which is a different debugging capability. D describes parameter counts, typically shown by model.print_summary().