<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2-ppt DokuWiki" -->
<?xml-stylesheet href="http://www.syntheticsapien.com/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="http://www.syntheticsapien.com/feed.php">
        <title>Synthetic Sapien goplayer</title>
        <description></description>
        <link>http://www.syntheticsapien.com/</link>
        <image rdf:resource="http://www.syntheticsapien.com/lib/tpl/roundbox/images/favicon.ico" />
       <dc:date>2012-05-27T20:47:52+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="http://www.syntheticsapien.com/doku.php/goplayer:bnstatespace?rev=1298009715&amp;do=diff"/>
                <rdf:li rdf:resource="http://www.syntheticsapien.com/doku.php/goplayer:cptwrappers?rev=1298013032&amp;do=diff"/>
                <rdf:li rdf:resource="http://www.syntheticsapien.com/doku.php/goplayer:dbconnector?rev=1315960303&amp;do=diff"/>
                <rdf:li rdf:resource="http://www.syntheticsapien.com/doku.php/goplayer:dbrv?rev=1315486853&amp;do=diff"/>
                <rdf:li rdf:resource="http://www.syntheticsapien.com/doku.php/goplayer:goplayer?rev=1297569248&amp;do=diff"/>
                <rdf:li rdf:resource="http://www.syntheticsapien.com/doku.php/goplayer:likelihoodweighting?rev=1315487088&amp;do=diff"/>
                <rdf:li rdf:resource="http://www.syntheticsapien.com/doku.php/goplayer:mcffnngmmdist?rev=1324067381&amp;do=diff"/>
                <rdf:li rdf:resource="http://www.syntheticsapien.com/doku.php/goplayer:mcmpgmmdist?rev=1334635740&amp;do=diff"/>
                <rdf:li rdf:resource="http://www.syntheticsapien.com/doku.php/goplayer:rv?rev=1297588019&amp;do=diff"/>
                <rdf:li rdf:resource="http://www.syntheticsapien.com/doku.php/goplayer:sidebar?rev=1324329425&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="http://www.syntheticsapien.com/lib/tpl/roundbox/images/favicon.ico">
        <title>Synthetic Sapien</title>
        <link>http://www.syntheticsapien.com/</link>
        <url>http://www.syntheticsapien.com/lib/tpl/roundbox/images/favicon.ico</url>
    </image>
    <item rdf:about="http://www.syntheticsapien.com/doku.php/goplayer:bnstatespace?rev=1298009715&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2011-02-18T06:15:15+00:00</dc:date>
        <title>BN State Space</title>
        <link>http://www.syntheticsapien.com/doku.php/goplayer:bnstatespace?rev=1298009715&amp;do=diff</link>
        <description>Since a Bayesian network is a directed acyclical graph, it can be represented as a series of ordered nodes connected by directed arcs.  The nodes are ordered in a hierarchy where a node cannot be the parent of another node higher in the hierarchy.  In other words, the nodes are topologically ordered.</description>
    </item>
    <item rdf:about="http://www.syntheticsapien.com/doku.php/goplayer:cptwrappers?rev=1298013032&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2011-02-18T07:10:32+00:00</dc:date>
        <title>Python CPT Wrappers</title>
        <link>http://www.syntheticsapien.com/doku.php/goplayer:cptwrappers?rev=1298013032&amp;do=diff</link>
        <description>class CPTWrapper(object):
	pass;



