39 lines
985 B
Python
39 lines
985 B
Python
from __future__ import division, print_function
|
|
import numpy as np
|
|
from sklearn import datasets
|
|
import matplotlib.pyplot as plt
|
|
|
|
# Import helper functions
|
|
from mlfromscratch.utils import train_test_split, accuracy_score
|
|
from mlfromscratch.deep_learning.loss_functions import CrossEntropy
|
|
from mlfromscratch.utils import Plot
|
|
from mlfromscratch.supervised_learning import GradientBoostingClassifier
|
|
|
|
def main():
|
|
|
|
print ("-- Gradient Boosting Classification --")
|
|
|
|
data = datasets.load_iris()
|
|
X = data.data
|
|
y = data.target
|
|
|
|
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.4)
|
|
|
|
clf = GradientBoostingClassifier()
|
|
clf.fit(X_train, y_train)
|
|
y_pred = clf.predict(X_test)
|
|
|
|
accuracy = accuracy_score(y_test, y_pred)
|
|
|
|
print ("Accuracy:", accuracy)
|
|
|
|
|
|
Plot().plot_in_2d(X_test, y_pred,
|
|
title="Gradient Boosting",
|
|
accuracy=accuracy,
|
|
legend_labels=data.target_names)
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main() |