btizzy commited on
Commit
3dc6920
·
verified ·
1 Parent(s): e508019

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +11 -0
README.md ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Example Joblib Model
2
+
3
+ This is a demonstration model for testing purposes.
4
+
5
+ ## Usage
6
+
7
+ ```python
8
+ import joblib
9
+ # WARNING: Never load joblib files from untrusted sources
10
+ model = joblib.load("model.joblib")
11
+ ```