Exemple #1
0
 def __init__(self, secuml_conf, dataset_conf, features_conf,
              annotations_conf, classifier_conf, name=None, parent=None,
              fold_id=None, kind='test'):
     ExpConf.__init__(self, secuml_conf, dataset_conf, features_conf,
                      annotations_conf, classifier_conf, name=name,
                      parent=parent)
     self.fold_id = fold_id
     self.kind = kind
Exemple #2
0
 def __init__(self,
              secuml_conf,
              dataset_conf,
              features_conf,
              annotations_conf,
              multiclass,
              name=None,
              parent=None):
     ExpConf.__init__(self,
                      secuml_conf,
                      dataset_conf,
                      features_conf,
                      annotations_conf,
                      None,
                      name=name,
                      parent=parent)
     self.multiclass = multiclass
Exemple #3
0
 def __init__(self,
              secuml_conf,
              dataset_conf,
              features_conf,
              annotations_conf,
              core_conf,
              name=None,
              parent=None,
              already_trained=None):
     self.already_trained = already_trained
     ExpConf.__init__(self,
                      secuml_conf,
                      dataset_conf,
                      features_conf,
                      annotations_conf,
                      core_conf,
                      name=name,
                      parent=parent)
Exemple #4
0
 def __init__(self,
              secuml_conf,
              dataset_conf,
              features_conf,
              annotations_conf,
              core_conf,
              name=None,
              parent=None,
              label='all'):
     ExpConf.__init__(self,
                      secuml_conf,
                      dataset_conf,
                      features_conf,
                      annotations_conf,
                      core_conf,
                      name=name,
                      parent=parent)
     self.label = label
Exemple #5
0
 def __init__(self,
              secuml_conf,
              dataset_conf,
              features_conf,
              annotations_conf,
              core_conf,
              name=None,
              parent=None,
              fold_id=None):
     ExpConf.__init__(self,
                      secuml_conf,
                      dataset_conf,
                      features_conf,
                      annotations_conf,
                      core_conf,
                      name=name,
                      parent=parent)
     self.fold_id = fold_id
Exemple #6
0
 def __init__(self,
              secuml_conf,
              dataset_conf,
              features_conf,
              annotations_conf,
              core_conf,
              alerts_conf,
              name=None,
              parent=None,
              already_trained=None,
              no_training_detection=False):
     self.already_trained = already_trained
     ExpConf.__init__(self,
                      secuml_conf,
                      dataset_conf,
                      features_conf,
                      annotations_conf,
                      core_conf,
                      name=name,
                      parent=parent)
     self.alerts_conf = alerts_conf
     self.no_training_detection = no_training_detection