aslakey commited on
Commit
b22e508
·
verified ·
1 Parent(s): 39aea81

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -1
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 duetch angle image
 
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():