随笔分类 -  keras

摘要:链接:https://pan.baidu.com/s/1isjLEUPZpkz0F3c45a59KA 密码:bueu 如果失效,点这里 阅读全文
posted @ 2020-08-22 23:19 anobscureretreat 阅读(810) 评论(0) 推荐(0) 编辑
摘要:import numpy as np a = np.array([[1,2],[3,4]]) sumo = np.sum(a,axis=0) suml = np.sum(a,axis=O) print(sumo) print(suml) 阅读全文
posted @ 2019-07-11 01:06 anobscureretreat 阅读(1147) 评论(0) 推荐(0) 编辑
摘要:https://keras.io/models/sequential/ 阅读全文
posted @ 2019-06-07 18:04 anobscureretreat 阅读(84) 评论(0) 推荐(0) 编辑
摘要:Compile:配置模型,然后进行训练 compile(optimizer, loss=None, metrics=None, loss_weights=None, sample_weight_mode=None, weighted_metrics=None, target_tensors=None 阅读全文
posted @ 2019-06-07 18:03 anobscureretreat 阅读(251) 评论(0) 推荐(0) 编辑
摘要:keras模型在keras中主要有两种模型,顺序模型,以及模型类(类的内部有函数) 模型继承除了这两种类型的模型,通过继承Modle类并且实现你自己的方法调用,您可以创建自己的完全自定制的模型 (模型类是在Keras 2.2.0中引入的)。 下面是模型类实现的一个简单的多层感知模型 layers在_ 阅读全文
posted @ 2019-06-07 14:16 anobscureretreat 阅读(1025) 评论(0) 推荐(0) 编辑