AntixK / PyTorch-VAE

A Collection of Variational Autoencoders (VAE) in PyTorch.
Apache License 2.0
6.44k stars 1.05k forks source link

various import errors caused by PyTorch version being too new #66

Open peacej opened 2 years ago

peacej commented 2 years ago

E.g. errors like No module named 'torchtext.legacy' Maybe in the requirements.txt you pin the version, e.g. use

torch==1.6.1

instead of

torch>=1.6.1

or something?