LoslegenKostenlos loslegen

Storing outlier probabilities

Continue building the ensemble by writing the code block that loops over estimators and generates outlier probabilities.

The scaled apple dataset with extra features is available.

Diese Übung ist Teil des Kurses

Anomaly Detection in Python

Kurs anzeigen

Interaktive Übung

Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.

estimators = [IForest(n_estimators=50), IForest(n_estimators=100)]

shape = (len(apple), len(estimators))
probability_scores = np.empty(shape=shape)

for ____, ____ in ____:
    # Fit the estimator
    ____
Code bearbeiten und ausführen