pytorch 中 theano.tensor.clip 的等价物是什么?

what is the equivalent of theano.tensor.clip in pytorch?

我想将我的张量(不是梯度)值裁剪到某个范围内。 pytorch中有没有像theano中的函数theano.tensor.clip()一样的函数?

您要搜索的函数叫做torch.clamp。您可以找到文档 here