Kernel in a logistic regression model LogisticRegression scikit-learn sklearn









up vote
4
down vote

favorite
1












How can I use a kernel in a logistic regression model using the sklearn library?



logreg = LogisticRegression()

logreg.fit(X_train, y_train)

y_pred = logreg.predict(X_test)
print(y_pred)

print(confusion_matrix(y_test,y_pred))
print(classification_report(y_test,y_pred))
predicted= logreg.predict(predict)
print("Accuracy:",metrics.accuracy_score(y_test, y_pred))









share|improve this question























  • hope my answer helps.
    – seralouk
    Nov 8 at 12:59














up vote
4
down vote

favorite
1












How can I use a kernel in a logistic regression model using the sklearn library?



logreg = LogisticRegression()

logreg.fit(X_train, y_train)

y_pred = logreg.predict(X_test)
print(y_pred)

print(confusion_matrix(y_test,y_pred))
print(classification_report(y_test,y_pred))
predicted= logreg.predict(predict)
print("Accuracy:",metrics.accuracy_score(y_test, y_pred))









share|improve this question























  • hope my answer helps.
    – seralouk
    Nov 8 at 12:59












up vote
4
down vote

favorite
1









up vote
4
down vote

favorite
1






1





How can I use a kernel in a logistic regression model using the sklearn library?



logreg = LogisticRegression()

logreg.fit(X_train, y_train)

y_pred = logreg.predict(X_test)
print(y_pred)

print(confusion_matrix(y_test,y_pred))
print(classification_report(y_test,y_pred))
predicted= logreg.predict(predict)
print("Accuracy:",metrics.accuracy_score(y_test, y_pred))









share|improve this question















How can I use a kernel in a logistic regression model using the sklearn library?



logreg = LogisticRegression()

logreg.fit(X_train, y_train)

y_pred = logreg.predict(X_test)
print(y_pred)

print(confusion_matrix(y_test,y_pred))
print(classification_report(y_test,y_pred))
predicted= logreg.predict(predict)
print("Accuracy:",metrics.accuracy_score(y_test, y_pred))






machine-learning scikit-learn kernel svm logistic-regression






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 15 at 23:23









seralouk

5,53522338




5,53522338










asked Nov 7 at 22:54









Rubiks

18511




18511











  • hope my answer helps.
    – seralouk
    Nov 8 at 12:59
















  • hope my answer helps.
    – seralouk
    Nov 8 at 12:59















hope my answer helps.
– seralouk
Nov 8 at 12:59




hope my answer helps.
– seralouk
Nov 8 at 12:59












1 Answer
1






active

oldest

votes

















up vote
1
down vote



accepted










Very nice question but scikit-learn currently does not support neither kernel logistic regression nor the ANOVA kernel.



You can implement it though.



Example 1 for the ANOVA kernel:



import numpy as np
from sklearn.metrics.pairwise import check_pairwise_arrays
from scipy.linalg import cholesky
from sklearn.linear_model import LogisticRegression

def anova_kernel(X, Y=None, gamma=None, p=1):
X, Y = check_pairwise_arrays(X, Y)
if gamma is None:
gamma = 1. / X.shape[1]

diff = X[:, None, :] - Y[None, :, :]
diff **= 2
diff *= -gamma
np.exp(diff, out=diff)
K = diff.sum(axis=2)
K **= p
return K

# Kernel matrix based on X matrix of all data points
K = anova_kernel(X)
R = cholesky(K, lower=False)

# Define the model
clf = LogisticRegression()

# Here, I assume that you have splitted the data and here, traina re the indices for the training set
clf.fit(R[train], y_train)
preds = clf.predict(R[test])¨



Example 2 for Nyström:



from sklearn.kernel_approximation import Nystroem
from sklearn.linear_model import LogisticRegression
from sklearn.pipeline import Pipeline

K_train = anova_kernel(X_train)
clf = Pipeline([
('nys', Nystroem(kernel='precomputed', n_components=100)),
('lr', LogisticRegression())])
clf.fit(K_train, y_train)

K_test = anova_kernel(X_test, X_train)
preds = clf.predict(K_test)





