to_yaml
- FullyConnected.to_yaml(**kwargs)
Returns a yaml string containing the network configuration.
Note: Since TF 2.6, this method is no longer supported and will raise a RuntimeError.
To load a network from a yaml save file, use keras.models.model_from_yaml(yaml_string, custom_objects={}).
custom_objects should be a dictionary mapping the names of custom losses / layers / etc to the corresponding functions / classes.
- Parameters:
**kwargs – Additional keyword arguments to be passed to yaml.dump().
- Returns:
A YAML string.
- Raises:
RuntimeError – announces that the method poses a security risk