Skip to content

Commit db36f17

Browse files
authored
Update README.md
1 parent 5ebcb8d commit db36f17

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

README.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
# scDeepCluster_pytorch
22

33

4-
The pytorch version of scDeepCluster, a model-based deep embedding clustering for Single Cell RNA-seq data.
4+
The pytorch version of scDeepCluster, a model-based deep embedding clustering for Single Cell RNA-seq data. <br/>
5+
6+
Comparing to the original Keras version, I introduced two new features:<br/>
7+
1. The Louvain clustering is implemented after pretraining to allow estimating number of clusters.<br/>
8+
2. A new script "scDeepClusterBatch" uses conditional autoencoder technic to integrate single-cell data from different batches.<br/>
59

610
## Table of contents
711
- [Network diagram](#diagram)
@@ -37,7 +41,7 @@ For single-cell count data from multiple batches:
3741
python run_scDeepClusterBatch.py --data_file data.h5 --n_clusters 0
3842
```
3943

40-
This is the script for clustering analysis of datasets with batches (stored in h5 format, with three components X, B and Y, where X is the cell by gene count matrix, B is the one-hot encoded batch IDs, and Y is the true labels. Y is optional). n_clusters to the number of clusters (0 for automatically estimating by the Louvain algorithm on the pretrained latent features).
44+
This is the script for clustering analysis of datasets with batches (stored in h5 format, with three components X, B and Y, where X is the cell by gene count matrix, B is the one-hot encoded batch IDs, and Y is the true labels. Y is optional). Following the idea from scVI paper (https://doi.org/10.1038/s41592-018-0229-2), we use the conditional autoencoder (https://papers.nips.cc/paper_files/paper/2015/hash/8d55a249e6baa5c06772297520da2051-Abstract.html) technic to integrate different batches. n_clusters to the number of clusters (0 for automatically estimating by the Louvain algorithm on the pretrained latent features).
4145

4246
## <a name="parameters"></a>Parameters
4347

0 commit comments

Comments
 (0)