Skip to content
Sebastian Riedel edited this page Apr 13, 2014 · 5 revisions

This will eventually go to moro!

By Task

Classifier

case class Data(arg1:Boolean, arg2:Boolean, out:Boolean)
def space = all(Data)(bools x bools x bools)
val training = Seq(Data(true,true,true), Data(true,false,false), Data(false,true,false))

Data structure to represent a possible world...

val labels = Seq(...)
case class Data(pedalWidth:Double, pedalLength:Double,label:String)  
def space = all(Data)(doubles x doubles x labels)

Inference

Sample Spaces

def space = 

Conditioning

Learning

Objectives

Clone this wiki locally