| fm_block | R Documentation |
Creates an aggregation matrix for blockwise aggregation, with optional weighting.
fm_block(
block = NULL,
weights = NULL,
log_weights = NULL,
rescale = FALSE,
n_block = NULL
)
fm_block_eval(
block = NULL,
weights = NULL,
log_weights = NULL,
rescale = FALSE,
n_block = NULL,
values = NULL
)
fm_block_logsumexp_eval(
block = NULL,
weights = NULL,
log_weights = NULL,
rescale = FALSE,
n_block = NULL,
values = NULL,
log = TRUE
)
fm_block_weights(
block = NULL,
weights = NULL,
log_weights = NULL,
rescale = FALSE,
n_block = NULL
)
fm_block_log_weights(
block = NULL,
weights = NULL,
log_weights = NULL,
rescale = FALSE,
n_block = NULL
)
fm_block_log_shift(block = NULL, log_weights = NULL, n_block = NULL)
fm_block_prep(
block = NULL,
log_weights = NULL,
weights = NULL,
n_block = NULL,
values = NULL,
n_values = NULL,
force_log = FALSE
)
block |
integer vector; block information. If Note: from version |
weights |
Optional weight vector |
log_weights |
Optional |
rescale |
logical; If |
n_block |
integer; The number of conceptual blocks. Only needs to be
specified if it's larger than |
values |
Vector to be blockwise aggregated |
log |
If |
n_values |
When supplied, used instead of |
force_log |
When |
A (sparse) matrix
fm_block(): A (sparse) matrix of size n_block times
length(block).
fm_block_eval(): Evaluate aggregation. More efficient alternative to to
as.vector(fm_block(...) %*% values).
fm_block_logsumexp_eval(): Evaluate log-sum-exp aggregation.
More efficient and numerically stable alternative to to
log(as.vector(fm_block(...) %*% exp(values))).
fm_block_weights(): Computes (optionally) blockwise renormalised weights
fm_block_log_weights(): Computes (optionally) blockwise renormalised log-weights
fm_block_log_shift(): Computes shifts for stable blocked log-sum-exp.
To compute \log(\sum_{i; \textrm{block}_i=k} \exp(v_i) w_i) for
each block k, first compute combined values and weights, and a shift:
w_values <- values + fm_block_log_weights(block, log_weights = log_weights) shift <- fm_block_log_shift(block, log_weights = w_values)
Then aggregate the values within each block:
agg <- aggregate(exp(w_values - shift[block]),
by = list(block = block),
\(x) log(sum(x)))
agg$x <- agg$x + shift[agg$block]
The implementation uses a faster method:
as.vector(
Matrix::sparseMatrix(
i = block,
j = rep(1L, length(block)),
x = exp(w_values - shift[block]),
dims = c(n_block, 1))
) + shift
fm_block_prep(): Helper function for preparing block, weights, and
log_weights, n_block inputs.
block <- rep(1:2, 3:2)
fm_block(block)
fm_block(block, rescale = TRUE)
fm_block(block, log_weights = -2:2, rescale = TRUE)
fm_block_eval(
block,
weights = 1:5,
rescale = TRUE,
values = 11:15
)
fm_block_logsumexp_eval(
block,
weights = 1:5,
rescale = TRUE,
values = log(11:15),
log = FALSE
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.