Implementation. Activation LeakyRelu = Activation( 'LeakyRelu', (double x) => x < 0 ? 0.01 * x : x, (double y) => y < 0 ? 0.01 : 1.0, );.
確定! 回上一頁