0.99.21
Joao-L-S-Almeida
released this
12 May 17:21
·
388 commits
to main
since this release
- Global dtype detection for arrays and tensors used in neural network models:
In [1]: import torch
In [2]: from simulai import ARRAY_DTYPE
In [3]: ARRAY_DTYPE
Out[3]: numpy.float32
In [1]: import torch
In [2]: torch.set_default_dtype(torch.float64)
In [3]: from simulai import ARRAY_DTYPE
In [4]: ARRAY_DTYPE
Out[4]: numpy.float64
- Bug fixes.