Classification guide for Model Parameters

Issue #621 resolved
Agustin Lobo created an issue

Is there anybody working on a classification guide explaining the meaning and impact of the different Model Parameters of, e.g. SVM classification? Does any material related to this issue exist?

Comments (9)

  1. Agustin Lobo reporter

    and why are you selecting rbf as kernel?

    param_grid = {'kernel': ['rbf'],'gamma': [0.001, 0.01, 0.1, 1, 10, 100, 1000],'C': [0.001, 0.01, 0.1, 1, 10, 100, 1000]}

    (I know I can change it, just asking why you selected this in the code).

  2. Agustin Lobo reporter

    I think that while rbf is a reasonable default, we should be able of selecting any of the kernels available in scikit-learn in the menu (not having to edit the code, which I find that intimidates many users).

  3. Log in to comment