-1

Assuming I have the function sigmoid(W*x) where W is a 2x2 matrix and x is a 2x1 matrix. How would that output sigmoid(W*x) look like?

IHaveAQuestion
  • 143
  • 2
  • 12

1 Answers1

0

Sigmoid function will do an element wise operation, so each value in array will be 1/1+e^-(value)

IHaveAQuestion
  • 143
  • 2
  • 12