Total Complexity | 0 |
Total Lines | 11 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | import platform |
||
2 | import torchio |
||
3 | import torch |
||
4 | import numpy |
||
5 | |||
6 | |||
7 | print('Platform:', platform.platform()) # noqa: T001 |
||
8 | print('TorchIO: ', torchio.__version__) # noqa: T001 |
||
9 | print('PyTorch: ', torch.__version__) # noqa: T001 |
||
10 | print('NumPy: ', numpy.__version__) # noqa: T001 |
||
11 |