class SimpleDiscreteCPTBN(CPTWrapper):
	def __init__(self, nodeOrder, map, stateSpace, jft):
		'''
		nodeOrder: [node1, node2, node3, ...]
		map: {node1:[], node2:[node1], node3:[node1, node2], ...}
		stateSpace: {node1:['a', 'b', 'c'], node2:[1, 3, 5, 7], node3:['high', 'low'], ...}
		jft: {node1:[0, 2, 3, 1, 1, ...], node2:[3, 3, 1, 1, 2, ...], node3:[1, 1, 0, 0, 0, ...], ...}
		'''
		self.__nodeMap = map;
		self.__orderedNodeList = nodeOrder;
		self.__state…</description>
    </item>
    <item rdf:about="http://www.syntheticsapien.com/doku.php/goplayer:dbconnector?rev=1315960303&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2011-09-14T00:31:43+00:00</dc:date>
        <title>DB Connector</title>
        <link>http://www.syntheticsapien.com/doku.php/goplayer:dbconnector?rev=1315960303&amp;do=diff</link>
        <description>/*
 ============================================================================
 Name        : DBConnector.h
 Author      : Stephen Cannon
 Version     : 0.1
 Copyright   : Copyright 2011 Stephen Cannon
 Description :
 ============================================================================
 *
 * This file is part of LikelihoodWeighting.
 *
 * LikelihoodWeighting is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as publish…</description>
    </item>
    <item rdf:about="http://www.syntheticsapien.com/doku.php/goplayer:dbrv?rev=1315486853&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2011-09-08T13:00:53+00:00</dc:date>
        <title>DB RV</title>
        <link>http://www.syntheticsapien.com/doku.php/goplayer:dbrv?rev=1315486853&amp;do=diff</link>
        <description>/*
 ============================================================================
 Name        : dbrv.h
 Author      : Stephen Cannon
 Version     : 0.1
 Copyright   : Copyright 2011 Stephen Cannon
 Description :
 ============================================================================
 *
 * This file is part of LikelihoodWeighting.
 *
 * LikelihoodWeighting is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 …</description>
    </item>
    <item rdf:about="http://www.syntheticsapien.com/doku.php/goplayer:goplayer?rev=1297569248&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2011-02-13T03:54:08+00:00</dc:date>
        <title>Go Player</title>
        <link>http://www.syntheticsapien.com/doku.php/goplayer:goplayer?rev=1297569248&amp;do=diff</link>
        <description>So now that I’ve got my Master’s degree, I am looking to expand and test my knowledge in AI as well as see what I’m capable of.  I think one of the best ways to achieve this goal is to enter one or more AI competitions.  This way I can best test and hone my abilities against others more capable than me as well as get direct feedback regarding where my abilities lie in comparison to others.  Basically, I feel any competition that forces me to improve my skills in AI are good for me at this stage …</description>
    </item>
    <item rdf:about="http://www.syntheticsapien.com/doku.php/goplayer:likelihoodweighting?rev=1315487088&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2011-09-08T13:04:48+00:00</dc:date>
        <title>Likelihood Weighting</title>
        <link>http://www.syntheticsapien.com/doku.php/goplayer:likelihoodweighting?rev=1315487088&amp;do=diff</link>
        <description>cdef extern from &quot;dbrv.h&quot;:
	char dbrv__setup(DBRV *self, char *connectionString);
	char dbrv__logP(DBRV *self, char *nodeName, PyObject *parentValues, double *prob);
	char dbrv__randomSample(DBRV *self, char *nodeName, PyObject *parentValues, unsigned int *sample);
	char dbrv__tearDown(DBRV *self);


cdef class NodeSample:
	cdef node
	cdef int stateIndex
	cdef list states
	cdef list isSet
	cdef list parents
	

cdef class LikelihoodWeighting:
	cdef list __orderedNodes
	cdef size_t __numSample
	
	…</description>
    </item>
    <item rdf:about="http://www.syntheticsapien.com/doku.php/goplayer:mcffnngmmdist?rev=1324067381&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2011-12-16T20:29:41+00:00</dc:date>
        <title>Monte Carlo Multilayer Perceptron Gaussian Mixture Model Distribution</title>
        <link>http://www.syntheticsapien.com/doku.php/goplayer:mcffnngmmdist?rev=1324067381&amp;do=diff</link>
        <description>The Monte Carlo Multilayer Perceptron Gaussian Mixture Model Distribution (MCMPGMMDist).

A Bayesian network node conditional probability distribution is represented by a series of Gaussian mixture models.  A Gaussian mixture model is defined for every combination of states the parent nodes of the given node can take on.  The parameters for each Gaussian mixture model is determined from a multilayer perceptron.  As the mixture models for each set of parent states are not independent of each othe…</description>
    </item>
    <item rdf:about="http://www.syntheticsapien.com/doku.php/goplayer:mcmpgmmdist?rev=1334635740&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2012-04-17T04:09:00+00:00</dc:date>
        <title>Monte Carlo Multilayer Perceptron Gaussian Mixture Model Distribution</title>
        <link>http://www.syntheticsapien.com/doku.php/goplayer:mcmpgmmdist?rev=1334635740&amp;do=diff</link>
        <description>The Monte Carlo Multilayer Perceptron Gaussian Mixture Model Distribution (MCMPGMMDist).

A Bayesian network node conditional probability distribution is represented by a series of Gaussian mixture models.  A Gaussian mixture model is defined for every combination of states the parent nodes of the given node can take on.  The parameters for each Gaussian mixture model is determined from a multilayer perceptron.  As the mixture models for each set of parent states are not independent of each othe…</description>
    </item>
    <item rdf:about="http://www.syntheticsapien.com/doku.php/goplayer:rv?rev=1297588019&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2011-02-13T09:06:59+00:00</dc:date>
        <title>Python Representation of RVs</title>
        <link>http://www.syntheticsapien.com/doku.php/goplayer:rv?rev=1297588019&amp;do=diff</link>
        <description>I wanted to use Python to define a random variable in a pythonic way.  That way, I could intuitively work with random variables from within python and potentially even use some of Python's more powerful language features in conjunction with these random variables.</description>
    </item>
    <item rdf:about="http://www.syntheticsapien.com/doku.php/goplayer:sidebar?rev=1324329425&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2011-12-19T21:17:05+00:00</dc:date>
        <title>goplayer:sidebar</title>
        <link>http://www.syntheticsapien.com/doku.php/goplayer:sidebar?rev=1324329425&amp;do=diff</link>
        <description>*  Main
	*  Go Player
		*  Python Representation of RVs
		*  Python CPT Wrappers
		*  Monte Carlo Multilayer Perceptron Gaussian Mixture Model Distribution
		*  BN State Space
		*  DB Connector
		*  DB RV
		*  Likelihood Weighting

	*  Using DokuWiki
	*  About Me</description>
    </item>
</rdf:RDF>

