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? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
self.cvae_model.evaluate
Hey @Naghipourfar @M0hammadL ,
I'm running trVAE as part of our benchmarking (PR here), and I'm getting the following error:
|Traceback (most recent call last): File "scripts/runIntegration.py", line 69, in <module> runIntegration(file, out, run, hvg, batch) File "scripts/runIntegration.py", line 30, in runIntegration integrated = method(adata, batch) File "/mnt/home/icb/malte.luecken/benchmarking_data_integration/Benchmarking_data_integration/scIB/integration.py", line 70, in runTrVae save=False, File "/home/icb/daniel.strobl/miniconda3/envs/benchmarking_data_integration_dev/lib/python3.7/site-packages/trvae/models/_trvae.py", line 830, in train verbose) File "/home/icb/daniel.strobl/miniconda3/envs/benchmarking_data_integration_dev/lib/python3.7/site-packages/trvae/models/_trvae.py", line 771, in _train_on_batch valid_loss, valid_recon_loss, valid_mmd_loss = self.cvae_model.evaluate(x_valid, y_valid, verbose=0) ValueError: not enough values to unpack (expected 3, got 0)|
The text was updated successfully, but these errors were encountered:
Hey @LuckyMD it seems in your code you have set train_size=1.0 that means there is no validation data for the model to validate the results. please set it to 0.9. https://github.com/theislab/scib/blob/c92622a3ca57e922f7533356ff7631d944ca9bd1/scIB/integration.py#L64
train_size=1.0
0.9
Sorry, something went wrong.
okay, so no training on the full dataset even for batch removal?
will test to see if this works.
No branches or pull requests
Hey @Naghipourfar @M0hammadL ,
I'm running trVAE as part of our benchmarking (PR here), and I'm getting the following error:
The text was updated successfully, but these errors were encountered: