I've built an NLTK classifier and attempting to use the following :
import nltk.classify
from sklearn.svm import LinearSVC
training_set2 = nltk.classify.apply_features(extract_features,tweets)
classifier2 = nltk.classify.SklearnClassifier(LinearSVC())
classifier2.train(training_set2)
With jupyter notebook, on a 45k dataset size and reciving "Memory Error" without any further explanation.
When I try to run the same thing but with Naive-Bayes everything works fine, anyone has an idea?