What are some advantages of Decision trees?
What are some disadvantages of Decision trees?
How do we apply the Decision Tree classifier to our iris dataset?
How to you show a Decision Tree plot? How would you change this to only create a Tree of max depth of 2?
clf = tree.DecisionTreeClassifier(max_depth=2)
How do we interpret this decision tree plot?
What does the Emsemble method do?
What are the import statements need for Random Forest and Gradient Boosted Trees?
Use a Random Forest Classifier on this dataset?
GO thourgh hyperparameters on Data base
Use a Gradient Boosting on this dataset?
How do you code this?
How do we apply the Random Forest Classifer to this imbalanced data set?
If this worked ocrrectly you should find an AUC of about 0.84
The RandomForestClassifer has a parameter class_weight. The “balanced” mode uses the values of y to automatically adjust weights inversely propotional to class frquencies in the input data –> setting class_weight = “balanced” should improve the the AUC to about 0.87 for this artifical data set
What is a Multi-layer Perceptron?
What are the advatanges of a multi-layer Perceptron?
What are the disadvantages of a multi-layer Perceptron?
What does MLPClassifier do?
How does the MLPClassifier train the algorithm?
What does the MLPClassifier allow for?
What does the MLPRegressor do?
What parameter for both the MLPRegressor and MLPClassifer use for regularisation?
What arhe three algorithms MLP uses to train?
What is the time complexity of bakcwards propogation?
What are some tips on using MLP in practise?
What are all the import statements required for using MLPClassifer?