gpt4 book ai didi

python - Python中计算sigmoid函数导数的正确方法

转载 作者:太空宇宙 更新时间:2023-11-04 00:24:31 24 4
gpt4 key购买 nike

我正走过 this article .在代码中,作者提到了以下函数求导数:

# convert output of sigmoid function to its derivative
def sigmoid_output_to_derivative(output):
return output*(1-output)

我真的不明白导数是怎么在这里找到的。会使用 SymPy找到衍生品是更好的选择?文章中的示例如何实现,特别是 output 会是一个类似于下面的列表:

[[ 0.44856632  0.51939863  0.45968497  0.59156505]
[ 0.28639589 0.32350963 0.31236398 0.51538526]
[ 0.40795614 0.62674606 0.23841622 0.49377636]
[ 0.25371248 0.42628115 0.14321233 0.41732254]]

所以,底线是:

  • 原始文章中的导数是如何计算的?代码中的公式我看懂了,但是,有理论依据吗?
  • 我们可以用另一种方法求导数吗?也许有更明确的方法?

谢谢。

最佳答案

sigmoid 函数之所以有用,主要是因为它的导数在输出方面很容易计算;导数是 f(x)*(1-f(x))

因此,没有必要使用基于 sigmoid 函数的库求导数,因为数学导数(上图)是已知的。推导见this .

关于python - Python中计算sigmoid函数导数的正确方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47965739/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com