I do machine learning using scikit-learn, as recommended in this question . To my surprise, he does not provide access to the actual models that he trains. For example, if I create an SVM, linear classifier, or even a decision tree, it does not seem to give me the opportunity to see the parameters selected for the actually trained model.
A vision of a real model is useful if the model is partially created in order to get a clearer idea of ββwhat functions it uses (for example, decision trees). Seeing a model is also an important issue if you want to use Python to train the model and some other code to implement it.
Am I missing something in scikit-learn or is there some way to get this in scikit-learn? If not, what good working tool for machine learning, not necessarily in python , in which models are transparently accessible ?
source share