I'm using scikit-learn's LinearSVC as a statistical classifier in text classification. My features are uncentered tf-idf.
When the fit_intercept
attribute is set to False
, classification accuracy increases significantly, which contradicts the expectation that the absolute values of features does not impact the performance of a statistical classifier.
What can cause the change in classification accuracy I am observing?