Note: this page autoupdates while a run is in progress
On ./run predict <in> <out>, your program (../program1) did not write to <out>.
6s
416M
Regression
Log file
./run:3: warning: parenthesize argument(s) for future version
Note: Some input files use unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
Regression
===== MAIN: learn based on training data =====
=== START program1: ./run learn ../dataset2/train
./run:3: warning: parenthesize argument(s) for future version
weka.core.WekaException: weka.classifiers.functions.PaceRegression: Not enough training instances with class labels (required: 24, provided: 4)!
at weka.core.Capabilities.test(Capabilities.java:1126)
at weka.core.Capabilities.test(Capabilities.java:1011)
at weka.core.Capabilities.testWithFail(Capabilities.java:1290)
at weka.classifiers.functions.PaceRegression.buildClassifier(PaceRegression.java:271)
at MainScript.main(MainScript.java:27)
Regression
=== END program1: ./run learn ../dataset2/train --- OK [0s]
===== MAIN: predict/evaluate on train data =====
=== START program3: ./run stripLabels ../dataset2/train ../program0/evalTrain.in
=== END program3: ./run stripLabels ../dataset2/train ../program0/evalTrain.in --- OK [0s]
=== START program1: ./run predict ../program0/evalTrain.in ../program0/evalTrain.out
./run:3: warning: parenthesize argument(s) for future version
java.io.FileNotFoundException: model_file (No such file or directory)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.<init>(FileInputStream.java:137)
at java.io.FileInputStream.<init>(FileInputStream.java:96)
at weka.core.SerializationHelper.read(SerializationHelper.java:232)
at MainScript.main(MainScript.java:47)
Regression
=== END program1: ./run predict ../program0/evalTrain.in ../program0/evalTrain.out --- OK [0s]
Failed: On ./run predict <in> <out>, your program (../program1) did not write to <out>.
Run specification
supervised-learning: Main entry for supervised learning for training and testing a program on a dataset.
(learner:Program) PaceRegression_weka_numeric: This programs is part of the WEKA classifier library. The code used to generate this program is from the java class 'weka/classifiers/functions/PaceRegression.java' from WEKA's libraries.
The following description was taken from this classes JavaDoc information:
---------------------
Class for building pace regression linear models and using them for prediction.
Under regularity conditions, pace regression is provably optimal when the number of coefficients tends to infinity. It consists of a group of estimators that are either overall optimal or optimal under certain conditions.
The current work of the pace regression theory, and therefore also this implementation, do not handle:
- missing values
- non-binary nominal attributes
- the case that n - k is small where n is the number of instances and k is the number of coefficients (the threshold used in this implmentation is 20)
For more information see:
Wang, Y (2000). A new approach to fitting linear models in high dimensional spaces. Hamilton, New Zealand.
Wang, Y., Witten, I. H.: Modeling for optimal probability prediction. In: Proceedings of the Nineteenth International Conference in Machine Learning, Sydney, Australia, 650-657, 2002.
---------------------
NOTE: This algorithm has no parameter tuning, it is using the default WEKA parameters
(dataset:Dataset) regression-sample: Sample dataset for sanity checking.
(stripper:Program[Strip]) regression-utils: Validates and inspects a dataset in Regression format.
(evaluator:Program[Evaluate]) regression-evaluator: Evaluates predictions of Regression datasets (continuous outputs).
Results
doTrain:
predict:
success: true
time: 0
strip:
success: true
time: 0
exitCode: 1
learn:
success: true
time: 0
message: On ./run predict , your program (../program1) did not write to .
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.