I am new to machine learning and have mostly been using python's sklearn
to create classification models on various data sets (iris data set etc). I have also been watching videos/tutorials which explain the underlying principles involved.
I want to know is there any way to see "under the hood" on the python sklearn
algorithms. For example, I have created a decision tree classifier using sklearn
and would like to see the exact structure of the tree created. Is this possible or will I need to write/develop my own algorithms from scratch?