marcovarrone commited on
Commit
54a2f6d
1 Parent(s): 2e52ce9

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +93 -0
README.md ADDED
@@ -0,0 +1,93 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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:0.20.0
10
+ - anndata_version:0.8.0
11
+ - modality:rna
12
+ - annotated:False
13
+ ---
14
+
15
+ # Description
16
+
17
+ scVI model trained on the full DLPFC Visium data (including the pilot samples).
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": 5,
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": "counts",
40
+ "batch_key": "patient",
41
+ "labels_key": null,
42
+ "size_factor_key": null,
43
+ "categorical_covariate_keys": [
44
+ "sample",
45
+ "study"
46
+ ],
47
+ "continuous_covariate_keys": null
48
+ }
49
+ ```
50
+
51
+ **model_summary_stats**:
52
+ | Summary Stat Key | Value |
53
+ |--------------------------|--------|
54
+ | n_batch | 13 |
55
+ | n_cells | 166443 |
56
+ | n_extra_categorical_covs | 2 |
57
+ | n_extra_continuous_covs | 0 |
58
+ | n_labels | 1 |
59
+ | n_vars | 5000 |
60
+
61
+ **model_data_registry**:
62
+ | Registry Key | scvi-tools Location |
63
+ |------------------------|--------------------------------------------|
64
+ | X | adata.layers['counts'] |
65
+ | batch | adata.obs['_scvi_batch'] |
66
+ | extra_categorical_covs | adata.obsm['_scvi_extra_categorical_covs'] |
67
+ | labels | adata.obs['_scvi_labels'] |
68
+
69
+ **model_parent_module**: scvi.model
70
+
71
+ **data_is_minified**: False
72
+
73
+ # Training data
74
+
75
+ This is an optional link to where the training data is stored if it is too large
76
+ to host on the huggingface Model hub.
77
+
78
+ <!-- If your model is not uploaded with any data (e.g., minified data) on the Model Hub, then make
79
+ sure to provide this field if you want users to be able to access your training data. See the scvi-tools
80
+ documentation for details. -->
81
+
82
+ Training data url: N/A
83
+
84
+ # Training code
85
+
86
+ This is an optional link to the code used to train the model.
87
+
88
+ Training code url: N/A
89
+
90
+ # References
91
+
92
+ 1. Maynard, Kristen R., et al. "Transcriptome-scale spatial gene expression in the human dorsolateral prefrontal cortex." Nature neuroscience 24.3 (2021): 425-436.
93
+ 2. Huuki-Myers, Louise A., et al. "Integrated single cell and unsupervised spatial transcriptomic analysis defines molecular anatomy of the human dorsolateral prefrontal cortex." BioRxiv (2023): 2023-02.