Creates a node that adds H factors element-wise from multiple branches. All branches must have the same rank k.
Examples
data(aml)
inp <- factor_input(aml)
branch1 <- nmf_layer(inp, k = 5)
branch2 <- nmf_layer(inp, k = 5)
added <- factor_add(branch1, branch2)