liusongxiang / StarGAN-Voice-Conversion

This is a pytorch implementation of the paper: StarGAN-VC: Non-parallel many-to-many voice conversion with star generative adversarial networks
https://arxiv.org/abs/1806.02169
513 stars 93 forks source link

Python 3.5 #7

Closed sniperwrb closed 5 years ago

sniperwrb commented 5 years ago

In Requirements you say python 3.6 (or 3.5). However Python 3.5 cannot be used here, because there are a few f-strings which requires python 3.6+, (though we can manually change them to %-formatted string and work with python 3.5)

liusongxiang commented 5 years ago

Dear sniperwrb, Since Py3.5 does not support f-strings, please manually change to the formatted strings that py3.6 supports. Thanks!