UNPKG

@sapien/core

Version:

The Missing AI / ML Library for JavaScript.

10 lines (7 loc) 199 B
import { Tensor } from '@types' export abstract class Layer{ /* this method is does all the operation of a single layer. */ abstract feedForward(input:Tensor):Tensor; }