lcrl


Namelcrl JSON
Version 0.0.8 PyPI version JSON
download
home_pagehttps://github.com/grockious/lcrl
SummaryLogically-Constrained Reinforcement Learning
upload_time2024-02-28 16:33:34
maintainer
docs_urlNone
authorHosein Hasanbeig
requires_python>=3.8
license
keywords rl logic environment agent
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <p align="center">
    <img width="250" src="https://raw.githubusercontent.com/grockious/lcrl/master/assets/lcrl.png">
</p>
<!--- https://i.imgur.com/6Rf2GcE.png --->

# LCRL
Logically-Constrained Reinforcement Learning (LCRL) is a model-free reinforcement learning framework to synthesise
policies for unknown, continuous-state-action Markov Decision Processes (MDPs) under a given Linear Temporal Logic
(LTL) property. LCRL automatically shapes a synchronous reward function on-the-fly. This enables any
off-the-shelf RL algorithm to synthesise policies that yield traces which probabilistically satisfy the LTL property. LCRL produces policies that are certified to satisfy the given LTL property with maximum probability.

## Publications
LCRL Tool Paper:
* Hasanbeig, M., Kroening, D., Abate, A., "LCRL: Certified Policy Synthesis via Logically-Constrained Reinforcement Learning", QEST, 2022. [[PDF]](https://arxiv.org/pdf/2209.10341.pdf)

LCRL Foundations:
* Hasanbeig, M. , Jeppu, N. Y., Abate, A., Melham, T., Kroening, D., "DeepSynth: Automata Synthesis for Automatic Task Segmentation in Deep Reinforcement Learning", AAAI Conference on Artificial Intelligence, 2021. [[PDF]](https://arxiv.org/pdf/1911.10244.pdf)
* Hasanbeig, M. , Abate, A. and Kroening, D., "Cautious Reinforcement Learning with Logical Constraints", International Conference on Autonomous Agents and Multi-agent Systems, 2020. [[PDF]](http://ifaamas.org/Proceedings/aamas2020/pdfs/p483.pdf)
* Hasanbeig, M. , Kroening, D. and Abate, A., "Deep Reinforcement Learning with Temporal Logics", International Conference on Formal Modeling and Analysis of Timed Systems, 2020. [[PDF]](https://link.springer.com/content/pdf/10.1007%2F978-3-030-57628-8_1.pdf)
* Hasanbeig, M. , Kroening, D. and Abate, A., "Towards Verifiable and Safe Model-Free Reinforcement Learning", Workshop on Artificial Intelligence and Formal Verification, Logics, Automata and Synthesis (OVERLAY), 2020. [[PDF]](http://ceur-ws.org/Vol-2509/invited.pdf)
* Hasanbeig, M. , Kantaros, Y., Abate, A., Kroening, D., Pappas, G. J., and Lee, I., "Reinforcement Learning for Temporal Logic Control Synthesis with Probabilistic Satisfaction Guarantees", IEEE Conference on Decision and Control, 2019. [[PDF]](https://arxiv.org/pdf/1909.05304.pdf)
* Hasanbeig, M. , Abate, A. and Kroening, D., "Logically-Constrained Neural Fitted Q-Iteration", International Conference on Autonomous Agents and Multi-agent Systems, 2019. [[PDF]](https://arxiv.org/pdf/1809.07823.pdf)
* Lim Zun Yuan, Hasanbeig, M. , Abate, A. and Kroening, D., "Modular Deep Reinforcement Learning with Temporal Logic Specifications", CoRR abs/1909.11591, 2019. [[PDF]](https://arxiv.org/pdf/1909.11591.pdf)
* Hasanbeig, M. , Abate, A. and Kroening, D., "Certified Reinforcement Learning with Logic Guidance", CoRR abs/1902.00778, 2019. [[PDF]](https://arxiv.org/pdf/1902.00778.pdf)
* Hasanbeig, M. , Abate, A. and Kroening, D., "Logically-Constrained Reinforcement Learning", CoRR abs/1801.08099, 2018. [[PDF]](https://arxiv.org/pdf/1801.08099.pdf)

## Installation
You can install LCRL using 
```
pip3 install lcrl
```

Alternatively, you can clone this repository and install the dependencies:
```
git clone https://github.com/grockious/lcrl.git
cd lcrl
pip3 install .
```
or
```
pip3 install git+https://github.com/grockious/lcrl.git
```

## Usage
#### Training an RL agent under an LTL property

Sample training commands can be found under the `./scripts` directory. LCRL consists of three main classes `MDP`, `LDBA` and the `LCRL` core trainer. Inside LCRL the `MDP` state and the `LDBA` state are synchronised, resulting in an on-the-fly product MDP structure.

&nbsp;
<p align="center">
    <img width="650" src="https://raw.githubusercontent.com/grockious/lcrl/master/assets/lcrl_overview.png">
</p>
<!--- https://i.imgur.com/uH481P0.png --->
&nbsp;

On the product MDP, LCRL automatically shapes a reward function based on the `LDBA` object. An optimal stationary Markov policy synthesised by LCRL on the product
MDP is guaranteed to induce a finite-memory policy on the original MDP that maximises the probability of satisfying the given LTL property. 

The package includes a number of pre-built `MDP` and `LDBA` class objects. For examples of `MDP` and `LDBA` classes
please refer to `./src/environments` and `./src/automata` respectively. For instance, to train an agent for `minecraft-t1` run:

```
python3
```
```python
>>> # import LCRL code trainer module
>>> from src.train import train
>>> # import the pre-built LDBA for minecraft-t1
>>> from src.automata.minecraft_1 import minecraft_1
>>> # import the pre-built MDP for minecraft-t1
>>> from src.environments.minecraft import minecraft
>>> 
>>> LDBA = minecraft_1
>>> MDP = minecraft
>>> 
>>> # train the agent
>>> task = train(MDP, LDBA,
                     algorithm='ql',
                     episode_num=500,
                     iteration_num_max=4000,
                     discount_factor=0.95,
                     learning_rate=0.9
                     )
```

## Applying LCRL to a black-box MDP and custom LTL property
#### - MDP:
LCRL can be connected to a black-box MDP object that is fully unknown to
the tool. This includes the size of the state space as LCRL automatically keeps track of visited states. The MDP object, call it `MDP`, should at
least have the following methods:
```
MDP.reset()
```
to reset the MDP state,
```
MDP.step(action)
```
to change the state of the MDP upon executing `action`,
```
MDP.state_label(state)
```
to output the label of `state`.

#### - LTL:
The LTL property has to be converted to an LDBA, which is a finite-state machine.
An excellent tool for this is OWL, which you can [try online](https://owl.model.in.tum.de/try/).
The synthesised LDBA can be used as an object of the class `./src/automata/ldba.py`.  

The constructed LDBA, call it `LDBA`, is expected to offer the following methods:
```
LDBA.reset()
```
to reset the automaton state and its accepting frontier function,
```
LDBA.step(label)
```
to change the state of the automaton upon reading `label`,
```
LDBA.accepting_frontier_function(state)
```
to update the accepting frontier set. This method is already included in the class `./src/automata/ldba.py`, thus for a custom `LDBA` object you need to only instance this class and specify the `reset()` and `step(label)` methods.  

## Reference
Please cite our tool paper if you use LCRL in your publications:

```
@inproceedings{lcrl_tool,
title={{LCRL}: Certified Policy Synthesis via Logically-Constrained Reinforcement Learning},
author={Hasanbeig, Mohammadhosein and Kroening, Daniel and Abate, Alessandro},
booktitle={International Conference on Quantitative Evaluation of SysTems},
year={2022},
organization={Springer}
}
```

## License
This project is licensed under the terms of the [MIT License](/LICENSE)

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/grockious/lcrl",
    "name": "lcrl",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "rl,logic,environment,agent",
    "author": "Hosein Hasanbeig",
    "author_email": "hosein.hasanbeig@icloud.com",
    "download_url": "https://files.pythonhosted.org/packages/e7/29/a56b09f7cb993cdfe1938b6a872d96ee84605358da21b58f737a6cc08c4c/lcrl-0.0.8.tar.gz",
    "platform": null,
    "description": "<p align=\"center\">\n    <img width=\"250\" src=\"https://raw.githubusercontent.com/grockious/lcrl/master/assets/lcrl.png\">\n</p>\n<!--- https://i.imgur.com/6Rf2GcE.png --->\n\n# LCRL\nLogically-Constrained Reinforcement Learning (LCRL) is a model-free reinforcement learning framework to synthesise\npolicies for unknown, continuous-state-action Markov Decision Processes (MDPs) under a given Linear Temporal Logic\n(LTL) property. LCRL automatically shapes a synchronous reward function on-the-fly. This enables any\noff-the-shelf RL algorithm to synthesise policies that yield traces which probabilistically satisfy the LTL property. LCRL produces policies that are certified to satisfy the given LTL property with maximum probability.\n\n## Publications\nLCRL Tool Paper:\n* Hasanbeig, M., Kroening, D., Abate, A., \"LCRL: Certified Policy Synthesis via Logically-Constrained Reinforcement Learning\", QEST, 2022. [[PDF]](https://arxiv.org/pdf/2209.10341.pdf)\n\nLCRL Foundations:\n* Hasanbeig, M. , Jeppu, N. Y., Abate, A., Melham, T., Kroening, D., \"DeepSynth: Automata Synthesis for Automatic Task Segmentation in Deep Reinforcement Learning\", AAAI Conference on Artificial Intelligence, 2021. [[PDF]](https://arxiv.org/pdf/1911.10244.pdf)\n* Hasanbeig, M. , Abate, A. and Kroening, D., \"Cautious Reinforcement Learning with Logical Constraints\", International Conference on Autonomous Agents and Multi-agent Systems, 2020. [[PDF]](http://ifaamas.org/Proceedings/aamas2020/pdfs/p483.pdf)\n* Hasanbeig, M. , Kroening, D. and Abate, A., \"Deep Reinforcement Learning with Temporal Logics\", International Conference on Formal Modeling and Analysis of Timed Systems, 2020. [[PDF]](https://link.springer.com/content/pdf/10.1007%2F978-3-030-57628-8_1.pdf)\n* Hasanbeig, M. , Kroening, D. and Abate, A., \"Towards Verifiable and Safe Model-Free Reinforcement Learning\", Workshop on Artificial Intelligence and Formal Verification, Logics, Automata and Synthesis (OVERLAY), 2020. [[PDF]](http://ceur-ws.org/Vol-2509/invited.pdf)\n* Hasanbeig, M. , Kantaros, Y., Abate, A., Kroening, D., Pappas, G. J., and Lee, I., \"Reinforcement Learning for Temporal Logic Control Synthesis with Probabilistic Satisfaction Guarantees\", IEEE Conference on Decision and Control, 2019. [[PDF]](https://arxiv.org/pdf/1909.05304.pdf)\n* Hasanbeig, M. , Abate, A. and Kroening, D., \"Logically-Constrained Neural Fitted Q-Iteration\", International Conference on Autonomous Agents and Multi-agent Systems, 2019. [[PDF]](https://arxiv.org/pdf/1809.07823.pdf)\n* Lim Zun Yuan, Hasanbeig, M. , Abate, A. and Kroening, D., \"Modular Deep Reinforcement Learning with Temporal Logic Specifications\", CoRR abs/1909.11591, 2019. [[PDF]](https://arxiv.org/pdf/1909.11591.pdf)\n* Hasanbeig, M. , Abate, A. and Kroening, D., \"Certified Reinforcement Learning with Logic Guidance\", CoRR abs/1902.00778, 2019. [[PDF]](https://arxiv.org/pdf/1902.00778.pdf)\n* Hasanbeig, M. , Abate, A. and Kroening, D., \"Logically-Constrained Reinforcement Learning\", CoRR abs/1801.08099, 2018. [[PDF]](https://arxiv.org/pdf/1801.08099.pdf)\n\n## Installation\nYou can install LCRL using \n```\npip3 install lcrl\n```\n\nAlternatively, you can clone this repository and install the dependencies:\n```\ngit clone https://github.com/grockious/lcrl.git\ncd lcrl\npip3 install .\n```\nor\n```\npip3 install git+https://github.com/grockious/lcrl.git\n```\n\n## Usage\n#### Training an RL agent under an LTL property\n\nSample training commands can be found under the `./scripts` directory. LCRL consists of three main classes `MDP`, `LDBA` and the `LCRL` core trainer. Inside LCRL the `MDP` state and the `LDBA` state are synchronised, resulting in an on-the-fly product MDP structure.\n\n&nbsp;\n<p align=\"center\">\n    <img width=\"650\" src=\"https://raw.githubusercontent.com/grockious/lcrl/master/assets/lcrl_overview.png\">\n</p>\n<!--- https://i.imgur.com/uH481P0.png --->\n&nbsp;\n\nOn the product MDP, LCRL automatically shapes a reward function based on the `LDBA` object. An optimal stationary Markov policy synthesised by LCRL on the product\nMDP is guaranteed to induce a finite-memory policy on the original MDP that maximises the probability of satisfying the given LTL property. \n\nThe package includes a number of pre-built `MDP` and `LDBA` class objects. For examples of `MDP` and `LDBA` classes\nplease refer to `./src/environments` and `./src/automata` respectively. For instance, to train an agent for `minecraft-t1` run:\n\n```\npython3\n```\n```python\n>>> # import LCRL code trainer module\n>>> from src.train import train\n>>> # import the pre-built LDBA for minecraft-t1\n>>> from src.automata.minecraft_1 import minecraft_1\n>>> # import the pre-built MDP for minecraft-t1\n>>> from src.environments.minecraft import minecraft\n>>> \n>>> LDBA = minecraft_1\n>>> MDP = minecraft\n>>> \n>>> # train the agent\n>>> task = train(MDP, LDBA,\n                     algorithm='ql',\n                     episode_num=500,\n                     iteration_num_max=4000,\n                     discount_factor=0.95,\n                     learning_rate=0.9\n                     )\n```\n\n## Applying LCRL to a black-box MDP and custom LTL property\n#### - MDP:\nLCRL can be connected to a black-box MDP object that is fully unknown to\nthe tool. This includes the size of the state space as LCRL automatically keeps track of visited states. The MDP object, call it `MDP`, should at\nleast have the following methods:\n```\nMDP.reset()\n```\nto reset the MDP state,\n```\nMDP.step(action)\n```\nto change the state of the MDP upon executing `action`,\n```\nMDP.state_label(state)\n```\nto output the label of `state`.\n\n#### - LTL:\nThe LTL property has to be converted to an LDBA, which is a finite-state machine.\nAn excellent tool for this is OWL, which you can [try online](https://owl.model.in.tum.de/try/).\nThe synthesised LDBA can be used as an object of the class `./src/automata/ldba.py`.  \n\nThe constructed LDBA, call it `LDBA`, is expected to offer the following methods:\n```\nLDBA.reset()\n```\nto reset the automaton state and its accepting frontier function,\n```\nLDBA.step(label)\n```\nto change the state of the automaton upon reading `label`,\n```\nLDBA.accepting_frontier_function(state)\n```\nto update the accepting frontier set. This method is already included in the class `./src/automata/ldba.py`, thus for a custom `LDBA` object you need to only instance this class and specify the `reset()` and `step(label)` methods.  \n\n## Reference\nPlease cite our tool paper if you use LCRL in your publications:\n\n```\n@inproceedings{lcrl_tool,\ntitle={{LCRL}: Certified Policy Synthesis via Logically-Constrained Reinforcement Learning},\nauthor={Hasanbeig, Mohammadhosein and Kroening, Daniel and Abate, Alessandro},\nbooktitle={International Conference on Quantitative Evaluation of SysTems},\nyear={2022},\norganization={Springer}\n}\n```\n\n## License\nThis project is licensed under the terms of the [MIT License](/LICENSE)\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Logically-Constrained Reinforcement Learning",
    "version": "0.0.8",
    "project_urls": {
        "Homepage": "https://github.com/grockious/lcrl"
    },
    "split_keywords": [
        "rl",
        "logic",
        "environment",
        "agent"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b500e932cf2f5a923cf598c7da8dae0c01488fe3a2777bdf8f416ac302272a00",
                "md5": "57ff7f1507010a7d67fc8ccd53a0edba",
                "sha256": "a37dbf50866131782223cbe1da27d95e4873ccb357991382affa34864458ec77"
            },
            "downloads": -1,
            "filename": "lcrl-0.0.8-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "57ff7f1507010a7d67fc8ccd53a0edba",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 50237,
            "upload_time": "2024-02-28T16:33:32",
            "upload_time_iso_8601": "2024-02-28T16:33:32.947061Z",
            "url": "https://files.pythonhosted.org/packages/b5/00/e932cf2f5a923cf598c7da8dae0c01488fe3a2777bdf8f416ac302272a00/lcrl-0.0.8-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e729a56b09f7cb993cdfe1938b6a872d96ee84605358da21b58f737a6cc08c4c",
                "md5": "ad7e8b47f05bb08340ea62345446bdbd",
                "sha256": "4fe45339ee538c6fdba515134edd2cc76457396db6ddef1d410bb3b10f5d32dc"
            },
            "downloads": -1,
            "filename": "lcrl-0.0.8.tar.gz",
            "has_sig": false,
            "md5_digest": "ad7e8b47f05bb08340ea62345446bdbd",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 292050,
            "upload_time": "2024-02-28T16:33:34",
            "upload_time_iso_8601": "2024-02-28T16:33:34.877172Z",
            "url": "https://files.pythonhosted.org/packages/e7/29/a56b09f7cb993cdfe1938b6a872d96ee84605358da21b58f737a6cc08c4c/lcrl-0.0.8.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-28 16:33:34",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "grockious",
    "github_project": "lcrl",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "lcrl"
}
        
Elapsed time: 0.21032s