mzakaria
mzakaria
indices = np.argsort(importances[::-1]) # this causes the wrong order for plt.show() at the end of the code chunk (though the values are correct) indices = importances.argsort()[::-1] # gives correct order...
middle of the page paragraph, the second line reads: "Let's assume the we have an ensemble of three base classifiers, $C_j(j \in \{0,1\})$" I think it should be $C_j(j \in...
"in order to do so, we just need to add a line of code to import `update_model` function from the `update.py` script at the top of `app.py` ``` # import...