Code Monkey home page Code Monkey logo

bayes-glib's Introduction

------------------------------------------------------------------------------
                Bayes-GLib - Bayesian Classification for GLib
------------------------------------------------------------------------------

This is a simple attempt at making a classifier that can be used to train and
learn about data used within a given domain. It exists mostly so that I can
learn how to write a Bayesian classifier. Alternatively, it might prove useful
to be able to use the same classification API from multiple languages through
the GObject Introspection.

Bits and pieces of this are based on the reverend.thomas python module. It,
too, is licensed under the LGPL (2.1) by Amir Bakhtiar.

I make no guarantees about maintaining this code.

-- Christian


------------------------------------------------------------------------------
Examples
------------------------------------------------------------------------------

Python example

>>> from gi.repository import Bayes
>>> c = Bayes.Classifier()
>>> c.train('french', 'le la les du un une je il elle de en')
>>> c.train('german', 'der die das ein eine')
>>> c.train('spanish', 'el uno una las de la en')
>>> c.train('english', 'the it she he they them are were to')
>>> for g in c.guess('they were flying planes'):
...     print '%12s: %0.4f' % (g.get_name(), g.get_probability())
...
     english: 0.4975
     spanish: 0.0000
      french: 0.0000
      german: 0.0000

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.