nn_unflatten | R Documentation |
Unflattens a tensor dim expanding it to a desired shape. For use with [nn_sequential.
nn_unflatten(dim, unflattened_size)
dim |
Dimension to be unflattened |
unflattened_size |
New shape of the unflattened dimension |
if (torch_is_installed()) {
input <- torch_randn(2, 50)
m <- nn_sequential(
nn_linear(50, 50),
nn_unflatten(2, c(2, 5, 5))
)
output <- m(input)
output$size()
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.