NathanRxl / kernel-challenge

In class Kaggle competition, Master Data Science/Master MVA, 2017
0 stars 0 forks source link

First implementation of LogisticRegression model #9

Closed NathanRxl closed 7 years ago

NathanRxl commented 7 years ago

Part of #4, this implementation of logistic regression supports:

Next immediate improvements in priority order:

Co-Authored by: hugues hugues.tavenard@eleves.enpc.fr

Replace heavy computations based on for loops in logloss and its gradient by light computations based on numpy matrix products.

This change increases the running time of fit method by a factor of 100.