def linear_forward(A, W, b):
Z = W.dot(A) + b
assert(Z.shape == (W.shape[0], A.shape[1]))
cache = (A, W, b)
return Z, cache
딥러닝 강좌 보는데 이해가 잘 안 가서
def linear_forward(A, W, b):
Z = W.dot(A) + b
assert(Z.shape == (W.shape[0], A.shape[1]))
cache = (A, W, b)
return Z, cache
딥러닝 강좌 보는데 이해가 잘 안 가서
함수 선언이요
그러면 함수를 만드는 것이라고 보면 되냐
inear_forward 라는 함수를 정의한다(만든다)