tf.nn.dropout(
x, 输入#
keep_prob, #保留结果的比例,每个元素被保存的概率
noise_shape=None,
seed=None,
name=None
)
tensorflow中的dropout就是:使输入tensor中某些元素变为0,其它没变0的元素值变为原来的1/keep_prob大小!
Drop后的输出是与输入tensor shape一样。
tf.nn.dropout(
x, 输入#
keep_prob, #保留结果的比例,每个元素被保存的概率
noise_shape=None,
seed=None,
name=None
)
tensorflow中的dropout就是:使输入tensor中某些元素变为0,其它没变0的元素值变为原来的1/keep_prob大小!
Drop后的输出是与输入tensor shape一样。

被折叠的 条评论
为什么被折叠?