main.py 文件源码

python
阅读 27 收藏 0 点赞 0 评论 0

项目:enc_nli 作者: lukecq1231 项目源码 文件源码
def dropout_layer(state_before, use_noise, trng):
    """
    tensor switch is like an if statement that checks the
    value of the theano shared variable (use_noise), before
    either dropping out the state_before tensor or
    computing the appropriate activation. During training/testing
    use_noise is toggled on and off.
    """
    proj = tensor.switch(
        use_noise,
        state_before * trng.binomial(state_before.shape, p=0.5, n=1,
                                     dtype=state_before.dtype),
        state_before * 0.5)
    return proj


# make prefix-appended name
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号