Skip to content

Commit

Permalink
Test 6
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan7773 committed Nov 5, 2024
1 parent c41fdcd commit b6bea1e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 15 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" => "docs/src/markdown_files/index.md",
"Home" => "./src/markdown_files/index.md",

"General Introduction" => [

"Introduction" => "docs/src/markdown_files/Introduction.md",
"Introduction" => "./src/markdown_files/Introduction.md",
"Creation of the Generative Model" => [],
"Simulation" => [],
"Model Fitting" => [],
Expand Down
20 changes: 7 additions & 13 deletions docs/src/julia_files/GenerativeModelCreation.jl
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,12 @@
# Let us for example imagine a simple case, where the agent is in a four location state environment, could be a 2x2 gridworld. In this case, there would be one obseration linked to each hidden state, and A then maps the agent's belief of how likely each hidden location state is to generate each observation.
# The agent can then use this belief to infer what state it is in based on the observation it receives. Let's look at an example A, which in this case would be a 4x4 matrix:


# $$
# \begin{array}{c c|c c c c}
# & & O_1 & O_2 & O_3 & O_4 \\
# \cline{3-6}
# \multirow{4}{*}{\left\{\begin{array}{c}
# \text{Hidden} \\
# \text{States}
# \end{array}\right.}
# & H_1 & 0.85 & 0.05 & 0.05 & 0.05 \\
# & H_2 & 0.05 & 0.85 & 0.05 & 0.05 \\
# & H_3 & 0.05 & 0.05 & 0.85 & 0.05 \\
# & H_4 & 0.05 & 0.05 & 0.05 & 0.85
# \end{array}
# \begin{bmatrix}
# 0.85 & 0.05 & 0.05 & 0.05\\
# 0.05 & 0.85 & 0.05 & 0.05\\
# 0.05 & 0.05 & 0.85 & 0.05\\
# 0.05 & 0.05 & 0.05 & 0.85
# \end{bmatrix}
# $$

0 comments on commit b6bea1e

Please sign in to comment.