keras入门(一)

大牛博客:

  1. keras系列
    https://blog.csdn.net/sinat_26917383/article/details/72857454

keras模块列表

image.png

keras典型框架
主要讲述了keras经典模型--Sequential模型中model的顺序创建连接方法。
另外keras训练基本套路,compile, fit, evaluate, predict.
指定模型Sequential( )
---->堆叠模块 .add( )
---->编译模型 .compile( )
---->在训练数据上迭代 .fit( )
---->评估 .evaluate( )
---->对新数据的预测 .predict( )
https://blog.csdn.net/weixin_43442290/article/details/93873422

keras结合skleran进行超参网格搜索
https://blog.csdn.net/lixianjun913/article/details/52216795

keras后端
http://www.360doc.com/content/17/0126/22/40028542_624945384.shtml

你可能感兴趣的:(keras入门(一))