Skip to content
Snippets Groups Projects
Commit 4e62ebc5 authored by Steve Reis's avatar Steve Reis
Browse files

fix(exareme): Swap tab order in linear reg handler

parent 436736c7
No related branches found
No related tags found
No related merge requests found
...@@ -123,10 +123,10 @@ export default class LinearRegressionHandler extends BaseHandler { ...@@ -123,10 +123,10 @@ export default class LinearRegressionHandler extends BaseHandler {
const improvedData = JSON.parse(jsonData); const improvedData = JSON.parse(jsonData);
const model = this.getModel(improvedData);
if (model) experiment.results.push(model);
const coefs = this.getCoefficients(improvedData); const coefs = this.getCoefficients(improvedData);
if (coefs) experiment.results.push(coefs); if (coefs) experiment.results.push(coefs);
const model = this.getModel(improvedData);
if (model) experiment.results.push(model);
} }
} }
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment