作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在 Keras 中编写自己的循环层,并在 Keras 中注意到了这一行。来源:
# Properly set learning phase on output tensor.
if 0 < self.dropout + self.recurrent_dropout:
if training is None:
output._uses_learning_phase = True
in_train_phase
的代码:
if training is None:
training = learning_phase()
uses_learning_phase = True
else:
uses_learning_phase = False
_uses_learning_phase
在
output
在我的自定义循环层中?
最佳答案
介绍
“训练旗”是指to enable a Model (或层)在预测结果或正在测试时表现与训练不同。
根据所使用的后端,Keras 可能需要实现自己的 bool “训练标志”(在 CNTK 上,对于 Keras 2.2.4)或者可以使用原生后端张量(如 Tensorflow )因此动态目的代码是融合的。
结果层类has a property描述如下:
uses_learning_phase: Whether any operation
of the layer uses `K.in_training_phase()`
or `K.in_test_phase()`.
training = learning_phase()
关于tensorflow - Keras 中的 _uses_learning_phase 是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52295852/
我正在尝试在 Keras 中编写自己的循环层,并在 Keras 中注意到了这一行。来源: # Properly set learning phase on output tensor.
我是一名优秀的程序员,十分优秀!