def _updated_config(self):
"""Shared between different serialization methods."""
from keras import __version__ as keras_version
config = self.get_config()
model_config = {
'class_name': self.__class__.__name__,
'config': config,
'keras_version': keras_version
}
return model_config
topology.py 文件源码
python
阅读 24
收藏 0
点赞 0
评论 0
评论列表
文章目录