Skip to content

Commit

Permalink
Merge branch 'teaser' of https://github.com/aimclub/Fedot.Industrial
Browse files Browse the repository at this point in the history
…into teaser
  • Loading branch information
leostre committed Jul 16, 2024
2 parents 2e2ad91 + 96c1009 commit 81b2a67
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 0 additions & 2 deletions fedot_ind/core/models/early_tc/economy_k.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,5 +88,3 @@ def _transform_score(self, time):
scores *= n / (n - 1) * 2
scores -= 1
return scores


5 changes: 4 additions & 1 deletion fedot_ind/core/models/quantile/quantile_extractor.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,10 @@ def __init__(self, params: Optional[OperationParameters] = None):
self.stride = params.get('stride', 1)
self.add_global_features = params.get('add_global_features', True)
self.logging_params.update({'Wsize': self.window_size,
'Stride': self.stride})
'Stride': self.stride,
# 'VarTh': self.var_threshold
}
)

def _concatenate_global_and_local_feature(
self,
Expand Down
4 changes: 4 additions & 0 deletions fedot_ind/core/repository/model_repository.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@
from sklearn.tree import DecisionTreeClassifier, DecisionTreeRegressor
from xgboost import XGBRegressor

from fedot_ind.core.models.early_tc.ecec import ECEC
from fedot_ind.core.models.early_tc.economy_k import EconomyK
from fedot_ind.core.models.early_tc.prob_threshold import ProbabilityThresholdClassifier
from fedot_ind.core.models.early_tc.teaser import TEASER
from fedot_ind.core.models.detection.anomaly.algorithms.arima_fault_detector import ARIMAFaultDetector
from fedot_ind.core.models.detection.anomaly.algorithms.convolutional_autoencoder_detector import \
ConvolutionalAutoEncoderDetector
Expand Down

0 comments on commit 81b2a67

Please sign in to comment.