-
-
Save mrgloom/6634335 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from sklearn.grid_search import GridSearchCV | |
from sklearn.cross_validation import StratifiedKFold | |
def main(): | |
mnist = fetch_mldata("MNIST original") | |
X_all, y_all = mnist.data/255., mnist.target | |
print("scaling") | |
X = X_all[:60000, :] | |
y = y_all[:60000] | |
X_test = X_all[60000:, :] | |
y_test = y_all[60000:] | |
svm = SVC(cache_size=1000, kernel='rbf') | |
parameters = {'C':10. ** np.arange(5,10), 'gamma':2. ** np.arange(-5, -1)} | |
print("grid search") | |
grid = GridSearchCV(svm, parameters, cv=StratifiedKFold(y, 5), verbose=3, n_jobs=-1) | |
grid.fit(X, y) | |
print("predicting") | |
print "score: ", grid.score(X_test, y_test) | |
print grid.best_estimator_ | |
if __name__ == "__main__": | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment