A new, blazing-fast learning engine for Continuous Time Bayesian Networks. Written in pure Rust. 🦀
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Meliurwen c4e1a14795
Fixed spelling in the README
3 years ago
src Added tests for BA and MLE 3 years ago
tests Added tests for BA and MLE 3 years ago
.gitignore First Commit 3 years ago
Cargo.toml Bug fix of sampling + implementation of Bayesian Approach 3 years ago
README.md Fixed spelling in the README 3 years ago

README.md

rustyCTBN

Library

Note: At the moment it's in pre-alpha state.

A Continuous Time Bayesian Networks Library written in Rust. 🦀

From Source

Prerequisites:

  • rust

Install:

At the root of the project's folder launch:

cargo install --locked --path .

Uninstall:

Anywhere in the system launch:

cargo uninstall rustyCTBN

Upgrade:

At the root of the project's folder launch:

cargo install --force --locked --path .

Develop

Prerequisites:

  • rust

Prepare the development environment:

cargo build

That's all!

Testing & Linting

To launch tests:

cargo test --locked

To lint:

cargo check --locked