From 5623396bffbf26cfc32749c3db23d5f6f884ce3f Mon Sep 17 00:00:00 2001 From: Josh Creek <8179928+jcreek@users.noreply.github.com> Date: Sun, 22 Oct 2023 20:44:43 +0100 Subject: [PATCH] feat(*): FInal updates before training begins --- rlgym training/requirements.txt | 46 +++++++++++++++++++++++++++- rlgym training/rlgym-ppo-training.py | 1 + 2 files changed, 46 insertions(+), 1 deletion(-) diff --git a/rlgym training/requirements.txt b/rlgym training/requirements.txt index f74bc55..3489cd8 100644 --- a/rlgym training/requirements.txt +++ b/rlgym training/requirements.txt @@ -1,46 +1,90 @@ appdirs==1.4.4 +attrs==23.1.0 +bottle==0.12.25 +bottle-websocket==0.2.9 certifi==2022.12.7 +cffi==1.16.0 charset-normalizer==2.1.1 click==8.1.7 cloudpickle==3.0.0 colorama==0.4.6 comtypes==1.2.0 +dataclasses==0.6 docker-pycreds==0.4.0 +docopt==0.6.2 +Eel==0.16.0 +exceptiongroup==1.1.3 filelock==3.9.0 +flatbuffers==1.12 fsspec==2023.4.0 +future==0.18.3 +gevent==23.9.1 +gevent-websocket==0.10.1 gitdb==4.0.11 GitPython==3.1.40 +greenlet==3.0.0 gym==0.26.2 gym-notices==0.0.8 +h11==0.14.0 idna==3.4 importlib-metadata==6.8.0 +inputs==0.5 Jinja2==3.1.2 +llvmlite==0.38.1 MarkupSafe==2.1.2 mpmath==1.3.0 networkx==3.0 -numpy==1.26.1 +numba==0.55.1 +numpy==1.21.6 +outcome==1.3.0 +packaging==23.2 pathtools==0.1.2 Pillow==9.3.0 protobuf==4.24.4 psutil==5.9.6 +pycparser==2.21 +pyparsing==3.1.1 +PyQt5==5.15.10 +PyQt5-Qt5==5.15.2 +PyQt5-sip==12.13.0 +PySocks==1.7.1 +python-dotenv==1.0.0 pywin32==228 pywinauto==0.6.8 PyYAML==6.0.1 requests==2.28.1 +requirements-parser==0.5.0 +rlbot==1.67.7 +rlbot-gui==0.0.154 rlgym==1.2.2 +rlgym-compat==1.1.0 rlgym-ppo==1.2.5 rlgym-sim==1.2.5 rlgym-tools==1.8.2 +RLUtilities==0.0.13 RocketSim==1.2.0 +scipy==1.11.3 +selenium==4.14.0 sentry-sdk==1.32.0 setproctitle==1.3.3 six==1.16.0 smmap==5.0.1 +sniffio==1.3.0 +sortedcontainers==2.4.0 sympy==1.12 torch==2.1.0+cu118 torchaudio==2.1.0+cu118 torchvision==0.16.0+cu118 +trio==0.22.2 +trio-websocket==0.11.1 +types-setuptools==68.2.0.0 typing-extensions==4.8.0 urllib3==1.26.13 wandb==0.15.12 +webdriver-manager==4.0.1 +websockets==12.0 +whichcraft==0.6.1 +wsproto==1.2.0 zipp==3.17.0 +zope.event==5.0 +zope.interface==6.1 diff --git a/rlgym training/rlgym-ppo-training.py b/rlgym training/rlgym-ppo-training.py index c10e669..5aa4885 100644 --- a/rlgym training/rlgym-ppo-training.py +++ b/rlgym training/rlgym-ppo-training.py @@ -179,5 +179,6 @@ if __name__ == "__main__": ), timestep_limit=1_000_000_000, log_to_wandb=True, + n_checkpoints_to_keep=10_000, ) learner.learn()