Skip to content

Commit

Permalink
Test 8
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan7773 committed Nov 5, 2024
1 parent d9dabb9 commit 543698e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ makedocs(;
),
pages=[

"Home" => "index.md",
"Home" => joinpath(@__DIR__, "index.md"),

"General Introduction" => [

"Introduction" => "Introduction.md",
"Introduction" => joinpath(@__DIR__, "Introduction.md"),
"Creation of the Generative Model" => [],
"Simulation" => [],
"Model Fitting" => [],
Expand Down
5 changes: 4 additions & 1 deletion docs/src/julia_files/GenerativeModelCreation.jl
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,7 @@
# $$

# In this case, the agent is quite certain about which states produces which observations. This matrix could be made more uncertain to the point of complete uniformity and it could be made certain in the sense of each column being a one-hot vector.
# In the case of a certain A, the generative model stops being a "partially observable" Markov decision process, and becomes a fully observable one, making it a Markov decision process (MDP). For a more technical and mathematical definition of
# In the case of a certain A, the generative model stops being a "partially observable" Markov decision process, and becomes a fully observable one, making it a Markov decision process (MDP). For a more technical and mathematical definition of the observation likelihood model.

# ## B
#

0 comments on commit 543698e

Please sign in to comment.