Exemple #1
0
        protected SetBase(SetInfo setInfo)
        {
            _setInfo = setInfo;

            //Read the input file IPD discarding all IPDs that are not within the given threshold.
            _masterSampleIpds = FileUtilities.RemoveIpds(setInfo.SampleFilePath, setInfo.IpdThresholdMax, setInfo.IpdThresholdMin);

            //Get the list of training IPDs
            _trainingIpds = FileUtilities.ParseIPDFile(setInfo.TrainingFilePath);
        }
Exemple #2
0
        protected SetBase(SetInfo setInfo)
        {
            _setInfo = setInfo;

            //Read the input file IPD discarding all IPDs that are not within the given threshold.
            _masterSampleIpds = FileUtilities.RemoveIpds(setInfo.SampleFilePath, setInfo.IpdThresholdMax, setInfo.IpdThresholdMin);

            //Get the list of training IPDs
            _trainingIpds = FileUtilities.ParseIPDFile(setInfo.TrainingFilePath);
        }
Exemple #3
0
 public UniformSampleSet(SetInfo setInfo)
     : base(setInfo)
 {
 }
 public CorrelatedSampleSet(SetInfo setInfo)
     : base(setInfo)
 {
 }
 public UniformSampleSet(SetInfo setInfo) : base(setInfo)
 {
 }
Exemple #6
0
 public CorrelatedSampleSet(SetInfo setInfo) : base(setInfo)
 {
 }