mz2 / MPGestures

Fork of https://github.com/fe9lix/DollarP_ObjC ported to OSX, with a supervised learning layer to improve gesture detection accuracy and backed by a crowdsourcable database of gestures
Other
21 stars 5 forks source link

Add the supervised symbol detection layer #4

Closed mz2 closed 10 years ago

mz2 commented 10 years ago
mz2 commented 10 years ago

I've begun work towards this by completing the interface declarations for MPDataSet and MPDatum, and implementing concrete types (MPDataTable, MPRow).

mz2 commented 10 years ago

I separated the term value transformer into two: kind of transformations which do not change dimensionality, and the kind described above which I've described as "dimensionality mapping". The former turned out to be much less useful than imagined at first for random forest classification than implementing dimensionality mappers which would also be used with other kinds of learning algorithms, and the second is what is used for mapping the input data into feature space used for model training.

Value transformation for instance to transform data to Z-scores or otherwise translating / scaling values are not necessary because features are independent and not made for instance linear or other combinations of internally when classifying.

mz2 commented 10 years ago

I'd say this is done.