Module type ORandForest.S

module type S = sig .. end

type c45_data 
Oc45.S.data
type c45_category 
type c45_trainSet 
Oc45.S.trainSet
type randomForest 
Stores a random forest generated by ORandForest.S.genRandomForest
val classify : randomForest ->
c45_data -> c45_category
Classifies a new data vector, relying on the informations from the given random forest (generated by ORandForest.S.genRandomForest), yielding a category.
val genRandomForest : int -> c45_trainSet -> randomForest
genRandomForest nbTrees trainSet generates a random forest of nbTrees trees, based on trainSet.