Say I wanna create a binary classifier for detecting SPAM messages. I have a billion of training examples and about 20 features. I want my trained classifier to fit in memory (I will run it on cloud and disk operations which are actually rpc-calls will be very expensive).
My question is: how can I estimate the amount of memory I'll need for it? Say my classifier is Random Forest and I know nothing about distribution of SPAM messages in my training set.
Only numbers: two classes, billion examples, 20 features.
Is such an estimation possible at all? How can it be done?