在Dropout(0.8)(x)中,(x)是什么意思?

时间:2018-09-17 07:02:33

标签: python keras

在以下Python代码中,(x)是什么意思?

Dropout(0.8)(x)

1 个答案:

答案 0 :(得分:0)

(x)使用前面的函数引用(由Dropout(0.8)返回)以x作为参数进行函数调用。

例如:

def Dropout(a):
    def func(b):
        return a + b
    return func
x = 0.2
print(Dropout(0.8)(x))

将输出1.0