OriKron commited on
Commit
d671313
·
verified ·
1 Parent(s): 74b4037

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +28 -53
README.md CHANGED
@@ -6,8 +6,8 @@ tags:
6
  - genomics
7
  - single-cell
8
  - model_cls_name:SCVI
9
- - scvi_version:1.2.0
10
- - anndata_version:0.11.1
11
  - modality:rna
12
  - tissue:various
13
  - annotated:True
@@ -20,7 +20,7 @@ The learned low-dimensional latent representation of the data can be used for vi
20
  clustering.
21
 
22
  scVI takes as input a scRNA-seq gene expression matrix with cells and genes.
23
- We provide an extensive [user guide](https://docs.scvi-tools.org/en/1.2.0/user_guide/models/scvi.html).
24
 
25
  - See our original manuscript for further details of the model:
26
  [scVI manuscript](https://www.nature.com/articles/s41592-018-0229-2).
@@ -28,7 +28,7 @@ We provide an extensive [user guide](https://docs.scvi-tools.org/en/1.2.0/user_g
28
  to leverage pre-trained models.
29
 
30
  This model can be used for fine tuning on new data using our Arches framework:
31
- [Arches tutorial](https://docs.scvi-tools.org/en/1.0.0/tutorials/notebooks/scarches_scvi_tools.html).
32
 
33
 
34
  # Model Description
@@ -49,24 +49,14 @@ space might still be useful for analysis.
49
 
50
  **Cell-wise Coefficient of Variation**:
51
 
52
- | Metric | Training Value | Validation Value |
53
- |-------------------------|----------------|------------------|
54
- | Mean Absolute Error | 1.82 | 1.82 |
55
- | Pearson Correlation | 0.85 | 0.84 |
56
- | Spearman Correlation | 0.77 | 0.76 |
57
- | R² (R-Squared) | 0.48 | 0.47 |
58
 
59
  The gene-wise coefficient of variation summarizes how well variation between different genes is
60
  preserved by the generated model expression. This value is usually quite high.
61
 
62
  **Gene-wise Coefficient of Variation**:
63
 
64
- | Metric | Training Value |
65
- |-------------------------|----------------|
66
- | Mean Absolute Error | 18.57 |
67
- | Pearson Correlation | 0.65 |
68
- | Spearman Correlation | 0.71 |
69
- | R² (R-Squared) | -0.77 |
70
 
71
  </details>
72
 
@@ -81,23 +71,7 @@ cell-type.
81
 
82
  **Differential expression**:
83
 
84
- | Index | gene_f1 | lfc_mae | lfc_pearson | lfc_spearman | roc_auc | pr_auc | n_cells |
85
- | --- | --- | --- | --- | --- | --- | --- | --- |
86
- | fibroblast | 0.95 | 1.10 | 0.75 | 0.95 | 0.34 | 0.90 | 5557.00 |
87
- | macrophage | 0.90 | 1.12 | 0.71 | 0.94 | 0.31 | 0.88 | 5338.00 |
88
- | bladder urothelial cell | 0.90 | 0.99 | 0.79 | 0.96 | 0.42 | 0.91 | 4151.00 |
89
- | T cell | 0.92 | 1.97 | 0.72 | 0.89 | 0.24 | 0.86 | 2916.00 |
90
- | myofibroblast cell | 0.88 | 1.95 | 0.66 | 0.87 | 0.34 | 0.84 | 2078.00 |
91
- | plasma cell | 0.79 | 2.37 | 0.68 | 0.86 | 0.17 | 0.87 | 1141.00 |
92
- | mast cell | 0.92 | 2.77 | 0.61 | 0.81 | 0.21 | 0.79 | 1029.00 |
93
- | pericyte | 0.93 | 2.29 | 0.70 | 0.86 | 0.28 | 0.78 | 875.00 |
94
- | mature NK T cell | 0.83 | 3.07 | 0.67 | 0.82 | 0.42 | 0.87 | 508.00 |
95
- | smooth muscle cell | 0.88 | 3.26 | 0.68 | 0.78 | 0.30 | 0.83 | 290.00 |
96
- | vein endothelial cell | 0.79 | 3.19 | 0.68 | 0.83 | 0.37 | 0.79 | 278.00 |
97
- | B cell | 0.75 | 4.06 | 0.57 | 0.69 | 0.34 | 0.75 | 253.00 |
98
- | capillary endothelial cell | 0.75 | 3.32 | 0.71 | 0.75 | 0.37 | 0.75 | 77.00 |
99
- | endothelial cell of lymphatic vessel | 0.78 | 4.95 | 0.62 | 0.70 | 0.29 | 0.70 | 74.00 |
100
- | plasmacytoid dendritic cell | 0.52 | 6.60 | 0.49 | 0.43 | 0.32 | 0.73 | 18.00 |
101
 
102
  </details>
103
 
@@ -117,6 +91,7 @@ These provide the settings to setup the original model:
117
  "dropout_rate": 0.05,
118
  "dispersion": "gene",
119
  "gene_likelihood": "nb",
 
120
  "latent_distribution": "normal",
121
  "use_batch_norm": "none",
122
  "use_layer_norm": "both",
@@ -132,9 +107,9 @@ These provide the settings to setup the original model:
132
  Arguments passed to setup_anndata of the original model:
133
  ```json
134
  {
135
- "layer": null,
136
  "batch_key": "donor_assay",
137
- "labels_key": "cell_ontology_class",
138
  "size_factor_key": null,
139
  "categorical_covariate_keys": null,
140
  "continuous_covariate_keys": null
@@ -147,15 +122,15 @@ Arguments passed to setup_anndata of the original model:
147
  <summary><strong>Data Registry</strong></summary>
148
 
149
  Registry elements for AnnData manager:
150
- | Registry Key | scvi-tools Location |
151
- |-------------------|--------------------------------------|
152
- | X | adata.X |
153
- | batch | adata.obs['_scvi_batch'] |
154
- | labels | adata.obs['_scvi_labels'] |
155
- | latent_qzm | adata.obsm['scvi_latent_qzm'] |
156
- | latent_qzv | adata.obsm['scvi_latent_qzv'] |
157
- | minify_type | adata.uns['_scvi_adata_minify_type'] |
158
- | observed_lib_size | adata.obs['observed_lib_size'] |
159
 
160
  - **Data is Minified**: False
161
 
@@ -164,16 +139,16 @@ Registry elements for AnnData manager:
164
  <details>
165
  <summary><strong>Summary Statistics</strong></summary>
166
 
167
- | Summary Stat Key | Value |
168
  |--------------------------|-------|
169
- | n_batch | 5 |
170
- | n_cells | 24583 |
171
- | n_extra_categorical_covs | 0 |
172
- | n_extra_continuous_covs | 0 |
173
- | n_labels | 15 |
174
- | n_latent_qzm | 20 |
175
- | n_latent_qzv | 20 |
176
- | n_vars | 3000 |
177
 
178
  </details>
179
 
 
6
  - genomics
7
  - single-cell
8
  - model_cls_name:SCVI
9
+ - scvi_version:1.4.2
10
+ - anndata_version:0.12.7
11
  - modality:rna
12
  - tissue:various
13
  - annotated:True
 
20
  clustering.
21
 
22
  scVI takes as input a scRNA-seq gene expression matrix with cells and genes.
23
+ We provide an extensive [user guide](https://docs.scvi-tools.org/en/stable/user_guide/models/scvi.html).
24
 
25
  - See our original manuscript for further details of the model:
26
  [scVI manuscript](https://www.nature.com/articles/s41592-018-0229-2).
 
28
  to leverage pre-trained models.
29
 
30
  This model can be used for fine tuning on new data using our Arches framework:
31
+ [Arches tutorial](https://docs.scvi-tools.org/en/stable/tutorials/notebooks/scrna/scarches_scvi_tools.html).
32
 
33
 
34
  # Model Description
 
49
 
50
  **Cell-wise Coefficient of Variation**:
51
 
52
+ Not provided by uploader
 
 
 
 
 
53
 
54
  The gene-wise coefficient of variation summarizes how well variation between different genes is
55
  preserved by the generated model expression. This value is usually quite high.
56
 
57
  **Gene-wise Coefficient of Variation**:
58
 
59
+ Not provided by uploader
 
 
 
 
 
60
 
61
  </details>
62
 
 
71
 
72
  **Differential expression**:
73
 
74
+ Not provided by uploader
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
75
 
76
  </details>
77
 
 
91
  "dropout_rate": 0.05,
92
  "dispersion": "gene",
93
  "gene_likelihood": "nb",
94
+ "use_observed_lib_size": true,
95
  "latent_distribution": "normal",
96
  "use_batch_norm": "none",
97
  "use_layer_norm": "both",
 
107
  Arguments passed to setup_anndata of the original model:
108
  ```json
109
  {
110
+ "layer": "counts",
111
  "batch_key": "donor_assay",
112
+ "labels_key": "cell_type",
113
  "size_factor_key": null,
114
  "categorical_covariate_keys": null,
115
  "continuous_covariate_keys": null
 
122
  <summary><strong>Data Registry</strong></summary>
123
 
124
  Registry elements for AnnData manager:
125
+ | Registry Key | scvi-tools Location |
126
+ |--------------------------|--------------------------------------|
127
+ | X | adata.layers['counts'] |
128
+ | batch | adata.obs['_scvi_batch'] |
129
+ | labels | adata.obs['_scvi_labels'] |
130
+ | latent_qzm | adata.obsm['scvi_latent_qzm'] |
131
+ | latent_qzv | adata.obsm['scvi_latent_qzv'] |
132
+ | minify_type | adata.uns['_scvi_adata_minify_type'] |
133
+ | observed_lib_size | adata.obs['observed_lib_size'] |
134
 
135
  - **Data is Minified**: False
136
 
 
139
  <details>
140
  <summary><strong>Summary Statistics</strong></summary>
141
 
142
+ | Summary Stat Key | Value |
143
  |--------------------------|-------|
144
+ | n_batch | 9 |
145
+ | n_cells | 66385 |
146
+ | n_extra_categorical_covs | 0 |
147
+ | n_extra_continuous_covs | 0 |
148
+ | n_labels | 22 |
149
+ | n_latent_qzm | 20 |
150
+ | n_latent_qzv | 20 |
151
+ | n_vars | 3000 |
152
 
153
  </details>
154