UNPKG

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

Version:

Data analysis model package without any dependencies

17 lines (13 loc) 186 B
import Layer from './base.js' /** * Output layer */ export default class OutputLayer extends Layer { calc(x) { return x } grad(bo) { return bo } } OutputLayer.registLayer()