Open hammer opened 9 years ago
scikit-learn supports the following penalties:
penalty="l2"
penalty="l1"
penalty="elasticnet"
l2 implemented with https://github.com/hammer/olearn/commit/c6276abad2035e889e8f2e2ce12d9f77e1040e83
l2
scikit-learn supports the following penalties:
penalty="l2"
penalty="l1"
penalty="elasticnet"
: Convex combination of L2 and L1; (1 - l1_ratio) * L2 + l1_ratio * L1.