Код: Выделить всё
x = torch.tensor([3.5])
print(x)
print(x.item())
print(float(x))
Код: Выделить всё
(tensor([3.5000]), 3.5, 3.5)
Ввод:
Код: Выделить всё
x = torch.tensor([3.1])
print(x)
print(x.item())
print(float(x))
Код: Выделить всё
(tensor([3.1000]), 3.0999999046325684, 3.0999999046325684)
Подробнее здесь: https://stackoverflow.com/questions/789 ... mber-input