StackingClassifier(estimators=[('anomaly',
OutlierClassifier(model=IsolationForest())),
('classifier', RandomForestClassifier())],
passthrough=True, stack_method='predict_proba')In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook. StackingClassifier(estimators=[('anomaly',
OutlierClassifier(model=IsolationForest())),
('classifier', RandomForestClassifier())],
passthrough=True, stack_method='predict_proba')IsolationForest()
IsolationForest()
RandomForestClassifier()
LogisticRegression()