Package org.tribuo.data
Class CompletelyConfigurableTrainTest.ConfigurableTrainTestOptions
java.lang.Object
org.tribuo.data.CompletelyConfigurableTrainTest.ConfigurableTrainTestOptions
- All Implemented Interfaces:
com.oracle.labs.mlrg.olcut.config.Options
- Enclosing class:
- CompletelyConfigurableTrainTest
public static class CompletelyConfigurableTrainTest.ConfigurableTrainTestOptions
extends Object
implements com.oracle.labs.mlrg.olcut.config.Options
Command line options.
-
Field Summary
Modifier and TypeFieldDescriptionint
Remove features which occur fewer than m times.Path to serialize model to.Load the testing DataSource from the config file.Trainer<?>
Load a trainer from the config file.Load the training DataSource from the config file.Load a transformation map from the config file.Fields inherited from interface com.oracle.labs.mlrg.olcut.config.Options
header
-
Constructor Summary
-
Method Summary
-
Field Details
-
outputPath
@Option(charName='f', longName="model-output-path", usage="Path to serialize model to.") public Path outputPathPath to serialize model to. -
trainSource
@Option(charName='u', longName="train-source", usage="Load the training DataSource from the config file.") public ConfigurableDataSource<?> trainSourceLoad the training DataSource from the config file. -
testSource
@Option(charName='v', longName="test-source", usage="Load the testing DataSource from the config file.") public ConfigurableDataSource<?> testSourceLoad the testing DataSource from the config file. -
trainer
@Option(charName='t', longName="trainer", usage="Load a trainer from the config file.") public Trainer<?> trainerLoad a trainer from the config file. -
transformationMap
@Option(longName="transformer", usage="Load a transformation map from the config file.") public TransformationMap transformationMapLoad a transformation map from the config file. -
minCount
@Option(charName='m', longName="minimum-count", usage="Remove features which occur fewer than <int> times.") public int minCountRemove features which occur fewer than m times.
-
-
Constructor Details
-
ConfigurableTrainTestOptions
public ConfigurableTrainTestOptions()
-
-
Method Details
-
getOptionsDescription
- Specified by:
getOptionsDescription
in interfacecom.oracle.labs.mlrg.olcut.config.Options
-