2023-06-29 19:52:57 +00:00
|
|
|
# BayesNet
|
|
|
|
|
2023-10-22 18:03:34 +00:00
|
|
|
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
|
|
|
|
|
2024-01-07 18:58:22 +00:00
|
|
|
Bayesian Network Classifiers using libtorch from scratch
|
2023-09-18 21:26:22 +00:00
|
|
|
|
|
|
|
### Release
|
|
|
|
|
|
|
|
```bash
|
|
|
|
make release
|
2024-01-07 18:58:22 +00:00
|
|
|
make buildr
|
2023-09-18 21:26:22 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
### Debug & Tests
|
|
|
|
|
|
|
|
```bash
|
|
|
|
make debug
|
2024-01-07 18:58:22 +00:00
|
|
|
make test
|
|
|
|
make coverage
|
2023-09-18 21:26:22 +00:00
|
|
|
```
|
|
|
|
|
2024-02-27 16:16:26 +00:00
|
|
|
### Sample app
|
|
|
|
|
|
|
|
```bash
|
|
|
|
make release
|
|
|
|
make sample
|
|
|
|
make sample fname=tests/data/glass.arff
|
|
|
|
```
|
|
|
|
|
|
|
|
## Models
|
|
|
|
|
|
|
|
### [BoostAODE](docs/BoostAODE.md)
|