autoweka
Class TrajectoryParser
java.lang.Object
autoweka.TrajectoryParser
- Direct Known Subclasses:
- IRaceTrajectoryParser, RandomSearchTrajectoryParser, SMACTrajectoryParser, TPETrajectoryParser
public abstract class TrajectoryParser
- extends java.lang.Object
Abstract class that SMBO Methods must provide that allows for trajectories to be extracted after a run has completed
Method Summary |
static Trajectory |
getTrajectory(Experiment experiment,
java.io.File folder,
java.lang.String seed)
|
static void |
main(java.lang.String[] args)
Call this on a specific experiment to automatically create the correct trajectory parser that will
be used to extract the data |
abstract Trajectory |
parseTrajectory(Experiment experiment,
java.io.File folder,
java.lang.String seed)
Does the work for a specific trajectory |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
TrajectoryParser
public TrajectoryParser()
parseTrajectory
public abstract Trajectory parseTrajectory(Experiment experiment,
java.io.File folder,
java.lang.String seed)
- Does the work for a specific trajectory
main
public static void main(java.lang.String[] args)
- Call this on a specific experiment to automatically create the correct trajectory parser that will
be used to extract the data
getTrajectory
public static Trajectory getTrajectory(Experiment experiment,
java.io.File folder,
java.lang.String seed)