Is it possible to calculate the size of a model ( let's say a Random Forest classifier ) in scikit-learn?
For example:
from sklearn.ensemble import RandomForestClassifier clf = RandomForestClassifier(n_jobs=-1, n_estimators=10000, min_samples_leaf=50) clf.fit(self.X_train, self.y_train)
Can I determine the size of clf?