def softmax(x): e_x = np.exp(x - np.max(x)) out = e_x / e_x.sum() return out
提 问题
写 面经
写 文章
微信 公众号
回到 顶部
没有帐户? 立即注册
已有帐号?立即登录