- Deep Learning with PyTorch
- Vishnu Subramanian
- 33字
- 2021-06-24 19:16:23
Vectors (1-D tensors)
A vector is simply an array of elements. For example, we can use a vector to store the average temperature for the last week:
temp = torch.FloatTensor([23,24,24.5,26,27.2,23.0])
temp.size()
Output - torch.Size([6])