Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -69,7 +69,7 @@ transform = transforms.Compose([
|
|
| 69 |
])
|
| 70 |
|
| 71 |
# Load an image
|
| 72 |
-
img = Image.open("
|
| 73 |
x = transform(img).unsqueeze(0)
|
| 74 |
|
| 75 |
# Predict
|
|
|
|
| 69 |
])
|
| 70 |
|
| 71 |
# Load an image
|
| 72 |
+
img = Image.open("your_image_path.jpg").convert("RGB")
|
| 73 |
x = transform(img).unsqueeze(0)
|
| 74 |
|
| 75 |
# Predict
|