1 Star 1 Fork 1

shieldforever/DeepLearning

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
dropout.py 519 Bytes
一键复制 编辑 原始数据 按行查看 历史
librauee 提交于 2019-04-21 15:02 . dropout
# -*- coding: utf-8 -*-
"""
Created on Sat Apr 20 20:02:24 2019
@author: Administrator
"""
import numpy as np
class Dropout:
def __init__(self,dropout_ratio=0.5):
self.dropout_ratio=dropout_ratio
self.mask=None
def forward(self,x,train_flg=True):
if train_flg:
self.mask=np.random.rand(*x.shape)>self.dropout_ratio
return x*self.mask
else:
return x*(1.0-self.dropout_ratio)
def backward(self,dout):
return dout*self.mask
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/shieldforever/DeepLearning.git
git@gitee.com:shieldforever/DeepLearning.git
shieldforever
DeepLearning
DeepLearning
master

搜索帮助