Amitz244 commited on
Commit
37b7c94
·
verified ·
1 Parent(s): 54caae0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -2
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
- model = torch.load("PercrptCLIP_Memorability.pth").to(device).eval()
 
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")