-
Notifications
You must be signed in to change notification settings - Fork 26.3k
Open
Labels
module: deprecationtriagedThis issue has been looked at a team member, and triaged and prioritized into an appropriate moduleThis issue has been looked at a team member, and triaged and prioritized into an appropriate module
Description
torch.range() is deprecated; its documentation has a deprecation warning and attempting to use it throws a warning:
torch.range(1, 10)
: UserWarning: 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).
tensor([ 1., 2., 3., 4., 5., 6., 7., 8., 9., 10.])
It's time to remove it.
Metadata
Metadata
Assignees
Labels
module: deprecationtriagedThis issue has been looked at a team member, and triaged and prioritized into an appropriate moduleThis issue has been looked at a team member, and triaged and prioritized into an appropriate module