From d5411f5cc8e16e466f47b89f9a43178bcef4f3ec Mon Sep 17 00:00:00 2001 From: Alinson S Xavier Date: Fri, 24 Apr 2020 07:50:58 -0500 Subject: [PATCH] Primal: Make default precision 0.98 --- src/python/miplearn/components/primal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/python/miplearn/components/primal.py b/src/python/miplearn/components/primal.py index af427c5..fd15fb2 100644 --- a/src/python/miplearn/components/primal.py +++ b/src/python/miplearn/components/primal.py @@ -21,7 +21,7 @@ class PrimalSolutionComponent(Component): def __init__(self, classifier=AdaptiveClassifier(), mode="exact", - threshold=MinPrecisionThreshold(0.95)): + threshold=MinPrecisionThreshold(0.98)): self.mode = mode self.classifiers = {} self.thresholds = {}