CorentinJ / Real-Time-Voice-Cloning

Clone a voice in 5 seconds to generate arbitrary speech in real-time
Other
52.54k stars 8.79k forks source link

Is there any difference between Pytorch and tensorflow outputs? #750

Closed Sba-Stuff closed 3 years ago

Sba-Stuff commented 3 years ago

Although my question might look idiotic, I apologize in advance to ask. But, I want to know either there is any difference in outputs generated with PyTorch and Tensorflow or not. I have tried and used Tensorflow implementation. I just want to know if there is any difference using Pytorch version in generated outputs.

ghost commented 3 years ago

Yes there will be because the model architectures are different. The old Tensorflow is Tacotron 2 (1712.05884) and the new PyTorch is Tacotron 1 (1703.10135).

Pytorch and Tensorflow use the same building blocks, so that is not the source of any difference you may notice.

Sba-Stuff commented 3 years ago

Thank You.