Skip to content

Commit 39b3388

Browse files
remove dummy prints
1 parent b390ac6 commit 39b3388

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

adapt/base.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -795,7 +795,6 @@ def _get_legal_params(self, params):
795795

796796

797797
def __getstate__(self):
798-
print("getting")
799798
dict_ = {k: v for k, v in self.__dict__.items()}
800799
if "estimator_" in dict_:
801800
if isinstance(dict_["estimator_"], Model):
@@ -817,7 +816,6 @@ def __getstate__(self):
817816

818817

819818
def __setstate__(self, dict_):
820-
print("setting")
821819
if "estimator_" in dict_:
822820
if isinstance(dict_["estimator_"], dict):
823821
dict_["estimator_"] = self._from_config_keras_model(

0 commit comments

Comments
 (0)