码迷,mamicode.com
首页 > 其他好文 > 详细

ML——keras

时间:2020-05-31 19:54:39      阅读:85      评论:0      收藏:0      [点我收藏+]

标签:func   mod   href   lex   tps   using   which   class   ted   

keras官网:https://keras.io/api/models/

创建keras 模型有三种方法:Sequential model、Functional API、Model subclassing  (初学者常用Sequential model)

There are three ways to create Keras models:

  • The Sequential model, which is very straightforward (a simple list of layers), but is limited to single-input, single-output stacks of layers (as the name gives away).
  • The Functional API, which is an easy-to-use, fully-featured API that supports arbitrary model architectures. For most people and most use cases, this is what you should be using. This is the Keras "industry strength" model.
  • Model subclassing, where you implement everything from scratch on your own. Use this if you have complex, out-of-the-box research use cases.

后续补充。。。。。

 

ML——keras

标签:func   mod   href   lex   tps   using   which   class   ted   

原文地址:https://www.cnblogs.com/cfancy/p/13020736.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!