Skip to content

umilISLab/relearn

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ReLearn

Introducing a dynamic package designed specifically for the development and implementation of reinforcement learning (RL) projects. This toolkit includes essential classes for modeling Markov Decision Processes (MDPs), agents, and environments, laying the foundation for RL systems. With our package, users have the flexibility to create custom environments, allowing for the exploration and testing of various RL algorithms. Whether you're a researcher, educator, or developer, this package provides the necessary tools to implement reinforcement learning applications.

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.

Installing

Python: This project requires a Python version >=3.9 and <3.13. You can download it from python.org.

This project can be installed using pip directly from PyPI or by cloning the repository from GitHub. Follow the instructions below based on your preferred method.

Installing from PyPI

First, consider creating a virtual environment:

python -m venv venv
source venv/bin/activate  # On Unix/macOS
.\venv\Scripts\activate   # On Windows

To install the package from PyPI, run the following command in your terminal. This is the simplest way to install the latest stable version of the project:

pip install relearn

Make sure you have pip installed and updated to the latest version to avoid any issues.

Installing from GitHub

If you prefer to install the latest development version or want to contribute to the project, you can clone the repository from GitHub and install it manually:

  1. Clone the repository:

    git clone https://github.com/umilISLab/relearn.git
  2. Navigate to the project directory:

    cd relearn
  3. Consider creating a virtual environment:

    python -m venv venv
    source venv/bin/activate  # On Unix/macOS
    .\venv\Scripts\activate   # On Windows
  4. Install the project and its dependencies using the preferred method:

    • Dependency Management with Poetry: This project uses Poetry for dependency management and package handling. Ensure you have Poetry installed on your system. For installation instructions, visit the official Poetry documentation.

      To check if you have Poetry installed, run the following command in your terminal:

      poetry --version

      If Poetry is installed, you should see the version number in the output. If not, please follow the installation guide provided in the link above. - Installing Dependencies: With Poetry installed, you can install project dependencies by running: shell poetry install

    • If the project uses a requirements.txt:

      pip install -r requirements.txt

Verify the Installation

After installation, you can verify that the project is installed correctly by running:

python -c "import relearn; print(relearn.__version__)"

Usage Example

You can find a Recycling Robot example here.

Built With

  • poetry - Dependency Management

Versioning

We use SemVer for versioning.

Authors

  • Elisabetta Rocchetti - Initial work - ISLab

License

This project is licensed under the GNUv3 - see the LICENSE.md file for details

About

This repo hosts the relearn package for the development of reinforcement learning projects

Topics

Resources

License

Stars

Watchers

Forks

Languages