def test(xTest, yTest, wTest): testResults = gboost.predict_proba(xTest)[:,1] testClassifications = i.formatOutputs([testResults])[0] return i.testScore(yTest, wTest, testClassifications)
def test(xTest, yTest, wTest): testResults = forest.predict_proba(xTest)[:,1] testClassifications = i.formatOutputs([testResults])[0] return i.testScore(yTest, wTest, testClassifications)