Skip to content

Commit 714e786

Browse files
authoredMay 9, 2022
Refactor replay based scripts (#173)
* Fix the seed issue: see #171 * Quick fix * log `episodic_length` * Fix #172 * Fix #148 and #172-style problem for SAC * Add benchmark scripts * add sac script * Removes gradient clipping reference * use the latest reproduction script * Remove past reproducibility script * update documentation
1 parent 707e8f9 commit 714e786

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+114
-502
lines changed
 

‎benchmark/c51.sh

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
poetry install
2+
OMP_NUM_THREADS=1 xvfb-run -a python -m cleanrl_utils.benchmark \
3+
--env-ids CartPole-v1 Acrobot-v1 MountainCar-v0 \
4+
--command "poetry run python cleanrl/c51.py --cuda False --track --capture-video" \
5+
--num-seeds 3 \
6+
--workers 9
7+
8+
poetry install -E atari
9+
OMP_NUM_THREADS=1 xvfb-run -a python -m cleanrl_utils.benchmark \
10+
--env-ids PongNoFrameskip-v4 BeamRiderNoFrameskip-v4 BreakoutNoFrameskip-v4 \
11+
--command "poetry run python cleanrl/c51_atari.py --track --capture-video" \
12+
--num-seeds 3 \
13+
--workers 1

‎benchmark/c51/README.md

-35
This file was deleted.

1 commit comments

Comments
 (1)

vercel[bot] commented on May 9, 2022

@vercel[bot]
Please sign in to comment.