Which two explicit functions are implemented by this neural network?

Posted by: Pdfprep Category: C1000-059 Tags: , ,

A neural network is composed of a first affine transformation (affine1) followed by a ReLU non-linearity, followed by a second affine transformation (affine2).

Which two explicit functions are implemented by this neural network? (Choose two.)
A . y = affine1(ReLU(affine2(x)))
B . y = max(affine1(x), affine2(x))
C . y = affine2(ReLU(affine1(x)))
D . y = affine2(max(affine1(x), 0))
E . y = ReLU(affine1(x), affine2(x))

Answer: CD

Leave a Reply

Your email address will not be published.