You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13Lines changed: 13 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -296,6 +296,19 @@ There are two important options used above:
296
296
297
297
If you are training multi-speaker model, speaker adaptation will only work **when `n_speakers` is identical**.
298
298
299
+
## Trouble shooting
300
+
301
+
### [#5](https://github.com/r9y9/deepvoice3_pytorch/issues/5) RuntimeError: main thread is not in main loop
302
+
303
+
304
+
This may happen depending on backends you have for matplotlib. Try changing backend for matplotlib and see if it works as follows:
305
+
306
+
```
307
+
MPLBACKEND=Qt5Agg python train.py ${args...}
308
+
```
309
+
310
+
In [#78](https://github.com/r9y9/deepvoice3_pytorch/pull/78#issuecomment-385327057), engiecat reported that changing the backend of matplotlib from Tkinter(TkAgg) to PyQt5(Qt5Agg) fixed the problem.
311
+
299
312
## Acknowledgements
300
313
301
314
Part of code was adapted from the following projects:
0 commit comments