yaswanthgali commited on
Commit
0f58d5d
·
verified ·
1 Parent(s): a063020

Update model id

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -34,9 +34,9 @@ url = "http://images.cocodataset.org/val2017/000000039769.jpg"
34
  image = Image.open(requests.get(url, stream=True).raw)
35
 
36
  processor = AutoImageProcessor.from_pretrained(
37
- "apple/aimv2-large-patch14-native",
38
  )
39
- model = AutoModel.from_pretrained("apple/aimv2-large-patch14-native")
40
 
41
  inputs = processor(images=image, return_tensors="pt")
42
  outputs = model(**inputs)
 
34
  image = Image.open(requests.get(url, stream=True).raw)
35
 
36
  processor = AutoImageProcessor.from_pretrained(
37
+ "apple/aimv2-large-patch14-native-HF",
38
  )
39
+ model = AutoModel.from_pretrained("apple/aimv2-large-patch14-224-lit-HF")
40
 
41
  inputs = processor(images=image, return_tensors="pt")
42
  outputs = model(**inputs)