|  View source on GitHub | 
Computes a sigmoid-like interpolation function on the unit-interval.
tfp.math.smootherstep(
    x, name=None
)
Equivalent to:
x = tf.clip_by_value(x, clip_value_min=0., clip_value_max=1.)
y = x**3. * (6. * x**2. - 15. * x + 10.)
For more details see [Wikipedia][1].
| Args | |
|---|---|
| x | floatTensor. | 
| name | Python strname prefixed to Ops created by this function.
Default value:None(i.e.,'smootherstep'). | 
| Returns | |
|---|---|
| smootherstep | floatTensorwith the same shape and dtype asx,
representing the value of the smootherstep function. | 
References
[1]: "Smoothstep." Wikipedia. https://en.wikipedia.org/wiki/Smoothstep#Variations