Bayesian Network Classifiers using libtorch from scratch
Go to file
2024-03-21 19:35:08 +01:00
.vscode Update README and docs 2024-02-27 17:16:26 +01:00
bayesnet Remove dataset clone in BoostAODE 2024-03-21 19:35:08 +01:00
cmake/modules Fix some mistakes to correct tests 2023-07-20 18:55:56 +02:00
config Fix config.h location problem 2024-03-09 12:27:05 +01:00
diagrams Upgrade models version and Add class diagram 2023-09-02 14:39:43 +02:00
docs Fix metrics error in BoostAODE Convergence 2024-03-20 23:33:02 +01:00
lib Create installation process 2024-03-08 00:37:36 +01:00
sample Fix test & sample issue 2024-03-09 12:45:03 +01:00
tests Fix test & sample issue 2024-03-09 12:45:03 +01:00
.clang-tidy Refactor library structure 2024-03-08 22:20:54 +01:00
.gitignore Refactor sample to be out of main CMakeLists 2024-03-08 01:09:39 +01:00
.gitmodules Add info to CHANGELOG 2024-02-24 21:33:28 +01:00
CHANGELOG.md Initialize worse_model_count if model accuracy is better in BoostAODE 2024-03-11 21:30:01 +01:00
CMakeLists.txt Add optimization flags to release 2024-03-19 17:24:21 +01:00
gcovr.cfg Refactor library structure 2024-03-08 22:20:54 +01:00
LICENSE Update License & Readme 2024-03-11 10:57:27 +01:00
Makefile Fix config.h location problem 2024-03-09 12:27:05 +01:00
README.md Initialize worse_model_count if model accuracy is better in BoostAODE 2024-03-11 21:30:01 +01:00

BayesNet

C++ License: MIT Gitea Release Gitea Last Commit

Bayesian Network Classifiers using libtorch from scratch

Installation

Release

make release
make buildr
sudo make install

Debug & Tests

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:

make sample
make sample fname=tests/data/glass.arff

Models

BoostAODE