Pls suggest a classifer for this two class problem with memory constraint
Basically I have a device which must be toggled on or off depending on the time. There is a function which checks every 10 minutes and depending on previous data of whether the light was on or off the light mus开发者_C百科t be toggled (two class problem). The issue is that this runs on a microcontroller with 128 kb of memory. So memory is a constraint. Can you guys suggest a model which would classify the above?
It should only take one bit of storage, and on a typical microcontroller one instruction to toggle the value (bitwise not
, or xor
with 1, depending on what's available).
精彩评论