(ys,
xs,
gate_gradients=False,
aggregation_method=None,
name="hessians")
| 398 | |
| 399 | @tf_export("hessians", v1=[]) |
| 400 | def HessiansV2(ys, |
| 401 | xs, |
| 402 | gate_gradients=False, |
| 403 | aggregation_method=None, |
| 404 | name="hessians"): |
| 405 | return hessians(ys, xs, name=name, gate_gradients=gate_gradients, |
| 406 | aggregation_method=aggregation_method) |
| 407 | |
| 408 | |
| 409 | HessiansV2.__doc__ = hessians.__doc__ |
nothing calls this directly
no test coverage detected