i have a model i have trained for binary classification, i now want to use it to predict unknown class elements.
from sklearn.externals import joblib
model = joblib.load('../model/randomForestModel.pkl')
test_data = df_test.values # df_test is a dataframe with my test data
output = model.predict(test_data[:,1:]) # this outputs the prediction either 1 or 0
I know how to get confusion_matrix, accuracy_score, classification_report given the training dataset, but in the case i do not have the train data. i would like to get something akin to this from weka:
inst# actual predicted error prediction
1 1:? 1:0 0.757
Is it possible in Scikit-learn? if so, how do i do it?