File tree Expand file tree Collapse file tree 3 files changed +22
-1
lines changed
test/test_pipeline/components/classification Expand file tree Collapse file tree 3 files changed +22
-1
lines changed Original file line number Diff line number Diff line change 11"""Version information."""
22
33# The following line *must* be the last in the module, exactly as formatted:
4- __version__ = "0.14.0 "
4+ __version__ = "0.14.1 "
Original file line number Diff line number Diff line change 99Releases
1010========
1111
12+ Version 0.14.1
13+ ==============
14+
15+ * FIX #1248: Allow for sparse ``y_test ``.
16+ * FIX #1259: Fix an issue that could result in ``setup.py `` not working due to relative paths
17+ being chosen.
18+ * MAINT #1261: Include a CITATION.cff file
19+ * MAINT #1263: Make unit test deterministic.
20+ * DOC #1269: Fix example on extending data preprocessing.
21+ * DOC #1270: Remove ``>>> `` from code examples in the documentation.
22+ * DOC #1271: Fix a typo in an example in the documentation.
23+ * DOC #1282: Add a contribution guide.
24+
25+ Contributors v0.14.1
26+ ********************
27+
28+ * Edward Bergman
29+ * Michael Becker
30+ * Katharina Eggensperger
31+
1232Version 0.14.0
1333==============
1434
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ class LibLinearComponentTest(BaseClassificationComponentTest):
2020 res ["default_digits_iterative" ] = - 1
2121 res ["default_digits_binary" ] = 0.98907103825136611
2222 res ["default_digits_multilabel" ] = 0.89889188078944637
23+ res ["default_digits_multilabel_places" ] = 2
2324 res ["default_digits_multilabel_proba" ] = 0.99999999999999989
2425
2526 sk_mod = sklearn .svm .LinearSVC
You can’t perform that action at this time.
0 commit comments