to_savable_callable {gnn} | R Documentation |
Keras objects cannot be saved like other R objects.
The auxiliary functions to_savable()
and
to_callable()
address this issue.
to_savable(gnn) to_callable(gnn)
gnn |
GNN object. |
For GMMNs, to_savable()
calls serialize_model()
and to_callable()
calls unserialize_model()
.
See the source code for more details.
to_savable()
:The GNN object with keras components replaced by savable ones.
to_callable()
:The GNN object with certain components replaced by keras objects.
Marius Hofert