The correct statements for the code below are:
- An object of the ActivationLayer class has a name attribute.
- print(FCLayer(42)) prints FullyConnectedLayer.
- When creating an object of the BaseLayer class, the name argument must be given.
<h3>What is activation layer?</h3>
Activation layer is known to be the added into the code after the weight layer.
Note that The correct statements for the code below are:
- An object of the ActivationLayer class has a name attribute.
- print(FCLayer(42)) prints FullyConnectedLayer.
- When creating an object of the BaseLayer class, the name argument must be given.
See options below
An object of the ActivationLayer class has a name attribute.
An object of the BaseLayer class has a size attribute.
print(FCLayer(42)) prints FullyConnectedLayer.
When creating an object of the ActivationLayer class, the size argument must be given.
When creating an object of the BaseLayer class, the name argument must be given.
Learn more about code from
brainly.com/question/26497128
#SPJ1