UNPKG

scalar-autograd

Version:

Scalar-based reverse-mode automatic differentiation in TypeScript.

8 lines (7 loc) 217 B
import { Value } from './Value'; export declare class ValueActivation { static relu(x: Value): Value; static softplus(x: Value): Value; static tanh(x: Value): Value; static sigmoid(x: Value): Value; }