“Skaran Random Forest Feature Importance” Réponses codées

Skaran Random Forest Feature Importance

import time
import numpy as np

start_time = time.time()
importances = forest.feature_importances_
std = np.std([
    tree.feature_importances_ for tree in forest.estimators_], axis=0)
elapsed_time = time.time() - start_time

print(f"Elapsed time to compute the importances: "
      f"{elapsed_time:.3f} seconds")
Gentle Gaur

Skaran Random Forest Feature Importance

import pandas as pd
forest_importances = pd.Series(importances, index=feature_names)

fig, ax = plt.subplots()
forest_importances.plot.bar(yerr=std, ax=ax)
ax.set_title("Feature importances using MDI")
ax.set_ylabel("Mean decrease in impurity")
fig.tight_layout()
Gentle Gaur

Skaran Random Forest Feature Importance

from sklearn.ensemble import RandomForestClassifier

feature_names = [f'feature {i}' for i in range(X.shape[1])]
forest = RandomForestClassifier(random_state=0)
forest.fit(X_train, y_train)
Gentle Gaur

Skaran Random Forest Feature Importance

RandomForestClassifier(random_state=0)
Gentle Gaur

Skaran Random Forest Feature Importance

from sklearn.datasets import make_classification
from sklearn.model_selection import train_test_split

X, y = make_classification(
    n_samples=1000, n_features=10, n_informative=3, n_redundant=0,
    n_repeated=0, n_classes=2, random_state=0, shuffle=False)
X_train, X_test, y_train, y_test = train_test_split(
    X, y, stratify=y, random_state=42)
Gentle Gaur

Skaran Random Forest Feature Importance

print(__doc__)
import matplotlib.pyplot as plt
Gentle Gaur

Réponses similaires à “Skaran Random Forest Feature Importance”

Questions similaires à “Skaran Random Forest Feature Importance”

Plus de réponses similaires à “Skaran Random Forest Feature Importance” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code