pytorch 生成1到10的随机数
时间: 2024-05-02 15:20:14 浏览: 130
产生1-10不重复的随机数
4星 · 用户满意度95%
以下是使用pytorch生成1到10的随机数的代码:
```python
import torch
# 生成一个1到10的随机整数
rand_int = torch.randint(low=1, high=11, size=(1,))
print(rand_int.item()) # 输出随机整数
```
输出结果示例:
```
7
```
阅读全文