classifier
Description
Examples
Basic Example
import { from } from 'rxjs';
import { classifier } from '@bottlenose/rxsgd';
const classifier$ = from([1, 2, 3, 4]).pipe(
classifier()
);
classifier$.subscribe(console.log);API
classifier({
learningRate=0.3,
initialState={intercept: 0, weights: [0, ...]},
})Since
Parameters
Options
Returns
Last updated