UNPKG

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

Version:

Data analysis model package without any dependencies

15 lines (14 loc) 296 B
/** * MSE loss layer */ export default class MSELayer extends Layer { bind({ supervisor }: { supervisor: any; }): void; _t: any; calc(x: any): Matrix<T>; _i: any; grad(bo: any): any; } import Layer from './base.js'; import Matrix from '../../../util/matrix.js';