C# 클래스 numl.Supervised.NeuralNetwork.Recurrent.GatedRecurrentGenerator

A Gated Recurrent Unit neural network generator.
상속: Generator, ISequenceGenerator
파일 보기 프로젝트 열기: sethjuarez/numl

공개 메소드들

메소드 설명
GatedRecurrentGenerator ( ) : System

Initializes a new instance of a Gated Recurrent Network generator.

Generate ( Matrix X, Vector y ) : IModel

Generates a GRU neural network from the training set.

Generate ( Matrix X, Matrix Y ) : ISequenceModel

Generates a GRU neural network model for predicting sequences.

메소드 상세

GatedRecurrentGenerator() 공개 메소드

Initializes a new instance of a Gated Recurrent Network generator.
public GatedRecurrentGenerator ( ) : System
리턴 System

Generate() 공개 메소드

Generates a GRU neural network from the training set.
public Generate ( Matrix X, Vector y ) : IModel
X Matrix The Matrix of example data.
y numl.Math.LinearAlgebra.Vector The vector of example labels.
리턴 IModel

Generate() 공개 메소드

Generates a GRU neural network model for predicting sequences.
public Generate ( Matrix X, Matrix Y ) : ISequenceModel
X Matrix Matrix of training data.
Y Matrix Matrix of matching sequence labels.
리턴 ISequenceModel