threshold¶ class torch.ao.nn.quantized.functional.threshold(input, threshold, value)[源][源]¶ 逐元素应用量化版本的阈值函数 x={x如果 x>thresholdvalue否则x = \begin{cases} x & \text{if~} x > \text{threshold} \\ \text{value} & \text{otherwise} \end{cases} x={xvalue如果 x>threshold否则更多详情请参见 Threshold 。 返回类型 Tensor