log_Softmax | R Documentation |
log softmax of matrices (by row)
log_Softmax(log_X)
log_X |
a matrix of log(X) |
X with log_softmax function applied on each row
set.seed(42)
X <- matrix(rnorm(15,mean=5),5,3)
log_X <- log(X)
X_softmax <- log_Softmax(X)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.