Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mxmeinhold/decision-tree
A statically typed python decision tree module
https://github.com/mxmeinhold/decision-tree
Last synced: about 2 months ago
JSON representation
A statically typed python decision tree module
- Host: GitHub
- URL: https://github.com/mxmeinhold/decision-tree
- Owner: mxmeinhold
- License: mit
- Created: 2021-04-04T05:51:11.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-04-17T05:07:09.000Z (over 3 years ago)
- Last Synced: 2024-11-10T12:47:34.779Z (2 months ago)
- Language: Python
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Generic Decision Tree
A python module for decision trees.
**Note:** _This module is written for python 3.10 and is not guaranteed to be compatible with previous releases. Python 3.10 is currently in prerelease, and is available [here](https://www.python.org/download/pre-releases/)_
### Code style
This project uses pylint and mypy. Both will be run by github actions, but you can (and should) do checking locally with
```
pylint decision_tree
mypy decision_tree
```