Container that allows named values
Examples
if (torch_is_installed()) {
nn_module <- nn_module(
initialize = function() {
self$dict <- nn_module_dict(list(
l1 = nn_linear(10, 20),
l2 = nn_linear(20, 10)
))
},
forward = function(x) {
x <- self$dict$l1(x)
self$dict$l2(x)
}
)
}