BayesNet/README.md

37 lines
567 B
Markdown
Raw Normal View History

2023-06-29 19:52:57 +00:00
# BayesNet
[![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
2024-03-08 08:02:22 +00:00
## Installation
2023-09-18 21:26:22 +00:00
### Release
```bash
make release
2024-01-07 18:58:22 +00:00
make buildr
2024-03-08 08:02:22 +00:00
sudo make install
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
2024-03-08 08:02:22 +00:00
After building and installing the release version, you can run the sample app with the following commands:
2024-02-27 16:16:26 +00:00
```bash
make sample
make sample fname=tests/data/glass.arff
```
## Models
### [BoostAODE](docs/BoostAODE.md)