torch.autograd.JacobianOptions
export interface JacobianOptions {
/** If true, the Jacobian will be computed in a differentiable manner. @default false */
create_graph?: boolean;
/** If true, error is raised if output is independent of input. @default false */
strict?: boolean;
/** If true, use vmap to compute (not yet implemented). @default false */
vectorize?: boolean;
}create_graph(boolean)optional- – If true, the Jacobian will be computed in a differentiable manner. @default false
strict(boolean)optional- – If true, error is raised if output is independent of input. @default false
vectorize(boolean)optional- – If true, use vmap to compute (not yet implemented). @default false
Options for jacobian.