out.close();
}
static public AbstractModel getModel(AbstractTrainSpace space, int numThreads, byte solver, double cost, double eps, double bias)
{
AbstractLiblinear algorithm = null;
switch (solver)
{
case AbstractAlgorithm.SOLVER_LIBLINEAR_LR2_L1_SVC:
algorithm = new LiblinearL2SVC((byte)1, cost, eps, bias); break;