avelezarce commited on
Commit
306cae4
verified
1 Parent(s): e155829

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +24 -3
README.md CHANGED
@@ -15,14 +15,35 @@ tags:
15
  - therapeutics
16
  library_name: tdc
17
  license: bsd-2-clause
 
 
18
  ---
19
- COMING SOON
20
- weights extracted from https://cellxgene.cziscience.com/census-models
21
 
22
- ## Model description
23
  Single-cell variational inference (scVI) is a powerful tool for the probabilistic analysis of single-cell transcriptomics data. It uses deep generative models to address technical noise and batch effects, providing a robust framework for various downstream analysis tasks.
24
  To load the pre-trained model, use the Files and Versions tab files.
25
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  ## References
27
  * Lopez, R., Regier, J., Cole, M., Jordan, M. I., & Yosef, N. (2018). Deep Generative Modeling for Single-cell Transcriptomics. Nature Methods, 15, 1053-1058.
28
  * Gayoso, A., Lopez, R., Xing, G., Boyeau, P., Wu, K., Jayasuriya, M., Mehlman, E., Langevin, M., Liu, Y., Samaran, J., Misrachi, G., Nazaret, A., Clivio, O., Xu, C. A., Ashuach, T., Lotfollahi, M., Svensson, V., Beltrame, E., Talavera-L贸pez, C., ... Yosef, N. (2021). scvi-tools: a library for deep probabilistic analysis of single-cell omics data. bioRxiv.
 
15
  - therapeutics
16
  library_name: tdc
17
  license: bsd-2-clause
18
+ datasets:
19
+ - scvi-tools/DATASET-FOR-UNIT-TESTING-1
20
  ---
 
 
21
 
22
+ # scVI
23
  Single-cell variational inference (scVI) is a powerful tool for the probabilistic analysis of single-cell transcriptomics data. It uses deep generative models to address technical noise and batch effects, providing a robust framework for various downstream analysis tasks.
24
  To load the pre-trained model, use the Files and Versions tab files.
25
 
26
+ # Code
27
+
28
+ ```python
29
+ from tdc.multi_pred.anndata_dataset import DataLoader
30
+ from tdc import tdc_hf_interface
31
+
32
+ adata = DataLoader("scvi_test_dataset",
33
+ "./data",
34
+ dataset_names=["scvi_test_dataset"],
35
+ no_convert=True).adata
36
+
37
+ scvi = tdc_hf_interface("scVI")
38
+ model = scvi.load()
39
+ output = model(adata)
40
+ ```
41
+
42
+ # TDC.scVI Source Code
43
+ * https://github.com/apliko-xyz/PyTDC/blob/main/tdc/model_server/models/scvi.py
44
+ * weights extracted from https://cellxgene.cziscience.com/census-models
45
+
46
+
47
  ## References
48
  * Lopez, R., Regier, J., Cole, M., Jordan, M. I., & Yosef, N. (2018). Deep Generative Modeling for Single-cell Transcriptomics. Nature Methods, 15, 1053-1058.
49
  * Gayoso, A., Lopez, R., Xing, G., Boyeau, P., Wu, K., Jayasuriya, M., Mehlman, E., Langevin, M., Liu, Y., Samaran, J., Misrachi, G., Nazaret, A., Clivio, O., Xu, C. A., Ashuach, T., Lotfollahi, M., Svensson, V., Beltrame, E., Talavera-L贸pez, C., ... Yosef, N. (2021). scvi-tools: a library for deep probabilistic analysis of single-cell omics data. bioRxiv.