Skip to content

Commit 70496a9

Browse files
committed
Add max_iter and tol to LinearSGDClassifier
1 parent 1a3fe0d commit 70496a9

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

cesium_app/ext/sklearn_models.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,8 @@ def make_list(x):
114114
{"name": "l1_ratio", "type": float, "default": 0.15},
115115
{"name": "fit_intercept", "type": bool, "default": True},
116116
{"name": "n_iter", "type": int, "default": 5},
117+
{"name": "max_iter", "type": int, "default": None},
118+
{"name": "tol", "type": float, "default": None},
117119
{"name": "shuffle", "type": bool, "default": True},
118120
{"name": "random_state", "type": int, "default": None},
119121
{"name": "epsilon", "type": float, "default": 0.1},

0 commit comments

Comments
 (0)