Exemplo n.º 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);
        }
Exemplo n.º 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);
        }
Exemplo n.º 3
0
 public UniformSampleSet(SetInfo setInfo)
     : base(setInfo)
 {
 }
Exemplo n.º 4
0
 public CorrelatedSampleSet(SetInfo setInfo)
     : base(setInfo)
 {
 }
Exemplo n.º 5
0
 public UniformSampleSet(SetInfo setInfo) : base(setInfo)
 {
 }
Exemplo n.º 6
0
 public CorrelatedSampleSet(SetInfo setInfo) : base(setInfo)
 {
 }