Xinwei Liu
Results
8
issues of
Xinwei Liu
new translation
```python with tf.GradientTape(persistent=True) as g: g.watch(x) y = x * x z = y * y dz_dx = g.gradient(z, x) # 108.0 (4*x^3 at x = 3) dy_dx = g.gradient(y,...
Code: ```python import torch from torch import nn, Tensor from torch.nn import functional as F def _make_divisible(v, divisor, min_value=None): """ This function is taken from the original tf repo. It...
type: bug
needs-triage