Update README.md
Browse files
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 |
```
|