- Deep Learning with PyTorch
- Vishnu Subramanian
- 33字
- 2025-02-26 16:16:03
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])