@hoff97/tensor-js
Version:
PyTorch like deep learning inferrence library
9 lines (8 loc) • 313 B
TypeScript
import { DType, Tensor } from '../../../library';
import { BackwardOp, VariableI } from '../../types';
export declare class LogBack<DTpe extends DType> implements BackwardOp<DTpe> {
input: VariableI<DTpe>;
constructor(input: VariableI<DTpe>);
backward(grad: Tensor<DTpe>): void;
delete(): void;
}