View source: R/gen-namespace.R
torch_hstack | R Documentation |
Hstack
torch_hstack(tensors)
tensors |
(sequence of Tensors) sequence of tensors to concatenate |
Stack tensors in sequence horizontally (column wise).
This is equivalent to concatenation along the first axis for 1-D tensors, and along the second axis for all other tensors.
if (torch_is_installed()) {
a <- torch_tensor(c(1, 2, 3))
b <- torch_tensor(c(4, 5, 6))
torch_hstack(list(a,b))
a <- torch_tensor(rbind(1,2,3))
b <- torch_tensor(rbind(4,5,6))
torch_hstack(list(a,b))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.