reservoir {echos}R Documentation

Return the reservoir from a trained ESN as tibble

Description

Return the reservoir (internal states) from a trained ESN as tibble. The function works only for models of class ESN.

Usage

reservoir(object)

Arguments

object

An object of class mdl_df, containing an ESN model.

Value

A tibble containing the reservoir (internal states).

Examples

library(tsibble)
library(fable)
AirPassengers %>%
as_tsibble() %>%
model("ESN" = ESN(value)) %>%
reservoir()


[Package echos version 1.0.2 Index]