Spaces:
Running
Running
File size: 410 Bytes
c61ccee |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
from torch._functorch.eager_transforms import (
vjp,
jvp,
jacrev,
jacfwd,
hessian,
functionalize,
linearize
)
from torch._functorch.apis import grad, grad_and_value
from torch._functorch.functional_call import functional_call, stack_module_state
from torch._functorch.batch_norm_replacement import replace_all_batch_norm_modules_
from torch._functorch.apis import vmap
|