I try to integrate around 500 000 cells from around a dozen GSE datasets. I'm not sure however how to asses the optimal number of parameters, the results I get are more or less ok, but not great. I will be very gratefull for clarifying sever things and suggesting what to do and what to avoid.
scpoli_model = scPoli(
adata=new_adata,
condition_keys=['GSE'],
# cell_type_keys=cell_type_key,
embedding_dims=50,
latent_dim=20,
recon_loss='nb',
)
scpoli_model.train(
n_epochs=100,
pretraining_epochs=70,
early_stopping_kwargs=early_stopping_kwargs,
eta=5,
)
scpoli_query = scPoli.load_query_data(
adata=new_adata,
reference_model=scpoli_model,
labeled_indices=[],
)
data_latent= scpoli_query.get_latent(new_adata, mean=True)
Hello everyone,
I try to integrate around 500 000 cells from around a dozen GSE datasets. I'm not sure however how to asses the optimal number of parameters, the results I get are more or less ok, but not great. I will be very gratefull for clarifying sever things and suggesting what to do and what to avoid.
My code looks like this: