标签: python keras
在以下Python代码中,(x)是什么意思?
(x)
Dropout(0.8)(x)
答案 0 :(得分:0)
(x)使用前面的函数引用(由Dropout(0.8)返回)以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。
1.0