Computes a tensor with all of its values clipped to fall between min_value and max_value, i.e. min(max(x, min_value), max_value). The output tensor has the same shape as x.
op_clip(x, min_value, max_value, name = "")
x | matrix or CNTK Function that outputs a tensor |
---|---|
name | (str) the name of the Function instance in the network |