-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9d9d9af
commit ff2903d
Showing
1 changed file
with
19 additions
and
19 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
module ActiveInference | ||
|
||
include("functions.jl") | ||
include("maths.jl") | ||
include("functions.jl") | ||
include("maths.jl") | ||
|
||
# From functions.jl | ||
export plot_beliefs | ||
export plot_gridworld | ||
export plot_likelihood | ||
export create_B_matrix | ||
export onehot | ||
export plot_point_on_grid | ||
export infer_states | ||
export get_expected_states | ||
export get_expected_observations | ||
# From functions.jl | ||
export plot_beliefs | ||
export plot_gridworld | ||
export plot_likelihood | ||
export create_B_matrix | ||
export onehot | ||
export plot_point_on_grid | ||
export infer_states | ||
export get_expected_states | ||
export get_expected_observations | ||
|
||
|
||
# From maths.jl | ||
export norm_dist | ||
export sample_category | ||
export softmax | ||
export spm_log_single | ||
export entropy | ||
# From maths.jl | ||
export norm_dist | ||
export sample_category | ||
export softmax | ||
export spm_log_single | ||
export entropy | ||
|
||
|
||
|
||
end | ||
end | ||
|