Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
# Don’t Judge Before You CLIP: Memorability Prediction Model
|
2 |
|
3 |
This model is part of our paper:
|
@@ -58,4 +68,4 @@ image = Mem_augmentations()(image).unsqueeze(0).to(device)
|
|
58 |
with torch.no_grad():
|
59 |
mem_score = model(image).item()
|
60 |
|
61 |
-
print(f"Predicted Memorability Score: {mem_score:.4f}")
|
|
|
1 |
+
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
+
base_model:
|
5 |
+
- openai/clip-vit-large-patch14
|
6 |
+
tags:
|
7 |
+
- memorability
|
8 |
+
- computer_vision
|
9 |
+
- perceptual_tasks
|
10 |
+
---
|
11 |
# Don’t Judge Before You CLIP: Memorability Prediction Model
|
12 |
|
13 |
This model is part of our paper:
|
|
|
68 |
with torch.no_grad():
|
69 |
mem_score = model(image).item()
|
70 |
|
71 |
+
print(f"Predicted Memorability Score: {mem_score:.4f}")
|