Fix variable names
Browse files
README.md
CHANGED
|
@@ -73,7 +73,7 @@ pip install rad-dino
|
|
| 73 |
>>> image = download_sample_image()
|
| 74 |
>>> image
|
| 75 |
<PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=2765x2505 at 0x7CCD5C014050>
|
| 76 |
-
>>>
|
| 77 |
>>> cls_embeddings.shape, patch_embeddings.shape
|
| 78 |
(torch.Size([1, 768]), torch.Size([1, 768, 37, 37]))
|
| 79 |
```
|
|
|
|
| 73 |
>>> image = download_sample_image()
|
| 74 |
>>> image
|
| 75 |
<PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=2765x2505 at 0x7CCD5C014050>
|
| 76 |
+
>>> cls_embeddings, patch_embeddings = encoder.extract_features(image)
|
| 77 |
>>> cls_embeddings.shape, patch_embeddings.shape
|
| 78 |
(torch.Size([1, 768]), torch.Size([1, 768, 37, 37]))
|
| 79 |
```
|