Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shaunabanana/simple-bayesnet
A simple visual tool to build and run inference on your own Bayesian Network.
https://github.com/shaunabanana/simple-bayesnet
bayesian-inference bayesian-network data-science eel gui machine-learning tool visualization vuejs2
Last synced: 2 months ago
JSON representation
A simple visual tool to build and run inference on your own Bayesian Network.
- Host: GitHub
- URL: https://github.com/shaunabanana/simple-bayesnet
- Owner: shaunabanana
- Created: 2019-05-14T05:22:14.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-04-06T09:25:13.000Z (almost 3 years ago)
- Last Synced: 2024-04-22T10:12:42.838Z (9 months ago)
- Topics: bayesian-inference, bayesian-network, data-science, eel, gui, machine-learning, tool, visualization, vuejs2
- Language: JavaScript
- Homepage:
- Size: 3.37 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SimpleBN
A simple visual tool to build and run inference on your own Bayesian Network. Originally written for my undergraduate thesis.![screenshot](./assets/screenshot.png)
## Features
* Load your own data in CSV/Excel format.
* Define custom network structures.
* Condition on observations to see real-time inference result on other variables.
* Save & load your model.
* Overall a nice interface and smooth interactions.## How to use
### Installation
You need to have [Python 3](https://www.python.org/downloads/) installed.Open up your favorite terminal, and run the following command to install the required libraries:
```
pip install eel pandas openpyxl pgmpy python-datauri
```Finally, clone this repo. In the base directory of this repo, start `app.py` to see the GUI:
```
python app.py
```### Loading data / model
Your dataset should be a CSV/Excel file. Each column is a variable, and the first row contains the variable names, like so:| Var 1 | Var 2 | ... | Var N |
| ------ | ------ | --- | ------ |
| Value | Value | ... | Value |
| Value | Value | ... | Value |
| Value | Value | ... | Value |
| ... | ... | ... | ... |A sample excerpt of the mushroom dataset is included for your reference in the `sample` folder.
Alternatively, you can also load a model you have saved.
### Reading the visualization
You'll notice that each variable has a ring surrounding it. This is a pie chart showing the distribution of values of this variable.When you click on a variable, a panel shows up. This panel shows you the detailed distribution statistics, as well as buttons for you to set a specific observed value to that variable, thus "conditioning" it.
### Defining network structure
When a variable is selected, you can drag from it onto another variable to create a link. Alternatively, you can select a variable and click "Batch Linking," this way you can simply click on other variables to create links.To remove a link, click on the circle handle of that link and click the "Delete Link" button.
If a variable is irrelavent, you can also select it and click "Ignore," so that it will not participate in any inferences.
### Running inference
Click "Start Inference" to start running inference. Depending on your model complexity and dataset size, it may take some time to finish. When inference is activated, any changes you make will trigger another inference, and the visualization stays updated.### Saving models
The models are saved as a json file. You can click the "Load Dataset/Model" button to load it again.