From 95980924a1f489df098cce68ed9c58c040fd5e10 Mon Sep 17 00:00:00 2001 From: dharmisha Date: Thu, 7 Feb 2019 16:35:13 -0800 Subject: [PATCH] adding nltk.download('popular') so that all popular packages of nltk are installed and it does not error out --- synthesis.py | 1 + 1 file changed, 1 insertion(+) diff --git a/synthesis.py b/synthesis.py index 1cd55ec5..c525f577 100644 --- a/synthesis.py +++ b/synthesis.py @@ -33,6 +33,7 @@ from hparams import hparams, hparams_debug_string from tqdm import tqdm +nltk.download('popular') use_cuda = torch.cuda.is_available() device = torch.device("cuda" if use_cuda else "cpu")