Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/src/tutorial/connect_four.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ To download AlphaZero.jl and start a new training session, just run the
following:

```sh
export GKSwstype=100 # To avoid an occasional GR bug
git clone --branch v0.5.4 https://github.com/jonathan-laurent/AlphaZero.jl.git
cd AlphaZero.jl
julia --project -e 'import Pkg; Pkg.instantiate()'
Expand All @@ -33,6 +34,7 @@ julia --project -e 'using AlphaZero; Scripts.train("connect-four")'
Instead of using [`Scripts.train`](@ref), one can do things more manually and run the following inside the Julia REPL:

```julia
ENV["GKSwstype"]="100" # To avoid an occasional GR bug
using AlphaZero
experiment = Examples.experiments["connect-four"]
session = Session(experiment, dir="sessions/connect-four")
Expand Down