share|improve this answer






















    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53199141%2fkernel-in-a-logistic-regression-model-logisticregression-scikit-learn-sklearn%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes








    up vote
    1
    down vote



    accepted










    Very nice question but scikit-learn currently does not support neither kernel logistic regression nor the ANOVA kernel.



    You can implement it though.



    Example 1 for the ANOVA kernel:



    import numpy as np
    from sklearn.metrics.pairwise import check_pairwise_arrays
    from scipy.linalg import cholesky
    from sklearn.linear_model import LogisticRegression

    def anova_kernel(X, Y=None, gamma=None, p=1):
    X, Y = check_pairwise_arrays(X, Y)
    if gamma is None:
    gamma = 1. / X.shape[1]

    diff = X[:, None, :] - Y[None, :, :]
    diff **= 2
    diff *= -gamma
    np.exp(diff, out=diff)
    K = diff.sum(axis=2)
    K **= p
    return K

    # Kernel matrix based on X matrix of all data points
    K = anova_kernel(X)
    R = cholesky(K, lower=False)

    # Define the model
    clf = LogisticRegression()

    # Here, I assume that you have splitted the data and here, traina re the indices for the training set
    clf.fit(R[train], y_train)
    preds = clf.predict(R[test])¨



    Example 2 for Nyström:



    from sklearn.kernel_approximation import Nystroem
    from sklearn.linear_model import LogisticRegression
    from sklearn.pipeline import Pipeline

    K_train = anova_kernel(X_train)
    clf = Pipeline([
    ('nys', Nystroem(kernel='precomputed', n_components=100)),
    ('lr', LogisticRegression())])
    clf.fit(K_train, y_train)

    K_test = anova_kernel(X_test, X_train)
    preds = clf.predict(K_test)





    share|improve this answer


























      up vote
      1
      down vote



      accepted










      Very nice question but scikit-learn currently does not support neither kernel logistic regression nor the ANOVA kernel.



      You can implement it though.



      Example 1 for the ANOVA kernel:



      import numpy as np
      from sklearn.metrics.pairwise import check_pairwise_arrays
      from scipy.linalg import cholesky
      from sklearn.linear_model import LogisticRegression

      def anova_kernel(X, Y=None, gamma=None, p=1):
      X, Y = check_pairwise_arrays(X, Y)
      if gamma is None:
      gamma = 1. / X.shape[1]

      diff = X[:, None, :] - Y[None, :, :]
      diff **= 2
      diff *= -gamma
      np.exp(diff, out=diff)
      K = diff.sum(axis=2)
      K **= p
      return K

      # Kernel matrix based on X matrix of all data points
      K = anova_kernel(X)
      R = cholesky(K, lower=False)

      # Define the model
      clf = LogisticRegression()

      # Here, I assume that you have splitted the data and here, traina re the indices for the training set
      clf.fit(R[train], y_train)
      preds = clf.predict(R[test])¨



      Example 2 for Nyström:



      from sklearn.kernel_approximation import Nystroem
      from sklearn.linear_model import LogisticRegression
      from sklearn.pipeline import Pipeline

      K_train = anova_kernel(X_train)
      clf = Pipeline([
      ('nys', Nystroem(kernel='precomputed', n_components=100)),
      ('lr', LogisticRegression())])
      clf.fit(K_train, y_train)

      K_test = anova_kernel(X_test, X_train)
      preds = clf.predict(K_test)





      share|improve this answer
























        up vote
        1
        down vote



        accepted







        up vote
        1
        down vote



        accepted






        Very nice question but scikit-learn currently does not support neither kernel logistic regression nor the ANOVA kernel.



        You can implement it though.



        Example 1 for the ANOVA kernel:



        import numpy as np
        from sklearn.metrics.pairwise import check_pairwise_arrays
        from scipy.linalg import cholesky
        from sklearn.linear_model import LogisticRegression

        def anova_kernel(X, Y=None, gamma=None, p=1):
        X, Y = check_pairwise_arrays(X, Y)
        if gamma is None:
        gamma = 1. / X.shape[1]

        diff = X[:, None, :] - Y[None, :, :]
        diff **= 2
        diff *= -gamma
        np.exp(diff, out=diff)
        K = diff.sum(axis=2)
        K **= p
        return K

        # Kernel matrix based on X matrix of all data points
        K = anova_kernel(X)
        R = cholesky(K, lower=False)

        # Define the model
        clf = LogisticRegression()

        # Here, I assume that you have splitted the data and here, traina re the indices for the training set
        clf.fit(R[train], y_train)
        preds = clf.predict(R[test])¨



        Example 2 for Nyström:



        from sklearn.kernel_approximation import Nystroem
        from sklearn.linear_model import LogisticRegression
        from sklearn.pipeline import Pipeline

        K_train = anova_kernel(X_train)
        clf = Pipeline([
        ('nys', Nystroem(kernel='precomputed', n_components=100)),
        ('lr', LogisticRegression())])
        clf.fit(K_train, y_train)

        K_test = anova_kernel(X_test, X_train)
        preds = clf.predict(K_test)





        share|improve this answer














        Very nice question but scikit-learn currently does not support neither kernel logistic regression nor the ANOVA kernel.



        You can implement it though.



        Example 1 for the ANOVA kernel:



        import numpy as np
        from sklearn.metrics.pairwise import check_pairwise_arrays
        from scipy.linalg import cholesky
        from sklearn.linear_model import LogisticRegression

        def anova_kernel(X, Y=None, gamma=None, p=1):
        X, Y = check_pairwise_arrays(X, Y)
        if gamma is None:
        gamma = 1. / X.shape[1]

        diff = X[:, None, :] - Y[None, :, :]
        diff **= 2
        diff *= -gamma
        np.exp(diff, out=diff)
        K = diff.sum(axis=2)
        K **= p
        return K

        # Kernel matrix based on X matrix of all data points
        K = anova_kernel(X)
        R = cholesky(K, lower=False)

        # Define the model
        clf = LogisticRegression()

        # Here, I assume that you have splitted the data and here, traina re the indices for the training set
        clf.fit(R[train], y_train)
        preds = clf.predict(R[test])¨



        Example 2 for Nyström:



        from sklearn.kernel_approximation import Nystroem
        from sklearn.linear_model import LogisticRegression
        from sklearn.pipeline import Pipeline

        K_train = anova_kernel(X_train)
        clf = Pipeline([
        ('nys', Nystroem(kernel='precomputed', n_components=100)),
        ('lr', LogisticRegression())])
        clf.fit(K_train, y_train)

        K_test = anova_kernel(X_test, X_train)
        preds = clf.predict(K_test)






        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Nov 9 at 8:09

























        answered Nov 8 at 12:57









        seralouk

        5,53522338




        5,53522338



























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.





            Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


            Please pay close attention to the following guidance:


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53199141%2fkernel-in-a-logistic-regression-model-logisticregression-scikit-learn-sklearn%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            𛂒𛀶,𛀽𛀑𛂀𛃧𛂓𛀙𛃆𛃑𛃷𛂟𛁡𛀢𛀟𛁤𛂽𛁕𛁪𛂟𛂯,𛁞𛂧𛀴𛁄𛁠𛁼𛂿𛀤 𛂘,𛁺𛂾𛃭𛃭𛃵𛀺,𛂣𛃍𛂖𛃶 𛀸𛃀𛂖𛁶𛁏𛁚 𛂢𛂞 𛁰𛂆𛀔,𛁸𛀽𛁓𛃋𛂇𛃧𛀧𛃣𛂐𛃇,𛂂𛃻𛃲𛁬𛃞𛀧𛃃𛀅 𛂭𛁠𛁡𛃇𛀷𛃓𛁥,𛁙𛁘𛁞𛃸𛁸𛃣𛁜,𛂛,𛃿,𛁯𛂘𛂌𛃛𛁱𛃌𛂈𛂇 𛁊𛃲,𛀕𛃴𛀜 𛀶𛂆𛀶𛃟𛂉𛀣,𛂐𛁞𛁾 𛁷𛂑𛁳𛂯𛀬𛃅,𛃶𛁼

            Edmonton

            Crossroads (UK TV series)