Show / Hide Table of Contents

Class Model

In the functional API, given some input tensor(s) and output tensor(s). This model will include all layers required in the computation of b given a.

Inheritance
System.Object
Keras
Base
BaseModel
Model
AppModelBase
Implements
System.IDisposable
Inherited Members
BaseModel.Compile(StringOrInstance, String, String[], Single[], String, String[], NDarray[])
BaseModel.Fit(NDarray, NDarray, Nullable<Int32>, Int32, Int32, Callback[], Single, NDarray[], Boolean, Dictionary<Int32, Single>, NDarray, Int32, Nullable<Int32>, Nullable<Int32>)
BaseModel.Evaluate(NDarray, NDarray, Nullable<Int32>, Int32, NDarray, Nullable<Int32>, Callback[])
BaseModel.Predict(NDarray, Nullable<Int32>, Int32, Nullable<Int32>, Callback[])
BaseModel.TrainOnBatch(NDarray, NDarray, NDarray, Dictionary<Int32, Single>)
BaseModel.TestOnBatch(NDarray, NDarray, NDarray)
BaseModel.PredictOnBatch(NDarray)
BaseModel.ToJson()
BaseModel.SaveWeight(String)
BaseModel.Save(String)
BaseModel.LoadWeight(String)
BaseModel.LoadModel(String)
BaseModel.ModelFromJson(String)
BaseModel.ModelFromYaml(String)
BaseModel.SaveOnnx(String)
BaseModel.Summary(Nullable<Int32>, Single[])
BaseModel.SaveTensorflowJSFormat(String, Boolean)
Base.Parameters
Base.None
Base.Init()
Base.ToPython()
Base.InvokeStaticMethod(Object, String, Dictionary<String, Object>)
Base.InvokeMethod(String, Dictionary<String, Object>)
Base.Item[String]
Keras.Instance
Keras.keras
Keras.keras2onnx
Keras.tfjs
Keras.Dispose()
Keras.ToTuple(Array)
Keras.ToList(Array)
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Keras.Models
Assembly: Keras.dll
Syntax
public class Model : BaseModel, IDisposable

Constructors

| Improve this Doc View Source

Model(BaseLayer[], BaseLayer[])

Initializes a new instance of the Model class.

Declaration
public Model(BaseLayer[] inputs, BaseLayer[] outputs)
Parameters
Type Name Description
BaseLayer[] inputs

The inputs layers.

BaseLayer[] outputs

The outputs layers.

Implements

System.IDisposable
  • Improve this Doc
  • View Source
Back to top Generated by DocFX