nhradek commited on
Commit
1d48d85
1 Parent(s): 928701d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -13,6 +13,6 @@ Accuracy varies depending on the dataset but can be anywhere from 80%-90% depend
13
 
14
  ```python
15
  model = joblib.load("flux_classifier.pkl")
16
- images = [Image.open("image.jpeg").resize(512, 512)]
17
  predictions = model.predict(images)
18
  ```
 
13
 
14
  ```python
15
  model = joblib.load("flux_classifier.pkl")
16
+ images = [Image.open("image.jpeg").resize((512, 512))]
17
  predictions = model.predict(images)
18
  ```