Skip to content

Commit

Permalink
Final tests
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinuzziFrancesco committed May 19, 2021
1 parent c6dec0d commit 473d068
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions test/extras/test_extended_states.jl
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,13 @@ output = ESNpredict(esn, predict_len, W_out)
output = ESNpredict_h_steps(esn, predict_len, h_steps, test, W_out)
@test size(output) == (out_size, predict_len)

#test esnfitted
fit1 = ESNfitted(esn, W_out; autonomous=false)
@test size(fit1) == size(train)

fit2 = ESNfitted(esn, W_out; autonomous=true)
@test size(fit1) == size(train)

#test esgp
mean = MeanZero()
kernel = Lin(1.0)
Expand Down

0 comments on commit 473d068

Please sign in to comment.