File size: 149 Bytes
146fd50
 
 
 
 
1
2
3
4
5
6
import joblib
knn = joblib.load('knn_model.pkl')
import warnings
warnings.filterwarnings('ignore')
print(knn.predict([[0.2,0.03,0.0,1.0,0.0]]))