Update README.md
Browse files
README.md
CHANGED
|
@@ -18,7 +18,8 @@ image_processor = AutoImageProcessor.from_pretrained("facebook/dinov2-with-regis
|
|
| 18 |
model = AutoModelForImageClassification.from_pretrained('aslakey/camera_angle')
|
| 19 |
model.eval()
|
| 20 |
|
| 21 |
-
# example
|
|
|
|
| 22 |
image = Image.open('dutch_angle.jpg')
|
| 23 |
inputs = image_processor(image, return_tensors="pt")
|
| 24 |
with torch.no_grad():
|
|
|
|
| 18 |
model = AutoModelForImageClassification.from_pretrained('aslakey/camera_angle')
|
| 19 |
model.eval()
|
| 20 |
|
| 21 |
+
# example dutch angle image
|
| 22 |
+
# model labels [low, neutral, high, overhead, dutch]
|
| 23 |
image = Image.open('dutch_angle.jpg')
|
| 24 |
inputs = image_processor(image, return_tensors="pt")
|
| 25 |
with torch.no_grad():
|