From dbbfd84e7818287b887c1ea1c5096107a51deacf Mon Sep 17 00:00:00 2001 From: cclauss Date: Thu, 26 Apr 2018 05:32:19 -0600 Subject: [PATCH 1/6] Add missing imports: from . import hparams --- nikl_m.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nikl_m.py b/nikl_m.py index 09ca446f..334a4fa7 100644 --- a/nikl_m.py +++ b/nikl_m.py @@ -5,6 +5,8 @@ import audio import re +from . import hparams + def build_from_path(in_dir, out_dir, num_workers=1, tqdm=lambda x: x): '''Preprocesses the LJ Speech dataset from a given input path into a given output directory. From d465dab50ca5a1d5f8ad535e5f263f2f5c2a19c8 Mon Sep 17 00:00:00 2001 From: cclauss Date: Thu, 26 Apr 2018 05:33:31 -0600 Subject: [PATCH 2/6] Add missing import: from . import hparams --- nikl_s.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nikl_s.py b/nikl_s.py index a5c3a3fd..f7e36b00 100644 --- a/nikl_s.py +++ b/nikl_s.py @@ -5,6 +5,8 @@ import audio import re +from . import hparams + def build_from_path(in_dir, out_dir, num_workers=1, tqdm=lambda x: x): '''Preprocesses the LJ Speech dataset from a given input path into a given output directory. From 185164a9da596bdb5a8e3057e6b2af7b5c06edc4 Mon Sep 17 00:00:00 2001 From: cclauss Date: Thu, 26 Apr 2018 15:51:35 -0600 Subject: [PATCH 3/6] from .hparams import hparams --- nikl_m.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nikl_m.py b/nikl_m.py index 334a4fa7..49c16748 100644 --- a/nikl_m.py +++ b/nikl_m.py @@ -5,7 +5,7 @@ import audio import re -from . import hparams +from .hparams import hparams def build_from_path(in_dir, out_dir, num_workers=1, tqdm=lambda x: x): From 3eecb687bb7d0202c7966d08c50425425a5a9931 Mon Sep 17 00:00:00 2001 From: cclauss Date: Thu, 26 Apr 2018 15:51:51 -0600 Subject: [PATCH 4/6] from .hparams import hparams --- nikl_s.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nikl_s.py b/nikl_s.py index f7e36b00..c8d5a116 100644 --- a/nikl_s.py +++ b/nikl_s.py @@ -5,7 +5,7 @@ import audio import re -from . import hparams +from .hparams import hparams def build_from_path(in_dir, out_dir, num_workers=1, tqdm=lambda x: x): From b763ba671329b77d0c5f36f3ee6f61e6a2b5a956 Mon Sep 17 00:00:00 2001 From: cclauss Date: Thu, 26 Apr 2018 15:57:43 -0600 Subject: [PATCH 5/6] from hparams import hparams --- nikl_m.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nikl_m.py b/nikl_m.py index 49c16748..7c514987 100644 --- a/nikl_m.py +++ b/nikl_m.py @@ -5,7 +5,7 @@ import audio import re -from .hparams import hparams +from hparams import hparams def build_from_path(in_dir, out_dir, num_workers=1, tqdm=lambda x: x): From 5cb9fd0ef69acad7fbb2b69151907da73695d362 Mon Sep 17 00:00:00 2001 From: cclauss Date: Thu, 26 Apr 2018 15:58:03 -0600 Subject: [PATCH 6/6] from hparams import hparams --- nikl_s.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nikl_s.py b/nikl_s.py index c8d5a116..6b1830f7 100644 --- a/nikl_s.py +++ b/nikl_s.py @@ -5,7 +5,7 @@ import audio import re -from .hparams import hparams +from hparams import hparams def build_from_path(in_dir, out_dir, num_workers=1, tqdm=lambda x: x):