Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
suryadev1
/
test
like
0
Running
App
Files
Files
Community
146fd50
test
/
app.py
suryadev1
Upload 2 files
146fd50
verified
9 months ago
raw
Copy download link
history
blame
Safe
149 Bytes
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
]]))