Skip to content

Commit fc44957

Browse files
committed
Update probability section in Chapter 13
1 parent 34392bc commit fc44957

File tree

7 files changed

+87
-211
lines changed

7 files changed

+87
-211
lines changed

.github/workflows/ExportPluto.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,11 @@ jobs:
4848
run: |
4949
julia -e 'using Pkg
5050
Pkg.activate("TabularRL.jl")
51-
Pkg.instantiate()
51+
Pkg.resolve()
52+
using TabularRL
5253
Pkg.activate("ApproximationUtils.jl")
53-
Pkg.instantiate()
54+
Pkg.resolve()
55+
using ApproximationUtils
5456
Pkg.activate(mktempdir())
5557
Pkg.add([
5658
Pkg.PackageSpec(name="PlutoSliderServer", version="1"),
@@ -62,7 +64,7 @@ jobs:
6264
Export_cache_dir="pluto_state_cache",
6365
Export_baked_notebookfile=false,
6466
Export_baked_state=false,
65-
Export_exclude = ["Chapter-13/*", "TabularRL.jl/examples/test_notebook.jl", "TabularRL.jl/examples/rubiks_cube.jl", "Examples/*"]
67+
Export_exclude = ["TabularRL.jl/examples/test_notebook.jl", "TabularRL.jl/examples/rubiks_cube.jl", "Examples/*"]
6668
# more parameters can go here
6769
)'
6870

Chapter-10/Chapter_10_On_policy_Control_with_Approximation.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ end
2323
# ╔═╡ 318b398a-d8f2-4f39-a45d-fd9023961bf8
2424
# ╠═╡ skip_as_script = true
2525
#=╠═╡
26-
include(joinpath(@__DIR__, "..", "Chapter-9", "Chapter_9_On-policy_Prediction_with_Approximation.jl"))
26+
include(joinpath(@__DIR__, "..", "Chapter-09", "Chapter_09_On-policy_Prediction_with_Approximation.jl"))
2727
╠═╡ =#
2828

2929
# ╔═╡ 35d59eae-77fd-11ef-2790-35dd5a834060

Chapter-11/Chapter_11_Off_policy_Methods_with_Approximation.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ end
2323

2424
# ╔═╡ c8bae838-0549-48e3-b858-0c071334c0b7
2525
begin
26-
include(joinpath(@__DIR__, "..", "Chapter-9", "Chapter_9_On-policy_Prediction_with_Approximation.jl"))
26+
include(joinpath(@__DIR__, "..", "Chapter-09", "Chapter_09_On-policy_Prediction_with_Approximation.jl"))
2727
include(joinpath(@__DIR__, "..", "Chapter-10", "Chapter_10_On_policy_Control_with_Approximation.jl"))
2828
end
2929

Chapter-12/Chapter_12_Eligibility_Traces.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ end
2222

2323
# ╔═╡ 062f756b-6640-4928-9216-c54316503944
2424
begin
25-
include(joinpath(@__DIR__, "..", "Chapter-9", "Chapter_9_On-policy_Prediction_with_Approximation.jl"))
25+
include(joinpath(@__DIR__, "..", "Chapter-09", "Chapter_09_On-policy_Prediction_with_Approximation.jl"))
2626
include(joinpath(@__DIR__, "..", "Chapter-10", "Chapter_10_On_policy_Control_with_Approximation.jl"))
2727
include(joinpath(@__DIR__, "..", "Chapter-11", "Chapter_11_Off_policy_Methods_with_Approximation.jl"))
2828
end

Chapter-13/Chapter_13_Policy_Gradient_Methods.jl

Lines changed: 77 additions & 204 deletions
Large diffs are not rendered by default.

TabularRL.jl/examples/defining_tabular_mdps.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ Clone the repository to your system inside a directory where you have read/write
7979
Navigate inside of the repository directory where you should find the following shell scripts: `setup.sh`, `start.sh`, `update.sh`. Note that you may need to make these files executable with
8080
8181
```shell
82-
> chmod +x setup.sh```
82+
> chmod +x setup.sh
8383
```
8484
8585
You can begin by running the start shell script which will automatically run the setup script if this is your first time using the repository:

index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ <h3>Part 2: Approximate Solution Methods</h3>
8282
<li><a href="Chapter-10/Chapter_10_On_policy_Control_with_Approximation.html">Chapter 10: On-policy Control with Approximation</a></li>
8383
<li><a href="Chapter-11/Chapter_11_Off_policy_Methods_with_Approximation.html">Chapter 11: Off-policy Methods with Approximation</a></li>
8484
<li><a href="Chapter-12/Chapter_12_Eligibility_Traces.html">Chapter 12: Eligibility Traces</a></li>
85+
<li><a href="Chapter-13/Chapter_13_Policy_Gradient_Methods.html">Chapter 13: Policy Gradient Methods</a></li>
8586
</ul>
8687
<h2>Documentation</h2>
8788
<h3>Tabular Methods</h3>

0 commit comments

Comments
 (0)