40 lines
919 B
Markdown
40 lines
919 B
Markdown
# BayesNet
|
|
|
|
![C++](https://img.shields.io/badge/c++-%2300599C.svg?style=flat&logo=c%2B%2B&logoColor=white)
|
|
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](<https://opensource.org/licenses/MIT>)
|
|
![Gitea Release](https://img.shields.io/gitea/v/release/rmontanana/bayesnet?gitea_url=https://gitea.rmontanana.es:3000)
|
|
![Gitea Last Commit](https://img.shields.io/gitea/last-commit/rmontanana/bayesnet?gitea_url=https://gitea.rmontanana.es:3000&logo=gitea)
|
|
|
|
Bayesian Network Classifiers using libtorch from scratch
|
|
|
|
## Installation
|
|
|
|
### Release
|
|
|
|
```bash
|
|
make release
|
|
make buildr
|
|
sudo make install
|
|
```
|
|
|
|
### Debug & Tests
|
|
|
|
```bash
|
|
make debug
|
|
make test
|
|
make coverage
|
|
```
|
|
|
|
### Sample app
|
|
|
|
After building and installing the release version, you can run the sample app with the following commands:
|
|
|
|
```bash
|
|
make sample
|
|
make sample fname=tests/data/glass.arff
|
|
```
|
|
|
|
## Models
|
|
|
|
### [BoostAODE](docs/BoostAODE.md)
|