java.lang.Object
es.upm.fi.cig.multictbnc.experiments.implementationsexperiments.featurestreamexperiments.FeatureStreamImplementationExperiment
es.upm.fi.cig.multictbnc.experiments.implementationsexperiments.featurestreamexperiments.FeatureStreamWithoutFSSExperiment

public class FeatureStreamWithoutFSSExperiment extends FeatureStreamImplementationExperiment
Represents an experiment for processing a feature stream dataset without online feature subset selection but with model updates.
  • Constructor Details

    • FeatureStreamWithoutFSSExperiment

      public FeatureStreamWithoutFSSExperiment(String pathFeatureStream, String nameTimeVariable, List<String> nameClassVariables, DatasetReader initialDatasetReader, DatasetReader testDatasetReader, int experimentNumber, int numFeatures, boolean areModelsValidated) throws UnreadDatasetException, IOException
      Initializes a FeatureStreamWithoutFSSExperiment with the provided configuration parameters.
      Parameters:
      pathFeatureStream - path to the feature stream
      nameTimeVariable - name of the time variable
      nameClassVariables - list of names of class variables
      initialDatasetReader - DatasetReader for the initial dataset
      testDatasetReader - DatasetReader for the test dataset
      experimentNumber - number identifying the experiment
      numFeatures - number of features in the dataset (used to identify results files)
      areModelsValidated - boolean indicating whether the models should be validated
      Throws:
      UnreadDatasetException - if there is an issue reading the dataset
      IOException - if there is an I/O error
  • Method Details