"INSTALL/vscode:/vscode.git/clone" did not exist on "1d034f0a24ed466d5942689540fcbdc7ec262d05"
test_activations.py 954 Bytes
Newer Older
1
2
3
import unittest

from transformers import is_torch_available
4
from transformers.testing_utils import require_torch
5
6
7
8
9


if is_torch_available():
    import torch

10
11
    from transformers.activations import _gelu_python, gelu_new, get_activation

12
13
14
15
16
17
18
19
20
21
22
23
24

@require_torch
class TestActivations(unittest.TestCase):
    def test_gelu_versions(self):
        x = torch.Tensor([-100, -1, -0.1, 0, 0.1, 1.0, 100])
        torch_builtin = get_activation("gelu")
        self.assertTrue(torch.eq(_gelu_python(x), torch_builtin(x)).all().item())
        self.assertFalse(torch.eq(_gelu_python(x), gelu_new(x)).all().item())

    def test_get_activation(self):
        get_activation("swish")
        get_activation("relu")
        get_activation("tanh")
Patrick von Platen's avatar
Patrick von Platen committed
25
26
        get_activation("gelu_new")
        get_activation("gelu_fast")
27
28
29
30
        with self.assertRaises(KeyError):
            get_activation("bogus")
        with self.assertRaises(KeyError):
            get_activation(None)