IF YOU WOULD LIKE TO GET AN ACCOUNT, please write an email to s dot adaszewski at gmail dot com. User accounts are meant only to report issues and/or generate pull requests. This is a purpose-specific Git hosting for ADARED projects. Thank you for your understanding!
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

test_weights.py 650B

il y a 4 ans
1234567891011121314151617181920212223
  1. from icosagon.weights import init_glorot
  2. import torch
  3. import numpy as np
  4. def test_init_glorot_01():
  5. torch.random.manual_seed(0)
  6. res = init_glorot(10, 20)
  7. torch.random.manual_seed(0)
  8. rnd = torch.rand((10, 20))
  9. init_range = np.sqrt(6.0 / 30)
  10. expected = -init_range + 2 * init_range * rnd
  11. assert torch.all(res == expected)
  12. def test_init_glorot_02():
  13. torch.random.manual_seed(0)
  14. res = init_glorot(20, 10)
  15. torch.random.manual_seed(0)
  16. rnd = torch.rand((20, 10))
  17. init_range = np.sqrt(6.0 / 30)
  18. expected = -init_range + 2 * init_range * rnd
  19. assert torch.all(res == expected)