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
Hi,
I was using SVM https://github.com/ventolab/HGDA/blob/main/mouse_scRNAseq/mouse_human_comparison/LabelTransfer_SupervisedLearning.py for label transfer as you suggested. It ran smoothly except for line 157, where adata_from = downsample(adata_from, args.downsample) generated an error. For me, changing it to adata_from = downsample(adata_from,args.labels[0]) solved the issue.
adata_from = downsample(adata_from, args.downsample)
adata_from = downsample(adata_from,args.labels[0])
Maybe it is worth double-checking.
Kind regards.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
I was using SVM https://github.com/ventolab/HGDA/blob/main/mouse_scRNAseq/mouse_human_comparison/LabelTransfer_SupervisedLearning.py for label transfer as you suggested. It ran smoothly except for line 157, where
adata_from = downsample(adata_from, args.downsample)
generated an error. For me, changing it toadata_from = downsample(adata_from,args.labels[0])
solved the issue.Maybe it is worth double-checking.
Kind regards.
The text was updated successfully, but these errors were encountered: