https://github.com/ethanjameslew/learning-automata
my exploration of learning DFAs and WFAs
https://github.com/ethanjameslew/learning-automata
Last synced: 4 months ago
JSON representation
my exploration of learning DFAs and WFAs
- Host: GitHub
- URL: https://github.com/ethanjameslew/learning-automata
- Owner: EthanJamesLew
- License: gpl-3.0
- Created: 2024-03-03T22:29:32.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-04T01:56:11.000Z (over 1 year ago)
- Last Synced: 2024-03-05T00:23:04.903Z (over 1 year ago)
- Language: Python
- Size: 22.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# learning-automata
my exploration of learning DFAs and WFAs## Installation
Before installing via pip, make sure that you have the required
graphviz libraries needed by automata-lib
```shell
apt install libgraphiz-dev
```## Docker
As the pygraphviz proved difficult to install on M1 Mac, use docker
```shell
docker build . -t learning-automata
docker run -it --rm -p 10000:8888 -v "${PWD}":/home/jovyan/work learning-automata
```