From 0cff4fd9f1826c3f2a492bce04018d373ca0e449 Mon Sep 17 00:00:00 2001 From: Nicolas ROUX Date: Mon, 9 May 2022 17:58:30 +0200 Subject: [PATCH] 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)