Reputation: 51
Is 'Link function' and 'Activation function' are referring same concept? Is it right that, It just converts mean output value, to the value of desired distribution(Anything other than Normal distribution)?
Upvotes: 5
Views: 1239
Reputation: 61
Yes, they are related.
m(x) = f(w'x + w_0)
f^-1(m(x)) = w'x + w_0
Upvotes: 6
Reputation: 343
Yes, link and activation functions are referring to the same concept.
However, I am not sure if I agree with your definition.
For example, consider f
to be a link function. Two common activations are a linear link, or a logistic link:
f(x) = x
f(x) = exp(x) / (1+exp(x))
Upvotes: 0