Metadata-Version: 2.1
Name: rlvortex
Version: 0.0.17
Summary: A reinforcement learning algorithm library
Author-email: Zhiquan W <zhiquan.wzq@gmail.com>
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# vortex
A reinforcement learning algorithm framework

# 1. quick start


# 2. run trainers
Run the following commands under project root directory (rlvortex/)
# 2. run tests
Run the following commands under project root directory (rlvortex/)

- test gym environments with *target environment* and *render* option.
  ```
  $ make -f runs/run_tests.mk [target_environment(-render)]
  ```
  - target_envrionment in [carpole, mountaincarc]
  - -render can not optional; if render is enabled, the test will run with GUI.
  - example (cartpole):
    - run cartpole headless test
        ```
        make -f runs/run_tests.mk cartpole
        ```
    - run cartpole with GUI test
        ```
        make -f runs/run_tests.mk cartpole-render
        ```
- test all gym environments headlessly
    ```
    make -f runs/run_tests.mk all-headless
    ```
- test all gym environments with GUI
    ```
    make -f runs/run_tests.mk all-render
    ```
