martinkim0 commited on
Commit
c9a9063
1 Parent(s): 0336017

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +94 -0
README.md ADDED
@@ -0,0 +1,94 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ library_name: scvi-tools
4
+ tags:
5
+ - biology
6
+ - genomics
7
+ - single-cell
8
+ - model_cls_name:SCVI
9
+ - scvi_version:1.1.0
10
+ - anndata_version:0.10.3
11
+ - modality:rna
12
+ - annotated:False
13
+ ---
14
+
15
+ # Description
16
+
17
+ scVI model trained on synthetic IID data and uploaded with the minified data.
18
+
19
+ # Model properties
20
+
21
+ Many model properties are in the model tags. Some more are listed below.
22
+
23
+ **model_init_params**:
24
+ ```json
25
+ {
26
+ "n_hidden": 128,
27
+ "n_latent": 10,
28
+ "n_layers": 1,
29
+ "dropout_rate": 0.1,
30
+ "dispersion": "gene",
31
+ "gene_likelihood": "zinb",
32
+ "latent_distribution": "normal"
33
+ }
34
+ ```
35
+
36
+ **model_setup_anndata_args**:
37
+ ```json
38
+ {
39
+ "layer": null,
40
+ "batch_key": null,
41
+ "labels_key": null,
42
+ "size_factor_key": null,
43
+ "categorical_covariate_keys": null,
44
+ "continuous_covariate_keys": null
45
+ }
46
+ ```
47
+
48
+ **model_summary_stats**:
49
+ | Summary Stat Key | Value |
50
+ |--------------------------|-------|
51
+ | n_batch | 1 |
52
+ | n_cells | 400 |
53
+ | n_extra_categorical_covs | 0 |
54
+ | n_extra_continuous_covs | 0 |
55
+ | n_labels | 1 |
56
+ | n_latent_qzm | 10 |
57
+ | n_latent_qzv | 10 |
58
+ | n_vars | 100 |
59
+
60
+ **model_data_registry**:
61
+ | Registry Key | scvi-tools Location |
62
+ |-------------------|--------------------------------------|
63
+ | X | adata.X |
64
+ | batch | adata.obs['_scvi_batch'] |
65
+ | labels | adata.obs['_scvi_labels'] |
66
+ | latent_qzm | adata.obsm['_scvi_latent_qzm'] |
67
+ | latent_qzv | adata.obsm['_scvi_latent_qzv'] |
68
+ | minify_type | adata.uns['_scvi_adata_minify_type'] |
69
+ | observed_lib_size | adata.obs['_scvi_observed_lib_size'] |
70
+
71
+ **model_parent_module**: scvi.model
72
+
73
+ **data_is_minified**: True
74
+
75
+ # Training data
76
+
77
+ This is an optional link to where the training data is stored if it is too large
78
+ to host on the huggingface Model hub.
79
+
80
+ <!-- If your model is not uploaded with any data (e.g., minified data) on the Model Hub, then make
81
+ sure to provide this field if you want users to be able to access your training data. See the scvi-tools
82
+ documentation for details. -->
83
+
84
+ Training data url: N/A
85
+
86
+ # Training code
87
+
88
+ This is an optional link to the code used to train the model.
89
+
90
+ Training code url: N/A
91
+
92
+ # References
93
+
94
+ To be added...