UNPKG

@sapien/core

Version:

The Missing AI / ML Library for JavaScript.

5 lines (4 loc) 126 B
import { Tensor } from '@types'; export declare abstract class Layer { abstract feedForward(input: Tensor): Tensor; }