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
|
|
|
```
|
|
|
|
|
2023-07-11 20:23:49 +00:00
|
|
|
## 1. Introduction
|