We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Please indicate the following details about the environment in which you found the bug:
With Torch 2.0, the demo code fails whenever the cuda parameter is set to False. This is a problem because it is False by default in Linux.
cuda
data = load_demo() discrete_columns = [ 'workclass', 'education', 'marital-status', 'occupation', 'relationship', 'race', 'sex', 'native-country', 'income' ] ctgan = CTGAN(epochs=10, cuda=False) ctgan.fit(data, discrete_columns) # Synthetic copy samples = ctgan.sample(1000)
The text was updated successfully, but these errors were encountered:
amontanez24
Successfully merging a pull request may close this issue.
Environment Details
Please indicate the following details about the environment in which you found the bug:
Error Description
With Torch 2.0, the demo code fails whenever the
cuda
parameter is set to False. This is a problem because it is False by default in Linux.Steps to reproduce
The text was updated successfully, but these errors were encountered: