We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b390ac6 commit 39b3388Copy full SHA for 39b3388
adapt/base.py
@@ -795,7 +795,6 @@ def _get_legal_params(self, params):
795
796
797
def __getstate__(self):
798
- print("getting")
799
dict_ = {k: v for k, v in self.__dict__.items()}
800
if "estimator_" in dict_:
801
if isinstance(dict_["estimator_"], Model):
@@ -817,7 +816,6 @@ def __getstate__(self):
817
816
818
819
def __setstate__(self, dict_):
820
- print("setting")
821
822
if isinstance(dict_["estimator_"], dict):
823
dict_["estimator_"] = self._from_config_keras_model(
0 commit comments