internal SsaAnomalyDetectionBaseWrapper(SsaOptions options, string name, IHostEnvironment env)
 {
     InternalTransform = new SsaAnomalyDetectionBase(options, name, env, this);
 }
 internal SsaAnomalyDetectionBaseWrapper(IHostEnvironment env, ModelLoadContext ctx, string name)
 {
     InternalTransform = new SsaAnomalyDetectionBase(env, ctx, name);
 }
Exemplo n.º 3
0
 private protected override void InitializeAnomalyDetector()
 {
     _parentAnomalyDetector = (SsaAnomalyDetectionBase)Parent;
     _model = _parentAnomalyDetector.Model;
 }