forked from beichenzbc/Long-CLIP
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4ad22ec
commit 7054ec5
Showing
6 changed files
with
115 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
import sys | ||
sys.path.append('../..') | ||
from model import longclip | ||
import torch | ||
from torchvision.datasets import CocoCaptions | ||
from PIL import Image | ||
import numpy as np | ||
|
||
def get_text_feature(): | ||
text_list = [] | ||
feature_list = [] | ||
with torch.no_grad(): | ||
with open("data/flickr/results_20130124.token", 'r') as f: | ||
dataset = f.readlines() | ||
for data in dataset: | ||
image = data.split('\t')[0] | ||
text = data.split('\t')[1] | ||
text_list.append(text) | ||
len_list = len(text_list) | ||
print(len_list) | ||
|
||
#avoid OOM | ||
with torch.no_grad(): | ||
for i in range(20): | ||
text = text_list[i*len_list//20: (i+1)*len_list//20] | ||
text = longclip.tokenize(text, truncate=True).to(device) | ||
feature_list.append(model.encode_text(text).to('cpu')) | ||
|
||
|
||
text_feature = torch.concatenate(feature_list, dim=0) | ||
return text_feature | ||
|
||
|
||
def get_image_feature(): | ||
text_list = [] | ||
data_root = "data/flickr/flickr30k-images/" | ||
img_feature_list = [] | ||
with torch.no_grad(): | ||
with open("data/flickr/results_20130124.token", 'r') as f: | ||
dataset = f.readlines() | ||
data_len = len(dataset) | ||
for i in range(data_len//5): | ||
#1 image corresponding to 5 captions | ||
data = dataset[5*i] | ||
image_name = data.split('\t')[0][:-2] | ||
image = Image.open(data_root + image_name) | ||
image = preprocess(image).unsqueeze(0).to(device) | ||
img_feature = model.encode_image(image).to('cpu') | ||
img_feature_list.append(img_feature) | ||
torch.cuda.empty_cache() | ||
del img_feature, image | ||
|
||
img_feature = torch.concatenate(img_feature_list, dim=0) | ||
return img_feature | ||
|
||
def get_accuracy_t2i(text_feature, image_feature, k): | ||
with torch.no_grad(): | ||
text_feature /= text_feature.norm(dim=-1, keepdim=True) | ||
image_feature /= image_feature.norm(dim=-1, keepdim=True) | ||
|
||
text_feature = text_feature.cuda() | ||
image_feature = image_feature.cuda() | ||
|
||
pred_true = 0 | ||
|
||
sim = (text_feature @ image_feature.T).softmax(dim=-1) | ||
|
||
for i in range(text_feature.shape[0]): | ||
pred = sim[i] | ||
values, topk = pred.topk(k) | ||
true_index = i//5 | ||
if true_index in topk: | ||
pred_true = pred_true + 1 | ||
|
||
print(pred_true/text_feature.shape[0]) | ||
|
||
def get_accuracy_i2t(text_feature, image_feature, k): | ||
with torch.no_grad(): | ||
text_feature /= text_feature.norm(dim=-1, keepdim=True) | ||
image_feature /= image_feature.norm(dim=-1, keepdim=True) | ||
|
||
text_feature = text_feature.cuda() | ||
image_feature = image_feature.cuda() | ||
|
||
pred_true = 0 | ||
|
||
sim = (image_feature @ text_feature.T).softmax(dim=-1) | ||
for i in range(image_feature.shape[0]): | ||
pred = sim[i] | ||
values, topk = pred.topk(k) | ||
for j in range(5): | ||
true_index = 5*i + j | ||
if true_index in topk: | ||
pred_true = pred_true + 1 | ||
break | ||
|
||
print(pred_true/image_feature.shape[0]) | ||
|
||
if __name__ == "__main__": | ||
device = "cuda" if torch.cuda.is_available() else "cpu" | ||
model, preprocess = longclip.load("../../checkpoints/longclip-B.pt", device=device) | ||
model.eval() | ||
|
||
text_feature = get_text_feature() | ||
image_feature = get_image_feature() | ||
|
||
get_accuracy_i2t(text_feature, image_feature, 1) | ||
get_accuracy_i2t(text_feature, image_feature, 5) | ||
get_accuracy_i2t(text_feature, image_feature, 10) | ||
get_accuracy_t2i(text_feature, image_feature, 1) | ||
get_accuracy_t2i(text_feature, image_feature, 5) | ||
get_accuracy_t2i(text_feature, image_feature, 10) |