This repository was archived by the owner on Nov 19, 2020. It is now read-only.

Description
I'm creating a SMOR (
SequentialMinimalOptimizationRegression
) with Accord.NET
This is my code:
smo = new SequentialMinimalOptimizationRegression(machine, InPut, OuPut);
My input is a double[1119][9] //x1,x2,...,x9
My output i a double[1119][1] //y1
but creating the SMOR takes around 29 minutes, someone knows why this takes a so much time?