You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
scvi doublet predictions seem off (too many cells that should not be doublets) in comparison to four alternative tools.
adata.obs.index.name=Nonescvi.model.SCVI.setup_anndata(adata)
vae=scvi.model.SCVI(adata)
vae.train() # batch_size=130solo=scvi.external.SOLO.from_scvi_model(vae)
solo.train(batch_size=130) # batch_size=130# vae.train(batch_size=130) and solo.train(batch_size=130) # ValueError: Expected more than 1 value per channel when training, got input size torch.Size([1, 128])# change batch_size when error is throwndoublet_prediction=solo.predict()
doublet_prediction['prediction'] =solo.predict(soft=False)
adata.obs=adata.obs.reset_index().merge(doublet_prediction.reset_index(),on='index',how='left').set_index('index')
adata.obs.index.name=None
[Paste the error output produced by the above code here]
Versions:
1.2.0
The text was updated successfully, but these errors were encountered:
scvi doublet predictions seem off (too many cells that should not be doublets) in comparison to four alternative tools.
Versions:
1.2.0
The text was updated successfully, but these errors were encountered: