From 64a6f6f711c70ec51a567fc153b30a22dff5d533 Mon Sep 17 00:00:00 2001 From: fabclmnt Date: Mon, 25 Jan 2021 00:17:11 +0000 Subject: [PATCH] fix(synth): Fix load function. --- src/ydata_synthetic/synthesizers/gan.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ydata_synthetic/synthesizers/gan.py b/src/ydata_synthetic/synthesizers/gan.py index c118a870..f751f7e9 100644 --- a/src/ydata_synthetic/synthesizers/gan.py +++ b/src/ydata_synthetic/synthesizers/gan.py @@ -55,5 +55,4 @@ def save(self, path): @classmethod def load(cls, path): synth = load(path) - synth.generator = model_from_json(synth.generator) return synth