OriKron commited on
Commit
81c7fb1
·
verified ·
1 Parent(s): 24aaac3

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +28 -56
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.20 | 1.32 |
55
- | Pearson Correlation | 0.99 | 0.99 |
56
- | Spearman Correlation | 0.96 | 0.96 |
57
- | R² (R-Squared) | 0.98 | 0.98 |
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 | 24.12 |
67
- | Pearson Correlation | 0.73 |
68
- | Spearman Correlation | 0.77 |
69
- | R² (R-Squared) | -0.74 |
70
 
71
  </details>
72
 
@@ -81,26 +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
- | erythrocyte | 0.96 | 1.13 | 0.68 | 0.86 | 0.09 | 0.98 | 10061.00 |
87
- | neutrophil | 0.97 | 1.12 | 0.71 | 0.93 | 0.22 | 0.90 | 8432.00 |
88
- | classical monocyte | 0.92 | 0.54 | 0.74 | 0.97 | 0.62 | 0.95 | 7211.00 |
89
- | mature NK T cell | 0.96 | 1.35 | 0.64 | 0.92 | 0.62 | 0.93 | 2332.00 |
90
- | naive B cell | 0.97 | 1.74 | 0.62 | 0.86 | 0.47 | 0.87 | 1526.00 |
91
- | CD8-positive, alpha-beta cytokine secreting effector T cell | 0.94 | 1.51 | 0.65 | 0.87 | 0.64 | 0.93 | 1493.00 |
92
- | CD4-positive, alpha-beta memory T cell | 0.95 | 1.57 | 0.59 | 0.86 | 0.58 | 0.88 | 949.00 |
93
- | memory B cell | 0.98 | 2.14 | 0.61 | 0.84 | 0.54 | 0.88 | 597.00 |
94
- | type I NK T cell | 0.92 | 2.37 | 0.60 | 0.79 | 0.62 | 0.89 | 518.00 |
95
- | plasma cell | 0.81 | 1.29 | 0.74 | 0.94 | 0.61 | 0.94 | 487.00 |
96
- | naive thymus-derived CD4-positive, alpha-beta T cell | 0.94 | 2.49 | 0.63 | 0.80 | 0.46 | 0.82 | 412.00 |
97
- | CD8-positive, alpha-beta T cell | 0.95 | 2.20 | 0.63 | 0.81 | 0.57 | 0.87 | 376.00 |
98
- | platelet | 0.76 | 2.71 | 0.70 | 0.82 | 0.40 | 0.83 | 239.00 |
99
- | hematopoietic stem cell | 0.93 | 2.90 | 0.64 | 0.77 | 0.65 | 0.90 | 47.00 |
100
- | T cell | 0.93 | 3.83 | 0.62 | 0.51 | 0.54 | 0.77 | 31.00 |
101
- | basophil | 0.86 | 2.97 | 0.69 | 0.78 | 0.61 | 0.88 | 29.00 |
102
- | CD141-positive myeloid dendritic cell | 0.88 | 4.58 | 0.61 | 0.62 | 0.49 | 0.75 | 15.00 |
103
- | plasmacytoid dendritic cell | 0.90 | 4.96 | 0.58 | 0.52 | 0.47 | 0.72 | 11.00 |
104
 
105
  </details>
106
 
@@ -120,6 +91,7 @@ These provide the settings to setup the original model:
120
  "dropout_rate": 0.05,
121
  "dispersion": "gene",
122
  "gene_likelihood": "nb",
 
123
  "latent_distribution": "normal",
124
  "use_batch_norm": "none",
125
  "use_layer_norm": "both",
@@ -135,9 +107,9 @@ These provide the settings to setup the original model:
135
  Arguments passed to setup_anndata of the original model:
136
  ```json
137
  {
138
- "layer": null,
139
  "batch_key": "donor_assay",
140
- "labels_key": "cell_ontology_class",
141
  "size_factor_key": null,
142
  "categorical_covariate_keys": null,
143
  "continuous_covariate_keys": null
@@ -150,15 +122,15 @@ Arguments passed to setup_anndata of the original model:
150
  <summary><strong>Data Registry</strong></summary>
151
 
152
  Registry elements for AnnData manager:
153
- | Registry Key | scvi-tools Location |
154
- |-------------------|--------------------------------------|
155
- | X | adata.X |
156
- | batch | adata.obs['_scvi_batch'] |
157
- | labels | adata.obs['_scvi_labels'] |
158
- | latent_qzm | adata.obsm['scvi_latent_qzm'] |
159
- | latent_qzv | adata.obsm['scvi_latent_qzv'] |
160
- | minify_type | adata.uns['_scvi_adata_minify_type'] |
161
- | observed_lib_size | adata.obs['observed_lib_size'] |
162
 
163
  - **Data is Minified**: False
164
 
@@ -167,16 +139,16 @@ Registry elements for AnnData manager:
167
  <details>
168
  <summary><strong>Summary Statistics</strong></summary>
169
 
170
- | Summary Stat Key | Value |
171
  |--------------------------|-------|
172
- | n_batch | 6 |
173
- | n_cells | 34766 |
174
- | n_extra_categorical_covs | 0 |
175
- | n_extra_continuous_covs | 0 |
176
- | n_labels | 18 |
177
- | n_latent_qzm | 20 |
178
- | n_latent_qzv | 20 |
179
- | n_vars | 3000 |
180
 
181
  </details>
182
 
 
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 | 17 |
145
+ | n_cells | 85233 |
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