-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
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
multiple models #112
Comments
@anke-king, if you train them separately, you will get two independent models. If you want to combine them for training, you have to unify their annotations to make cell type names consistent. Both approaches are feasible (I personally prefer the former as it's quicker and it's intuitive to check the consistency of predictions from two datasets). |
Thank your for your reply! Thanks!! |
@anke-king, if the cell types in the first and second training datasets are totally different, you can combine them and train a single model. For the confidence scores, they are not comparable across two different models; so if you use two models, you need to inspect separately (celltypist.dotplot will be useful most times), and judge by your knowledge. |
Hello! After doing the recommended suggestion, how do you recommend plotting the UMAP? In my particular case I have two datasets that should contain the same three cell types but for 24 hours and 72 hours.
|
@ManuelSokolov, you can try different integration methods for these two datasets and see how the celltypist predictions are overlaid on the umap. |
@ChuanXu1 if I understand correctly you mean:
|
@ManuelSokolov, the first step is independent from the remaining three. You can annotate your data using CellTypist and add prediction columns in .obs. After that, you shall integrate your datasets by trying different methods (harmony, scVI, etc.) |
I would like to train cell typist on different data sets. Should I merge the 2 data sets and train the model once or train 2 models and do the annotation twice?
The text was updated successfully, but these errors were encountered: