Update README.md
Browse files
README.md
CHANGED
@@ -32,11 +32,12 @@ To use the model for inference:
|
|
32 |
from torchvision import transforms
|
33 |
import torch
|
34 |
from PIL import Image
|
35 |
-
|
36 |
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
|
37 |
|
38 |
# Load model
|
39 |
-
|
|
|
40 |
|
41 |
# Load an image
|
42 |
image = Image.open("image_path.jpg").convert("RGB")
|
|
|
32 |
from torchvision import transforms
|
33 |
import torch
|
34 |
from PIL import Image
|
35 |
+
from huggingface_hub import hf_hub_download
|
36 |
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
|
37 |
|
38 |
# Load model
|
39 |
+
model_path = hf_hub_download(repo_id="PerceptCLIP/PerceptCLIP_Memorability", filename="perceptCLIP_Memorability.pth")
|
40 |
+
model = torch.load(model_path).to(device).eval()
|
41 |
|
42 |
# Load an image
|
43 |
image = Image.open("image_path.jpg").convert("RGB")
|