Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
constructor(){
super();
this.nnFactory = new NeuronalNetworkFactory({
inputSize: INPUT_FEATURES,
outputSize: OUTPUTS
});
this.tickerStream = new TickerStream();
this.ss = null;
this.css = [];
this.nets = {};
this.buffers = {};
this.constantPredictions = {};
this.drifts = {};
this.performanceBuffer = [];
this.inTraining = false;
this.performanceSinceStart = 0;
this.expectedPerformanceSinceStart = 0;
this.ratingStats = {
good: 0,
ok: 0,