You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/guide/plotting.rst
+56-71Lines changed: 56 additions & 71 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,20 +4,37 @@
4
4
Plotting
5
5
========
6
6
7
+
7
8
Stable Baselines3 provides utilities for plotting training results to monitor and visualize your agent's learning progress.
9
+
The plotting functionality is provided by the ``results_plotter`` module, which can load monitor files created during training and generate various plots.
which provide plotting capabilities with confidence intervals, and publication-ready visualizations.
14
16
15
17
16
18
Recommended Approach: RL Baselines3 Zoo Plotting
17
19
================================================
18
20
19
-
Installation and Usage
20
-
----------------------
21
+
To have good plotting capabilities, including:
22
+
23
+
- Comparing results across different environments
24
+
- Publication-ready plots with confidence intervals
25
+
- Evaluation plots with error bars
26
+
27
+
We recommend using the plotting scripts from `RL Baselines3 Zoo <https://github.com/DLR-RM/rl-baselines3-zoo>`_:
28
+
29
+
- `plot_train.py <https://github.com/DLR-RM/rl-baselines3-zoo/blob/master/rl_zoo3/plots/plot_train.py>`_: For training plots
30
+
- `all_plots.py <https://github.com/DLR-RM/rl-baselines3-zoo/blob/master/rl_zoo3/plots/all_plots.py>`_: For evaluation plots, to post-process the result
31
+
- `plot_from_file.py <https://github.com/DLR-RM/rl-baselines3-zoo/blob/master/rl_zoo3/plots/plot_from_file.py>`_: For more advanced plotting from post-processed results
32
+
33
+
These scripts provide additional features not available in the basic SB3 plotting utilities.
0 commit comments