Skip to content

Commit

Permalink
Remove unused import.
Browse files Browse the repository at this point in the history
  • Loading branch information
lenguyenthedat committed Jul 24, 2015
1 parent c3449cd commit 07f006e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
5 changes: 2 additions & 3 deletions blend_proba.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
from sklearn import ensemble, cross_validation, preprocessing, linear_model, neighbors, svm, calibration
from sklearn.metrics import log_loss, accuracy_score, roc_auc_score
from sklearn import cross_validation
from sklearn.metrics import log_loss, accuracy_score
import numpy as np
import pandas as pd
import random
import md5
import json
from glob import glob

def blend_proba(clf, X_train, y, X_test, nfolds=5, save_preds="",
save_test_only="", seed=300373, save_params="",
Expand Down
3 changes: 1 addition & 2 deletions kaggle_rankavg.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
from __future__ import division
from collections import defaultdict
from glob import glob
import sys
from collections import defaultdict

glob_files = sys.argv[1]
loc_outfile = sys.argv[2]
Expand Down

0 comments on commit 07f006e

Please sign in to comment.