--- library_name: scvi-tools license: cc-by-4.0 tags: - biology - genomics - single-cell - model_cls_name:SCVI - scvi_version:1.2.1 - anndata_version:0.11.1 - modality:rna - annotated:False --- ScVI is a variational inference model for single-cell RNA-seq data that can learn an underlying latent space, integrate technical batches and impute dropouts. The learned low-dimensional latent representation of the data can be used for visualization and clustering. scVI takes as input a scRNA-seq gene expression matrix with cells and genes. We provide an extensive [user guide](https://docs.scvi-tools.org/en/1.2.0/user_guide/models/scvi.html). - See our original manuscript for further details of the model: [scVI manuscript](https://www.nature.com/articles/s41592-018-0229-2). - See our manuscript on [scvi-hub](https://www.biorxiv.org/content/10.1101/2024.03.01.582887v2) how to leverage pre-trained models. This model can be used for fine tuning on new data using our Arches framework: [Arches tutorial](https://docs.scvi-tools.org/en/1.0.0/tutorials/notebooks/scarches_scvi_tools.html). # Model Description scVI model trained on synthetic IID data and uploaded with the full training data. # Metrics We provide here key performance metrics for the uploaded model, if provided by the data uploader.
Coefficient of variation The cell-wise coefficient of variation summarizes how well variation between different cells is preserved by the generated model expression. Below a squared Pearson correlation coefficient of 0.4 , we would recommend not to use generated data for downstream analysis, while the generated latent space might still be useful for analysis. **Cell-wise Coefficient of Variation**: | Metric | Training Value | Validation Value | |-------------------------|----------------|------------------| | Mean Absolute Error | 0.99 | 1.03 | | Pearson Correlation | -0.07 | -0.20 | | Spearman Correlation | -0.07 | -0.03 | | R² (R-Squared) | -14.43 | -12.71 | The gene-wise coefficient of variation summarizes how well variation between different genes is preserved by the generated model expression. This value is usually quite high. **Gene-wise Coefficient of Variation**: | Metric | Training Value | |-------------------------|----------------| | Mean Absolute Error | 1.07 | | Pearson Correlation | -0.12 | | Spearman Correlation | -0.00 | | R² (R-Squared) | -2.15 |
Differential expression metric The differential expression metric provides a summary of the differential expression analysis between cell types or input clusters. We provide here the F1-score, Pearson Correlation Coefficient of Log-Foldchanges, Spearman Correlation Coefficient, and Area Under the Precision Recall Curve (AUPRC) for the differential expression analysis using Wilcoxon Rank Sum test for each cell-type. **Differential expression**: | Index | gene_f1 | lfc_mae | lfc_pearson | lfc_spearman | roc_auc | pr_auc | n_cells | | --- | --- | --- | --- | --- | --- | --- | --- | | 0 | 0.00 | 0.90 | 0.06 | 0.05 | 0.47 | 0.34 | 50.00 | | 1 | 0.00 | 0.94 | -0.10 | -0.10 | 0.34 | 0.16 | 48.00 | | 2 | 0.10 | 0.94 | -0.02 | -0.03 | 0.53 | 0.37 | 41.00 | | 3 | 0.20 | 0.82 | 0.17 | 0.15 | 0.56 | 0.36 | 39.00 | | 4 | 0.00 | 0.99 | 0.03 | -0.02 | 0.34 | 0.16 | 37.00 | | 5 | 0.40 | 0.95 | 0.07 | 0.04 | 0.64 | 0.36 | 37.00 | | 6 | 0.20 | 1.04 | -0.14 | -0.15 | 0.48 | 0.23 | 32.00 | | 7 | 0.30 | 1.01 | 0.14 | 0.13 | 0.52 | 0.19 | 31.00 | | 8 | 0.10 | 0.99 | 0.04 | 0.07 | 0.54 | 0.23 | 28.00 | | 9 | 0.10 | 1.09 | 0.05 | 0.04 | 0.45 | 0.28 | 26.00 | | 10 | 0.10 | 1.21 | 0.09 | 0.10 | 0.54 | 0.24 | 19.00 | | 11 | 0.00 | 1.97 | -0.01 | -0.08 | 0.53 | 0.32 | 12.00 |
# Model Properties We provide here key parameters used to setup and train the model.
Model Parameters These provide the settings to setup the original model: ```json { "n_hidden": 128, "n_latent": 10, "n_layers": 1, "dropout_rate": 0.1, "dispersion": "gene", "gene_likelihood": "zinb", "latent_distribution": "normal" } ```
Setup Data Arguments Arguments passed to setup_anndata of the original model: ```json { "layer": null, "batch_key": null, "labels_key": null, "size_factor_key": null, "categorical_covariate_keys": null, "continuous_covariate_keys": null } ```
Data Registry Registry elements for AnnData manager: | Registry Key | scvi-tools Location | |--------------------------|--------------------------------------| | X | adata.X | | batch | adata.obs['_scvi_batch'] | | labels | adata.obs['_scvi_labels'] | - **Data is Minified**: False
Summary Statistics | Summary Stat Key | Value | |--------------------------|-------| | n_batch | 1 | | n_cells | 400 | | n_extra_categorical_covs | 0 | | n_extra_continuous_covs | 0 | | n_labels | 1 | | n_vars | 100 |
Training **Training data url**: Not provided by uploader If provided by the original uploader, for those interested in understanding or replicating the training process, the code is available at the link below. **Training Code URL**: Not provided by uploader
# References To be added...