-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #160 from ilabcode/dev
Versio 0.5.4
- Loading branch information
Showing
2 changed files
with
30 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
using Test | ||
using HierarchicalGaussianFiltering | ||
|
||
|
||
@testset "Test get_surprise" begin | ||
|
||
@testset "Test for state-transition HGF" begin | ||
|
||
#Set up test inputs | ||
test_inputs = [ | ||
missing missing 2 missing | ||
missing 1 missing missing | ||
missing missing missing 3 | ||
missing missing missing missing | ||
3 missing missing missing | ||
] | ||
|
||
#Initialize HGF | ||
HGF_test = premade_hgf("categorical_state_transitions", verbose = false) | ||
|
||
#Give inputs | ||
give_inputs!(HGF_test, test_inputs) | ||
|
||
#Get surprise | ||
@test get_surprise(HGF_test) isa Real | ||
|
||
end | ||
end |
1e1318a
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JuliaRegistrator register
Minor changes
Fixed error with reset!() setting wrong initial values to categorical state nodes
1e1318a
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Error while trying to register: Version 0.5.3 already exists