UNPKG

@ai-on-browser/data-analysis-models

Version:

Data analysis model package without any dependencies

23 lines (22 loc) 439 B
/** * Rectified power unit layer */ export default class RectifiedPowerUnitLayer extends Layer { /** * @param {object} config config * @param {number} [config.s] s */ constructor({ s, ...rest }: { s?: number; }); _s: number; calc(x: any): any; _i: any; grad(bo: any): any; _bo: any; toObject(): { type: string; s: number; }; } import Layer from './base.js';