C# Класс numl.Supervised.NeuralNetwork.Recurrent.GatedRecurrentGenerator

A Gated Recurrent Unit neural network generator.
Наследование: Generator, ISequenceGenerator
Показать файл Открыть проект

Открытые методы

Метод Описание
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