Hitoshi Manabe

Results 1 comments of Hitoshi Manabe

Hi @svjan5 My softplus function has max(0, x) term, so it doesn’t ignore the label, I think. ```python In [23]: def softplus(x): return np.maximum(0, x)+np.log(1+np.exp(-np.abs(-x))) In [35]: softplus(1) Out[35]: 1.3132616875182228...