VaeModel | R Documentation |
Build a VAE model for V-plot of multiple ATAC-seq datasets. This model takes the stacked V-plots of the same genomic regions as the input.
VaeModel(
x,
latent_dim = 10L,
filters0 = 128L,
filters = 32L,
kernel_size = 3L,
downsample_layers = 4L,
upsample_layers = 4L,
strides = c(2L, 2L),
momentum = 0.8,
rate = 0.1,
name = NULL
)
x |
a Vplots or a VplotsList object |
latent_dim |
Latent dimension (default: 10L) |
filters0 |
Filter size after the latent layer (default: 128L) |
filters |
Initial filter size of convolution layer (default: 32L) |
kernel_size |
Kernel size in convolution and deconvolution layers (default: 3L) |
downsample_layers |
Downsample layers (default: 4L) |
upsample_layers |
Upsample layers (default: 4L) |
strides |
Convolution strides |
momentum |
Momentum in BatchNormalization layer (default: 0.8) |
rate |
Dropout rate (default: 0.1) |
name |
Model name |
a VaeModel object
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.