Note: this page autoupdates while a run is in progress
(see end of log file)
1s
0B
BinaryClassification
Log file
===== MAIN: learn based on training data =====
=== START program1: ./run learn ../dataset3/train
=== START program2: ./run learn ../program1/data
Using hyperparameter c = 0.1
Reading training examples... (6 examples) done
Training set properties: 2 features, 2 classes
Iter 1: ......*(NumConst=1, SV=1, CEps=100.0000, QPEps=0.0000)
Iter 2: *(NumConst=2, SV=1, CEps=99.9639, QPEps=0.0000)
Iter 3: ......(NumConst=2, SV=1, CEps=0.0000, QPEps=0.0000)
Final epsilon on KKT-Conditions: 0.00000
Upper bound on duality gap: -0.00000
Dual objective value: dval=9.99819
Primal objective value: pval=9.99819
Total number of constraints in final working set: 2 (of 2)
Number of iterations: 3
Number of calls to 'find_most_violated_constraint': 12
Number of SV: 1
Norm of weight vector: |w|=0.06009
Value of slack variable (on working set): xi=99.96389
Value of slack variable (global): xi=99.96389
Norm of longest difference vector: ||Psi(x,y)-Psi(x,ybar)||=0.60093
Runtime in cpu-seconds: 0.00
Final number of constraints in cache: 12
Compacting linear model...done
Writing learned model...done
=== END program2: ./run learn ../program1/data --- OK [0s]
=== END program1: ./run learn ../dataset3/train --- OK [0s]
===== MAIN: predict/evaluate on train data =====
=== START program4: ./run stripLabels ../dataset3/train ../program0/evalTrain.in
=== END program4: ./run stripLabels ../dataset3/train ../program0/evalTrain.in --- OK [0s]
=== START program1: ./run predict ../program0/evalTrain.in ../program0/evalTrain.out
=== START program2: ./run predict ../program0/evalTrain.in ../program0/evalTrain.out.multiclass-output
Reading model...done.
Reading test examples...
ERROR: The class label '0.000000' of example number 1 is not greater than '1'!
./run:22: Failed (RuntimeError)
=== END program2: ./run predict ../program0/evalTrain.in ../program0/evalTrain.out.multiclass-output --- FAILED [0s]
=== END program1: ./run predict ../program0/evalTrain.in ../program0/evalTrain.out --- FAILED [0s]
Run specification
supervised-learning: Main entry for supervised learning for training and testing a program on a dataset.
(learner:Program) binary-to-multi: Allows multiclass classification to be run on binary classification datasets (trivial reduction).
(multiclassLearner:Program[MulticlassClassification]) svmlight_multiclass-linear: SVMlight for multiclass classification (http://svmlight.joachims.org/svm_multiclass.html)
(dataset:Dataset) forTestingOnly: only 4 positive and 4 negative data, it's used by me to test this website and get familiar with the flowchart for my further usage.
(stripper:Program[Strip]) binary-utils: Validates and inspects a dataset in BinaryClassification format.
(evaluator:Program[Evaluate]) classification-evaluator: Evaluates predictions of classification datasets (discrete outputs).
When you generate a run, you can set a time limit for the run (no more than 24 hours). After that point, we will terminate the program.
Your program can use 1.5GB of memory. More information here.
Go to the page for the run and look at the log file for signs of the responsible error.
You can also download the run and run it locally on your machine (a README file should
be included in the download which provides more information).
We said that a run was simply a program/dataset pair, but that's not the full story.
A run actually includes other helper programs such as the evaluation program and
various programs for reductions (e.g., one-versus-all, hyperparameter tuning).
More formally, a run is a given by a run specification,
which can be found on the page for any run.
A run specification is a tree where each internal node represents a program
and its children represents the arguments to be passed into its constructor.
For example, the one-versus-all program takes your binary classification program
as a constructor argument and behaves like a multiclass classification program.
Must be logged in to post comments.