mirror of
https://github.com/ml-explore/mlx.git
synced 2025-09-04 23:24:41 +08:00
Activations LeakyReLU / PReLU / Softplus / Mish (#109)
* Leaky_relu / prelu / softplus / mish * added tests * updated bench * remove torch refs, add init to PReLU * added arvix reference to mish * added missing docs
This commit is contained in:
@@ -449,31 +449,19 @@ class TestNN(mlx_tests.MLXTestCase):
|
||||
self.assertEqual(y.shape, [3])
|
||||
self.assertEqual(y.dtype, mx.float32)
|
||||
|
||||
def test_step_activation(self):
|
||||
x = mx.arange(-3, 4)
|
||||
expected = mx.array([0, 0, 0, 0, 0, 1, 1])
|
||||
y = nn.Step()(x)
|
||||
self.assertTrue(mx.array_equal(y, expected))
|
||||
|
||||
y = nn.Step(2)(x)
|
||||
expected = mx.array([0, 0, 0, 0, 0, 0, 1])
|
||||
self.assertTrue(mx.array_equal(y, expected))
|
||||
|
||||
def test_selu(self):
|
||||
x = mx.arange(-3, 4)
|
||||
expected = mx.array(
|
||||
[
|
||||
-1.670563817024231,
|
||||
-1.5201621055603027,
|
||||
-1.1113275289535522,
|
||||
0.0,
|
||||
1.0506999492645264,
|
||||
2.1013998985290527,
|
||||
3.152099847793579,
|
||||
]
|
||||
def test_prelu(self):
|
||||
self.assertEqualArray(
|
||||
[mx.array([1.0, -1.0, 0.0, 0.5])],
|
||||
nn.PReLU(),
|
||||
mx.array([1.0, -0.25, 0.0, 0.5]),
|
||||
)
|
||||
|
||||
def test_mish(self):
|
||||
self.assertEqualArray(
|
||||
[mx.array([1.0, -1.0, 0.0, 0.5])],
|
||||
nn.Mish(),
|
||||
mx.array([0.8651, -0.3034, 0.0000, 0.3752]),
|
||||
)
|
||||
y = nn.SELU()(x)
|
||||
self.assertTrue(mx.allclose(y, expected))
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
Reference in New Issue
Block a user