Created
May 30, 2021 10:03
-
-
Save vivek1240/0f913746037764aaaffd90afff0a41df 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
#Making Predictions | |
prediction_category= {0:'Refunds',1:'Cancellation',2:'Others',3:'Amendment',4:'Website Error'} | |
my_prediction = clf2.predict([data]) | |
my_prediction= my_prediction[0] | |
my_prediction= prediction_category[my_prediction] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment