看起来你错过了管道中的标签
('clf', Pipeline([ SGDClassifier(n_jobs=-1, verbose=0) ])),
应该
('clf', Pipeline([ ('sgd', SGDClassifier(n_jobs=-1, verbose=0)) ])),