Package ai.libs.jaicore.ml.core.dataset
Interface IDataset<I>
-
- All Superinterfaces:
java.util.Collection<I>,java.lang.Iterable<I>
- All Known Subinterfaces:
AILabeledAttributeArrayDataset<I,L>,AINumericLabeledAttributeArrayDataset<I,L>,ILabeledAttributeArrayDataset<L>,INumericLabeledIAttributeDataset<L>,IOrderedDataset<I>,IOrderedLabeledAttributeArrayDataset<I,L>,IOrderedLabeledDataset<I,L>
- All Known Implementing Classes:
DyadRankingDataset,SimpleDataset,TimeSeriesDataset,WekaInstances
public interface IDataset<I> extends java.util.Collection<I>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IDataset<I>createEmpty()Creates an empty copy of the same structure (and same type).intgetFrequency(I instance)
-
-
-
Method Detail
-
createEmpty
IDataset<I> createEmpty() throws DatasetCreationException
Creates an empty copy of the same structure (and same type).- Returns:
- The newly created dataset.
- Throws:
DatasetCreationException
-
getFrequency
int getFrequency(I instance)
-
-