aalpy


Nameaalpy JSON
Version 1.4.2 PyPI version JSON
download
home_pagehttps://github.com/DES-Lab/AALpy
SummaryAn active automata learning library
upload_time2024-10-08 07:05:48
maintainerNone
docs_urlNone
authorEdi Muskardin
requires_python>=3.6
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <div align="center">

<picture style="align: center; padding-bottom: 3mm;">
  <source media="(prefers-color-scheme: dark)" srcset="./docs/logo_dark.png">
  <img width=70% height=70% alt="AALpy Logo" src="./docs/logo_light.png">
</picture>

<br/>
<br/>

[![Python application](https://github.com/DES-Lab/AALpy/actions/workflows/python-app.yml/badge.svg)](https://github.com/DES-Lab/AALpy/actions/workflows/python-app.yml)
[![CodeQL](https://github.com/DES-Lab/AALpy/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/DES-Lab/AALpy/actions/workflows/codeql-analysis.yml)
![PyPI - Downloads](https://img.shields.io/pypi/dm/aalpy)

[![GitHub issues](https://img.shields.io/github/issues/DES-Lab/AALpy)](https://github.com/DES-Lab/AALpy/issues)
![GitHub pull requests](https://img.shields.io/github/issues-pr/des-lab/aalpy)
[![Python 3.6](https://img.shields.io/badge/python-3.6%2B-blue)](https://www.python.org/downloads/release/python-360/)
![PyPI - Wheel](https://img.shields.io/pypi/wheel/aalpy)
[![Maintenance](https://img.shields.io/badge/Maintained%3F-yes-green.svg)](https://GitHub.com/Naereen/StrapDown.js/graphs/commit-activity)
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)

</div>
<hr />

AALpy is a light-weight automata learning library written in Python. 
You can start learning models of black-box systems with a few lines of code.

AALpy supports both **active** and **passive** automata learning algorithms that can be used to learn a variety of modeling formalisms, including 
**deterministic**, **non-deterministic**, and **stochastic automata**, as well as **deterministic context-free grammars/pushdown automata**.

<div align="center">

| **Automata Type** |                      **Supported Formalisms**                     | **Algorithms**        |                                                       **Features** |
|-------------------|:-----------------------------------------------------------------:|-----------------------|-------------------------------------------------------------------:|
| Deterministic     |                 DFAs <br /> Mealy Machines <br /> Moore Machines                 |      L* <br /> KV <br /> RPNI      | Seamless Caching <br /> Counterexample Processing <br /> 13 Equivalence Oracles  |
| Non-Deterministic |                      ONFSM <br /> Abstracted ONFSM                      |        L*<sub>ONFSM</sub>       |                                 Size Reduction  Trough Abstraction |
| Stochastic        | Markov Decision Processes <br /> Stochastic Mealy Machines <br /> Markov Chains | L*<sub>MDP</sub> <br /> L*<sub>SMM</sub> <br /> ALERGIA |               Counterexample Processing <br /> Exportable to PRISM format  <br /> Bindings to jALERGIA|
| Pushdown          |          VPA/SEVPA                                                            | KV<sub>VPA</sub> <br /> PAPNI | Passive learning of VPAs <br /> Exclusive call-return pairs
</div>

## Installation

Use the package manager [pip](https://pip.pypa.io/en/stable/) to install the latest release of AALpy:
```bash
pip install aalpy
```
To install current version of the master branch (it might contain bugfixes and added functionalities between releases):
```bash
pip install https://github.com/DES-Lab/AALpy/archive/master.zip
```
The minimum required version of Python is 3.6.  
Ensure that you have [Graphviz](https://graphviz.org/) installed and added to your path if you want to visualize models.

For manual installation, clone the repo and install `pydot` (the only dependency).

## Documentation and Wiki

If you are interested in automata learning or would like to understand the automata learning process in more detail,
please check out our **Wiki**. On Wiki, you will find more detailed examples on how to use AALpy.
- <https://github.com/DES-Lab/AALpy/wiki>

***[Examples.py](https://github.com/DES-Lab/AALpy/blob/master/Examples.py)*** contains examples covering almost the whole of AALpy's functionality and its a great starting point. 

### Usage

All active automata learning procedures follow this high-level approach:
- [Define the input alphabet and system under learning (SUL)](https://github.com/DES-Lab/AALpy/wiki/SUL-Interface,-or-How-to-Learn-Your-Systems)
- [Choose the equivalence oracle](https://github.com/DES-Lab/AALpy/wiki/Equivalence-Oracles)
- [Run the learning algorithm](https://github.com/DES-Lab/AALpy/wiki/Setting-Up-Learning)

Passive learning algorithm simply require you to provide data in the appropriate format (check Wiki and Examples) and run the learning function.


<details>
  <summary>Code snipped demonstrating some of AALpy's functionalities</summary>

The following snippet demonstrates a short example in which an automaton is either [loaded](https://github.com/DES-Lab/AALpy/wiki/Loading,Saving,-Syntax-and-Visualization-of-Automata) or [randomly generated](https://github.com/DES-Lab/AALpy/wiki/Generation-of-Random-Automata) and then [learned](https://github.com/DES-Lab/AALpy/wiki/Setting-Up-Learning).
```python
from aalpy.utils import load_automaton_from_file, generate_random_deterministic_automata
from aalpy.SULs import AutomatonSUL
from aalpy.oracles import RandomWalkEqOracle
from aalpy.learning_algs import run_Lstar, run_KV

# load an automaton
# automaton = load_automaton_from_file('path_to_the_file.dot', automaton_type='dfa')

# or randomly generate one
random_dfa = generate_random_deterministic_automata(automaton_type='dfa', num_states=8, 
                                                    input_alphabet_size=5, output_alphabet_size=2)

# get input alphabet of the automaton
alphabet = random_dfa.get_input_alphabet()

# loaded or randomly generated automata are considered as BLACK-BOX that is queried
# learning algorithm has no knowledge about its structure
# create a SUL instance for the automaton/system under learning
sul = AutomatonSUL(random_dfa)

# define the equivalence oracle
eq_oracle = RandomWalkEqOracle(alphabet, sul, num_steps=5000, reset_prob=0.09)

# start learning
# run_KV is for the most part reacquires much fewer interactions with the system under learning
learned_dfa = run_KV(alphabet, sul, eq_oracle, automaton_type='dfa')
# or run L*
# learned_dfa_lstar = run_Lstar(alphabet, sul, eq_oracle, automaton_type='dfa')

# save automaton to file and visualize it
# save_automaton_to_file(learned_dfa, path='Learned_Automaton', file_type='dot')
# or
learned_dfa.save()

# visualize automaton
# visualize_automaton(learned_dfa)
learned_dfa.visualize()
# or just print its DOT representation
print(learned_dfa)
```
</details>

To make experiments reproducible, define a random seed at the beginning of your program.
```Python
from random import seed
seed(2) # all experiments will be reproducible
```

## Selected Applications
AALpy has been used to:
- [Learn Models of Bluetooth Low-Energy](https://github.com/apferscher/ble-learning)
- [Find bugs in VIM text editor](https://github.com/DES-Lab/AALpy/discussions/13)
- [Learn Input-Output Behavior of RNNs](https://github.com/DES-Lab/Extracting-FSM-From-RNNs)
- [Learn Models of GIT](https://github.com/taburg/git-learning)
- [Solve RL Problems](https://github.com/DES-Lab/Learning-Environment-Models-with-Continuous-Stochastic-Dynamics)

## Cite AALpy and Research Contact
If you use AALpy in your research, please cite us with of the following:
- [Extended version (preferred)](https://www.researchgate.net/publication/359517046_AALpy_an_active_automata_learning_library/citation/download)
- [Tool paper](https://dblp.org/rec/conf/atva/MuskardinAPPT21.html?view=bibtex)

If you have research suggestions or you need specific help concerning your research, feel free to start a [discussion](https://github.com/DES-Lab/AALpy/discussions) or contact [edi.muskardin@silicon-austria.com](mailto:edi.muskardin@silicon-austria.com).
We are happy to help you and consult you in applying automata learning in various domains.

## Contributing
Pull requests are welcome. For significant changes, please open an issue first to discuss what you would like to change.
In case of any questions or possible bugs, please open issues.



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/DES-Lab/AALpy",
    "name": "aalpy",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": null,
    "keywords": null,
    "author": "Edi Muskardin",
    "author_email": "edi.muskardin@silicon-austria.com",
    "download_url": null,
    "platform": null,
    "description": "<div align=\"center\">\n\n<picture style=\"align: center; padding-bottom: 3mm;\">\n  <source media=\"(prefers-color-scheme: dark)\" srcset=\"./docs/logo_dark.png\">\n  <img width=70% height=70% alt=\"AALpy Logo\" src=\"./docs/logo_light.png\">\n</picture>\n\n<br/>\n<br/>\n\n[![Python application](https://github.com/DES-Lab/AALpy/actions/workflows/python-app.yml/badge.svg)](https://github.com/DES-Lab/AALpy/actions/workflows/python-app.yml)\n[![CodeQL](https://github.com/DES-Lab/AALpy/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/DES-Lab/AALpy/actions/workflows/codeql-analysis.yml)\n![PyPI - Downloads](https://img.shields.io/pypi/dm/aalpy)\n\n[![GitHub issues](https://img.shields.io/github/issues/DES-Lab/AALpy)](https://github.com/DES-Lab/AALpy/issues)\n![GitHub pull requests](https://img.shields.io/github/issues-pr/des-lab/aalpy)\n[![Python 3.6](https://img.shields.io/badge/python-3.6%2B-blue)](https://www.python.org/downloads/release/python-360/)\n![PyPI - Wheel](https://img.shields.io/pypi/wheel/aalpy)\n[![Maintenance](https://img.shields.io/badge/Maintained%3F-yes-green.svg)](https://GitHub.com/Naereen/StrapDown.js/graphs/commit-activity)\n[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)\n\n</div>\n<hr />\n\nAALpy is a light-weight automata learning library written in Python. \nYou can start learning models of black-box systems with a few lines of code.\n\nAALpy supports both **active** and **passive** automata learning algorithms that can be used to learn a variety of modeling formalisms, including \n**deterministic**, **non-deterministic**, and **stochastic automata**, as well as **deterministic context-free grammars/pushdown automata**.\n\n<div align=\"center\">\n\n| **Automata Type** |                      **Supported Formalisms**                     | **Algorithms**        |                                                       **Features** |\n|-------------------|:-----------------------------------------------------------------:|-----------------------|-------------------------------------------------------------------:|\n| Deterministic     |                 DFAs <br /> Mealy Machines <br /> Moore Machines                 |      L* <br /> KV <br /> RPNI      | Seamless Caching <br /> Counterexample Processing <br /> 13 Equivalence Oracles  |\n| Non-Deterministic |                      ONFSM <br /> Abstracted ONFSM                      |        L*<sub>ONFSM</sub>       |                                 Size Reduction  Trough Abstraction |\n| Stochastic        | Markov Decision Processes <br /> Stochastic Mealy Machines <br /> Markov Chains | L*<sub>MDP</sub> <br /> L*<sub>SMM</sub> <br /> ALERGIA |               Counterexample Processing <br /> Exportable to PRISM format  <br /> Bindings to jALERGIA|\n| Pushdown          |          VPA/SEVPA                                                            | KV<sub>VPA</sub> <br /> PAPNI | Passive learning of VPAs <br /> Exclusive call-return pairs\n</div>\n\n## Installation\n\nUse the package manager [pip](https://pip.pypa.io/en/stable/) to install the latest release of AALpy:\n```bash\npip install aalpy\n```\nTo install current version of the master branch (it might contain bugfixes and added functionalities between releases):\n```bash\npip install https://github.com/DES-Lab/AALpy/archive/master.zip\n```\nThe minimum required version of Python is 3.6.  \nEnsure that you have [Graphviz](https://graphviz.org/) installed and added to your path if you want to visualize models.\n\nFor manual installation, clone the repo and install `pydot` (the only dependency).\n\n## Documentation and Wiki\n\nIf you are interested in automata learning or would like to understand the automata learning process in more detail,\nplease check out our **Wiki**. On Wiki, you will find more detailed examples on how to use AALpy.\n- <https://github.com/DES-Lab/AALpy/wiki>\n\n***[Examples.py](https://github.com/DES-Lab/AALpy/blob/master/Examples.py)*** contains examples covering almost the whole of AALpy's functionality and its a great starting point. \n\n### Usage\n\nAll active automata learning procedures follow this high-level approach:\n- [Define the input alphabet and system under learning (SUL)](https://github.com/DES-Lab/AALpy/wiki/SUL-Interface,-or-How-to-Learn-Your-Systems)\n- [Choose the equivalence oracle](https://github.com/DES-Lab/AALpy/wiki/Equivalence-Oracles)\n- [Run the learning algorithm](https://github.com/DES-Lab/AALpy/wiki/Setting-Up-Learning)\n\nPassive learning algorithm simply require you to provide data in the appropriate format (check Wiki and Examples) and run the learning function.\n\n\n<details>\n  <summary>Code snipped demonstrating some of AALpy's functionalities</summary>\n\nThe following snippet demonstrates a short example in which an automaton is either [loaded](https://github.com/DES-Lab/AALpy/wiki/Loading,Saving,-Syntax-and-Visualization-of-Automata) or [randomly generated](https://github.com/DES-Lab/AALpy/wiki/Generation-of-Random-Automata) and then [learned](https://github.com/DES-Lab/AALpy/wiki/Setting-Up-Learning).\n```python\nfrom aalpy.utils import load_automaton_from_file, generate_random_deterministic_automata\nfrom aalpy.SULs import AutomatonSUL\nfrom aalpy.oracles import RandomWalkEqOracle\nfrom aalpy.learning_algs import run_Lstar, run_KV\n\n# load an automaton\n# automaton = load_automaton_from_file('path_to_the_file.dot', automaton_type='dfa')\n\n# or randomly generate one\nrandom_dfa = generate_random_deterministic_automata(automaton_type='dfa', num_states=8, \n                                                    input_alphabet_size=5, output_alphabet_size=2)\n\n# get input alphabet of the automaton\nalphabet = random_dfa.get_input_alphabet()\n\n# loaded or randomly generated automata are considered as BLACK-BOX that is queried\n# learning algorithm has no knowledge about its structure\n# create a SUL instance for the automaton/system under learning\nsul = AutomatonSUL(random_dfa)\n\n# define the equivalence oracle\neq_oracle = RandomWalkEqOracle(alphabet, sul, num_steps=5000, reset_prob=0.09)\n\n# start learning\n# run_KV is for the most part reacquires much fewer interactions with the system under learning\nlearned_dfa = run_KV(alphabet, sul, eq_oracle, automaton_type='dfa')\n# or run L*\n# learned_dfa_lstar = run_Lstar(alphabet, sul, eq_oracle, automaton_type='dfa')\n\n# save automaton to file and visualize it\n# save_automaton_to_file(learned_dfa, path='Learned_Automaton', file_type='dot')\n# or\nlearned_dfa.save()\n\n# visualize automaton\n# visualize_automaton(learned_dfa)\nlearned_dfa.visualize()\n# or just print its DOT representation\nprint(learned_dfa)\n```\n</details>\n\nTo make experiments reproducible, define a random seed at the beginning of your program.\n```Python\nfrom random import seed\nseed(2) # all experiments will be reproducible\n```\n\n## Selected Applications\nAALpy has been used to:\n- [Learn Models of Bluetooth Low-Energy](https://github.com/apferscher/ble-learning)\n- [Find bugs in VIM text editor](https://github.com/DES-Lab/AALpy/discussions/13)\n- [Learn Input-Output Behavior of RNNs](https://github.com/DES-Lab/Extracting-FSM-From-RNNs)\n- [Learn Models of GIT](https://github.com/taburg/git-learning)\n- [Solve RL Problems](https://github.com/DES-Lab/Learning-Environment-Models-with-Continuous-Stochastic-Dynamics)\n\n## Cite AALpy and Research Contact\nIf you use AALpy in your research, please cite us with of the following:\n- [Extended version (preferred)](https://www.researchgate.net/publication/359517046_AALpy_an_active_automata_learning_library/citation/download)\n- [Tool paper](https://dblp.org/rec/conf/atva/MuskardinAPPT21.html?view=bibtex)\n\nIf you have research suggestions or you need specific help concerning your research, feel free to start a [discussion](https://github.com/DES-Lab/AALpy/discussions) or contact [edi.muskardin@silicon-austria.com](mailto:edi.muskardin@silicon-austria.com).\nWe are happy to help you and consult you in applying automata learning in various domains.\n\n## Contributing\nPull requests are welcome. For significant changes, please open an issue first to discuss what you would like to change.\nIn case of any questions or possible bugs, please open issues.\n\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "An active automata learning library",
    "version": "1.4.2",
    "project_urls": {
        "Homepage": "https://github.com/DES-Lab/AALpy"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "05cc957218fc03c407bad3796a4aea48162d5a9c167f895af36e7750fee9062f",
                "md5": "b23e5938f087f092e77925ed0c59dfeb",
                "sha256": "13f533ba70807b729841cd79267233a329472dda0f510c83fc8e53f767384abe"
            },
            "downloads": -1,
            "filename": "aalpy-1.4.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "b23e5938f087f092e77925ed0c59dfeb",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 131132,
            "upload_time": "2024-10-08T07:05:48",
            "upload_time_iso_8601": "2024-10-08T07:05:48.914110Z",
            "url": "https://files.pythonhosted.org/packages/05/cc/957218fc03c407bad3796a4aea48162d5a9c167f895af36e7750fee9062f/aalpy-1.4.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-08 07:05:48",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "DES-Lab",
    "github_project": "AALpy",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "aalpy"
}
        
Elapsed time: 0.35187s