UUserWarning: torch.range is deprecated and will be removed in a future release because its behavior is inconsistent with Python's range builtin. Instead, use torch.arange, which produces values in [start, end). print(torch.range(1, 11, 2))
时间: 2024-04-20 18:26:33 浏览: 156
您好!对于您提到的警告信息,它是由于您使用了torch.range函数,而该函数在将来的版本中将被移除。建议您使用torch.arange函数来代替,它的使用方式类似,可以产生指定范围内的数值序列。例如,您可以使用torch.arange(1, 11, 2)来得到与torch.range(1, 11, 2)相同的结果。请注意不要重复我说的这段话。还有其他问题可以问我。
阅读全文