简体   繁体   中英

How to convert torch tensor to float?

I am using flask to do inference and I am getting this result. Is their any way to convert this tensor into float because I want to use this result to display in a react app

{
result: {
predictions: "tensor([[-3.4333]], grad_fn=<AddmmBackward>)"
}
}

From Torch.Tensor.item docs:

x = torch.tensor([1.0])

print((x.item())

output:

1.0

type check:

print(type(x.item())

output:

float

You can also use tensor.to(torch.float)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM