Issue
In tabsyn/tabsyn/vae/main.py, this line:
scheduler = ReduceLROnPlateau(optimizer, mode='min', factor=0.95, patience=10, verbose=True)
fails on newer PyTorch versions because verbose is no longer a valid argument.
Potential Solution
Update installation instructions in README to pin older versions:
pip install torch==2.0.1 torchvision==0.15.2 torchaudio==2.0.2
Instead of:
pip install torch torchvision torchaudio
This ensures compatibility until code is updated to work with newer PyTorch versions.
Issue
In
tabsyn/tabsyn/vae/main.py, this line:fails on newer PyTorch versions because
verboseis no longer a valid argument.Potential Solution
Update installation instructions in README to pin older versions:
Instead of:
This ensures compatibility until code is updated to work with newer PyTorch versions.