Browse Source

force single gpu in inference.ipynb

master
Raul Puri 6 years ago
committed by GitHub
parent
commit
c67ca6531e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      inference.ipynb

+ 4
- 1
inference.ipynb View File

@ -98,8 +98,11 @@
"source": [
"checkpoint_path = \"/home/scratch.adlr-gcf/audio_denoising/runs/TTS-Tacotron2-LJS-MSE-DRC-NoMaskPadding-Unsorted-Distributed-22khz/checkpoint_15500\"\n",
"model = load_model(hparams)\n",
"try:\n",
" model = model.module\n",
"except:\n",
" pass\n"
"model.load_state_dict({k.replace('module.',''):v for k,v in torch.load(checkpoint_path)['state_dict'].items()})\n",
"model = model.module\n",
"_ = model.eval()"
]
},

Loading…
Cancel
Save