Fix example checkpoint
Browse files
README.md
CHANGED
@@ -86,8 +86,8 @@ image2 = Image.open(requests.get(url_image2, stream=True).raw)
|
|
86 |
|
87 |
images = [image1, image2]
|
88 |
|
89 |
-
processor = AutoImageProcessor.from_pretrained("
|
90 |
-
model = AutoModel.from_pretrained("
|
91 |
|
92 |
inputs = processor(images, return_tensors="pt")
|
93 |
with torch.no_grad():
|
|
|
86 |
|
87 |
images = [image1, image2]
|
88 |
|
89 |
+
processor = AutoImageProcessor.from_pretrained("ETH-CVG/lightglue_superpoint")
|
90 |
+
model = AutoModel.from_pretrained("ETH-CVG/lightglue_superpoint")
|
91 |
|
92 |
inputs = processor(images, return_tensors="pt")
|
93 |
with torch.no_grad():
|