From 0cff4fd9f1826c3f2a492bce04018d373ca0e449 Mon Sep 17 00:00:00 2001 From: Nicolas ROUX Date: Mon, 9 May 2022 17:58:30 +0200 Subject: [PATCH 1/2] set allow_writing_files to False by default --- eurybia/core/smartdrift.py | 1 + 1 file changed, 1 insertion(+) diff --git a/eurybia/core/smartdrift.py b/eurybia/core/smartdrift.py index cdf08cd..8e9e691 100644 --- a/eurybia/core/smartdrift.py +++ b/eurybia/core/smartdrift.py @@ -290,6 +290,7 @@ def compile( loss_function=hyperparameter["loss_function"], eval_metric=hyperparameter["eval_metric"], task_type="CPU", + allow_writing_files=False ) datadrift_classifier = datadrift_classifier.fit(train_pool_cat, eval_set=test_pool_cat, silent=True) From 5a18731f24e41636713227cf17644c7f8eb93e96 Mon Sep 17 00:00:00 2001 From: Nicolas ROUX Date: Mon, 9 May 2022 18:03:04 +0200 Subject: [PATCH 2/2] version bump --- eurybia/__version__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eurybia/__version__.py b/eurybia/__version__.py index 4bdba83..4d480bb 100644 --- a/eurybia/__version__.py +++ b/eurybia/__version__.py @@ -1,3 +1,3 @@ -VERSION = (1, 0, 0) +VERSION = (1, 0, 1) __version__ = ".".join(map(str, VERSION))