10 lines
218 B
Python
10 lines
218 B
Python
|
"""Sigmoid gradient function"""
|
||
|
|
||
|
from .sigmoid import sigmoid
|
||
|
|
||
|
|
||
|
def sigmoid_gradient(matrix):
|
||
|
"""Computes the gradient of the sigmoid function evaluated at z."""
|
||
|
|
||
|
return sigmoid(matrix) * (1 - sigmoid(matrix))
|