Giter VIP home page Giter VIP logo

pydbn's Introduction

Wrapper around daft for easily creating DBN.

Install

Alternative A) Install systemwide

python setup.py build
sudo python setup.py install

Alternative B) Install dependencies + include

pip install daft --user

1. Usage

see examples

Example: Creating a Model

This example creates a HMM with two explicitely visualized parameters pi and Sigma:

dbn = DBN()
dbn.attach(NodeProperties("X", 0, 0, parentsPrevious="X"))
dbn.attach(NodeProperties(name="Y",x=0, y=1,parentsNow="X", nodeType=NodeType.Observed, continuous=True))
dbn.attach(NodeProperties(name="\Sigma",x=0, y=2,parentsNow="Y", nodeType=NodeType.Variable))
dbn.attach(NodeProperties(name="\pi",x=0, y=2,parentsPrevious="Y", nodeType=NodeType.Variable))

Example: Exporting a Model

Depending on whether the first few time slices are to be visualized (1) or the time slices around the current time, the plot can be exported via

k.export(sliceBefore=0, sliceAfter=3, centerSuffix="") #< variant 1:  export first few time slices

or (2):

k.export(sliceBefore=2, sliceAfter=1, centerSuffix="\\tau") #< variant 2: export 2 before - 1
                                                            #  after the current time (referred
                                                            #  to as \tau)

These 7 lines of code create the following two vector graphics:

hmm1 hmm1.pdf and hmm hmm.pdf

Output - format:

Supports pdf svg jpg and a lot more.

pydbn's People

Contributors

juliushuelsmann avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

pydbn's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.