Package ai.libs.jaicore.ml.cache
Class LoadDataSetInstruction
- java.lang.Object
-
- ai.libs.jaicore.ml.cache.Instruction
-
- ai.libs.jaicore.ml.cache.LoadDataSetInstruction
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
LoadDataSetInstructionForARFFFile,LoadDatasetInstructionForOpenML
public abstract class LoadDataSetInstruction extends Instruction
Instruction for dataset loading, provider and id are used to identify the data set. SeeReproducibleInstancesfor more information.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description LoadDataSetInstruction(DataProvider provider, java.lang.String id)Constructor to create an instruction for loading a dataset that can be converted to json.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetId()DataProvidergetProvider()-
Methods inherited from class ai.libs.jaicore.ml.cache.Instruction
clone, getOutputInstances
-
-
-
-
Constructor Detail
-
LoadDataSetInstruction
public LoadDataSetInstruction(DataProvider provider, java.lang.String id)
Constructor to create an instruction for loading a dataset that can be converted to json.- Parameters:
provider- used to identify origin of the datasetid- used to identify dataset
-
-
Method Detail
-
getProvider
public DataProvider getProvider()
-
getId
public java.lang.String getId()
-
-