Skip to content

Commit 0b5370c

Browse files
authored
Fix path for figures in README
1 parent 9338649 commit 0b5370c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -73,28 +73,28 @@ Did **not** work:
7373

7474
# Reproducing the Plots
7575

76-
![Local novelty per depth](local_novelty_per_depth.png)
76+
![Local novelty per depth](figures/local_novelty_per_depth.png)
7777

7878
To generate the local novelty per depth graph follow these steps:
7979
1. Edit `eee/src/seen_ratio.rs` with the path to a trained model, and adjust the imports based on whether it is a SimHash or LCGHash model.
8080
2. Run `cargo run -p eee -r --bin seen_ratio` for each agent.
8181
3. Take the output and place it into `python/novelty_per_depth.py`.
8282
4. Run `python python/novelty_per_depth.py`.
8383

84-
![Generalization behaviour for SimHash and LCGHash](generalization_behaviour.png)
84+
![Generalization behaviour for SimHash and LCGHash](figures/generalization_behaviour.png)
8585

8686
1. Acquire a replay buffer by running an undirected agent. (See elo graph instructions.)
8787
2. Edit the import in `eee/src/generalization.rs` for the model that you want to test.
8888
3. Run `cargo run -p eee -r --bin generalization` for each agent, rename the output file `eee_data.csv` for each.
8989
4. Edit `plot_eee.py` to plot hashes and run `python python/plot_eee.py`
9090

91-
![RND Behaviour](rnd_behaviour.png)
91+
![RND Behaviour](figures/rnd_behaviour.png)
9292

9393
1. Acquire a replay buffer by running an undirected agent. (See elo graph instructions.)
9494
2. Run `cargo run -p eee -r --bin rnd`
9595
3. Edit `plot_eee.py` to plot RND and run `python python/plot_eee.py`
9696

97-
![Elo ratings for different agents throughout training](elo.png)
97+
![Elo ratings for different agents throughout training](figures/elo.png)
9898

9999
To generate the elo ratings for agents throughout training follow these steps:
100100
1. Edit `selfplay/src/main.rs`, `reanalyze/src/main.rs`, and `learn/src/main.rs` for the agent and value of beta that is desired.
@@ -106,7 +106,7 @@ To generate the elo ratings for agents throughout training follow these steps:
106106
7. Place the match results into `match_results/` and run `python python/elo.py` to plot the elo.
107107
8. For an easier to edit plot, copy the bayeselo output from `elo.py` into `plot_elo_data.py` in the expected format.
108108

109-
![Replay buffer uniqueness](replay_buffer_uniqueness.png)
109+
![Replay buffer uniqueness](figures/replay_buffer_uniqueness.png)
110110

111111
To generate the replay uniqueness graphs follow these steps:
112112
1. Train agents using steps 1-3 from the elo graph instructions.

0 commit comments

Comments
 (0)