jorseckc commited on
Commit
10f55ea
·
verified ·
1 Parent(s): ada1a3f

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +18 -0
README.md ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - computer-vision
5
+ - image-classification
6
+ ---
7
+
8
+ # ResNet-50 Classifier
9
+
10
+ Production model.
11
+
12
+ ## Usage
13
+
14
+ ```python
15
+ import joblib
16
+ model = joblib.load('model.joblib')
17
+ predictions = model.predict(images)
18
+ ```