@ai-on-browser/data-analysis-models
Version:
Data analysis model package without any dependencies
17 lines (16 loc) • 330 B
TypeScript
/**
* Huber loss layer
*/
export default class HuberLayer extends Layer {
bind({ supervisor }: {
supervisor: any;
}): void;
_t: any;
calc(x: any): Matrix<T>;
_i: any;
_cond: any;
grad(bo: any): any;
_bi: any;
}
import Layer from './base.js';
import Matrix from '../../../util/matrix.js';