Passed
Push — master ( 28829a...6b2864 )
by Fernando
03:03
created

print_system   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 9
dl 0
loc 11
rs 10
c 0
b 0
f 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