File size: 30,380 Bytes
625a17f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 | import torch
import os
from enum import Enum
from tqdm import tqdm
import numpy as np
from detectron2.structures import BitMasks
from psalm.constants import IGNORE_INDEX, IMAGE_TOKEN_INDEX, DEFAULT_IMAGE_TOKEN, DEFAULT_IM_START_TOKEN, \
DEFAULT_IM_END_TOKEN, DEFAULT_SEG_TOKEN, SEG_TOKEN_INDEX
from psalm.model.builder import load_pretrained_model
from psalm.utils import disable_torch_init
from psalm.mm_utils import tokenizer_image_token, get_model_name_from_path, KeywordsStoppingCriteria
import cv2
from torch.utils.data import Dataset, DataLoader
from psalm import conversation as conversation_lib
# from psalm.train.train_datasets_eval import COCO_interactive_dataset #debug
from psalm.train.train_datasets import COCO_interactive_dataset
from detectron2.structures import BoxMode
from detectron2.data import MetadataCatalog, DatasetCatalog
from typing import Dict, Optional, Sequence, List
from dataclasses import dataclass, field
import torch.distributed as dist
import transformers
from pathlib import Path
# from segmentation_evaluation import openseg_classes
from psalm.eval.segmentation_evaluation import openseg_classes
from natsort import natsorted
COLOR_MAP = openseg_classes.ADE20K_150_CATEGORIES
import re
from psalm.constants import IGNORE_INDEX, IMAGE_TOKEN_INDEX, DEFAULT_IMAGE_PATCH_TOKEN, DEFAULT_IM_START_TOKEN, DEFAULT_IM_END_TOKEN, SEG_TOKEN_INDEX, CLS_TOKEN_INDEX, REGION_TOKEN_INDEX, REFER_TOKEN_INDEX
class Multicondition_Dataset(COCO_interactive_dataset):
#将ref instruction转化为整数tokens序列,并在末尾加上代表整个句子全部含义的[SEG]token
def preprocess_referring_instruction(self,instruction, REFER_token='[SEG]'):
tokenized = self.tokenizer.encode(instruction, add_special_tokens=False)
tokenized = tokenized + [self.tokenizer.encode(REFER_token, add_special_tokens=False)[0]]
token_refer_id = torch.tensor(tokenized)
return token_refer_id
# 相较于interatitive类,新增加了<ref>
def tokenizer_special_tokens(self, prompt, tokenizer, image_token_index=IMAGE_TOKEN_INDEX,
seg_token_index=SEG_TOKEN_INDEX, cls_token_index=CLS_TOKEN_INDEX,
region_token_index=REGION_TOKEN_INDEX,refer_token_index=REFER_TOKEN_INDEX, return_tensors=None):
input_ids = []
special_token_map = {'<image>': image_token_index, '<seg>': seg_token_index, '<cls>': cls_token_index, '<region>':region_token_index, '<refer>':refer_token_index}
prompt_chunks = re.split('(<image>|<seg>|<cls>|<region>|<refer>)', prompt)
for chunk in prompt_chunks:
if chunk in special_token_map:
input_ids.append(special_token_map[chunk])
else:
input_ids.extend(tokenizer.encode(chunk, add_special_tokens=False))
if return_tensors is not None:
if return_tensors == 'pt':
return torch.tensor(input_ids, dtype=torch.long).squeeze()
raise ValueError(f'Unsupported tensor type: {return_tensors}')
else:
return input_ids
#注意,这里所有的处理逻辑针对的都是一帧图像
def __getitem__(self, idx):
data = self.data[idx]
#图片的相对路径名称,like2017/trainval/JPEGImages/480p/bike-packing/00001.jpg
image_file = data['image']
#image_folder是data_root根路径 在这里是data_segswap
image_folder = self.data_args.image_folder
data_dict = {}
#file_name是图片的完整路径名称,like /data/Davis/2017/trainval/JPEGImages/480p/bike-packing/00001.jpg
data_dict['file_name'] = os.path.join(image_folder, image_file)
data_dict['height'] = data['image_info']['height']
data_dict['width'] = data['image_info']['width']
#image_id可以理解为计数器,编号
data_dict['image_id'] = data['new_img_id']
#annotations,本帧对应的注释,coco格式的分割mask,一张图片可能包含多个实例的mask
data_dict['annotations'] = data['anns']
#vp_annotations,每段视频中第一帧的注释
data_dict['vp_annotations'] = data['first_frame_anns']
#vp_image,每段视频中第一帧的完整路径,like /data/Davis/2017/trainval/JPEGImages/480p/bike-packing/00000.jpg
data_dict['vp_image'] = os.path.join(image_folder,data['first_frame_image'])
#debug:这里没有把refdataset里的category_id处理搬过来,不知道有影响吗
for annotation in data_dict['annotations']:
annotation['bbox_mode'] = BoxMode.XYXY_ABS
#边界框左上角和右下角的坐标都为原点,意思是将边界框置为空框
annotation['bbox'] = [0,0,0,0]
annotation['image_id'] = data['new_img_id']
#为了训练的时候instance能有region_mask属性而增设
# annotation['mask_visual_prompt_mask'] = annotation['segmentation']
for annotation in data_dict['vp_annotations']:
annotation['bbox_mode'] = BoxMode.XYXY_ABS
annotation['bbox'] = [0,0,0,0]
annotation['image_id'] = data['new_img_id']
#初始化processor,应该是个图像预处理器,再送进visual encoder之前,总体来说下面的一小段代码是对输入图像和mask的预处理
# print("self.data_args.image_processor", self.data_args.image_processor)
if isinstance(self.data_args.image_processor,dict):
#根据是否是对齐ego exo的size进行切换,图像预处理器
processor = self.data_args.image_processor['instance']
# processor = self.data_args.image_processor['instance_resize']
else:
processor = self.data_args.image_processor
#尝试从命令行参数中获取region_mask_type
region_mask_type = getattr(self.data_args,'region_mask_type',None)
if region_mask_type is not None:
region_mask_type = region_mask_type.split('||')
# print("region_mask_type:", region_mask_type)
#根据region_mask_type和mask_format(这里是0、1掩码),对原始的data_dict进行预处理,将Detectron2格式的dataset dict转化为MaskFormer格式的
data_dict = processor.preprocess(data_dict,region_mask_type=region_mask_type,mask_format='bitmask')
#debug: 目前为止和egodataset完全一样,除了上面增加的两个函数
sentences = data['instruction']
#num_target,本帧图像中有多少个对象
#下面的一小段代码,主要是利用llama处理输入的文本,生成对应的token
num_target = len(data_dict['instances'])
#<image> 是一个特殊的占位符,表示图像的输入
#debug: 这里有个问题,使用哪种前缀提示词
# prefix_inst = 'This is an image <image>, Please segment by given regions'
# prefix_inst = 'This is an image <image>, Please doing Referring Segmentation according to the following instruction:'
#debug:自己创造的前缀词
prefix_inst = 'This is an image <image>, Please segment by given regions and instruction'
#debug: 提取一帧图像中所有的物体描述并拼接在一起
# instruction="a bag.a cup.a pencil"
instruction = ''
for sent in sentences:
instruction += ' {}.'.format(sent['sent'])
#debug: 这些特殊的站位符号本质上还是字符串
#<region> 占位符来表示每个需要分割的区域,用逗号分隔,最后一个 <region> 以句号结束,例如,如果有 3 个区域,结果是 ' <region>, <region>, <region>.'
regions_inst = ' <region>,' * (num_target - 1) + ' <region>.'
sources_value = f'\nThis is all regions: {regions_inst}\n'
#sources构建了一个人类和模型交互的对话格式,定义了来自人类的输入和来自模型的输出
#debug: vp_seg的对话形式
# sources = [
# [{'from': 'human', 'value': prefix_inst + sources_value},
# {'from': 'gpt', 'value': '\n[SEG]<seg>'}]]
#debug: refseg的对话形式,看看怎么把两种任务的形式结合在一起
#[SEG]指的是代表整个句子的token,<seg>指的是代表mask token
# sources = [[{'from': 'human', 'value': prefix_inst + '\n<refer>'},
# {'from': 'gpt', 'value': '\nSure, the segmentation result is <seg>'}]]
#debug: 自己创造的对话形式,这里需要解决的是gpt返回的value是什么SEG]<seg> or <seg>
sources = [[{'from': 'human', 'value': prefix_inst + sources_value + "and this is the instruction: " + '<refer>\n'},
{'from': 'gpt', 'value': '\n[SEG]<seg>'}]]
#debug:sources的作用主要是输出text_dict
text_dict = self.preprocess_llama2(sources, self.tokenizer)
#input_ids是模型的实际输入,是由分词器将文本 sources 转换为的一系列数字标识(token IDs)
input_ids = text_dict['input_ids'][0]
#labels是模型训练时的token的真实标签,与input_ids对应
labels = text_dict['labels'][0]
#debug: 这里为针对ref新增加的
# instruction在这里才用上
token_refer_id = self.preprocess_referring_instruction(instruction)
refer_embedding_indices = torch.zeros_like(input_ids)
refer_embedding_indices[input_ids == REFER_TOKEN_INDEX] = 1
# refer_embedding_indices[input_ids == 50256] = 1 #debug
data_dict['input_ids'] = input_ids
data_dict['labels'] = labels
data_dict['dataset_type'] = 'referring_coco'
#debug: 看看这里的dataset_type的设置有影响吗
# data_dict['dataset_type'] = 'region_coco'
data_dict['token_refer_id'] = token_refer_id
data_dict['refer_embedding_indices'] = refer_embedding_indices
return data_dict
#从eval_davis中的DataCollatorForCOCODatasetV2类中,可以看出DAVIS_Dataset类每一帧对应的字典有哪些键
@dataclass
class DataCollatorForCOCODatasetV2(object):
"""Collate examples for supervised fine-tuning."""
tokenizer: transformers.PreTrainedTokenizer
#sequence表示列表、元组等有序对象,instances的类型表示为字典组成的有序列表,其中一个字典表示一帧图像
def __call__(self, instances: Sequence[Dict]) -> Dict[str, torch.Tensor]:
input_ids, labels = tuple([instance[key] for instance in instances]
for key in ("input_ids", "labels"))
input_ids = torch.nn.utils.rnn.pad_sequence(
input_ids,
batch_first=True,
padding_value=self.tokenizer.pad_token_id)
labels = torch.nn.utils.rnn.pad_sequence(labels,
batch_first=True,
padding_value=IGNORE_INDEX)
input_ids = input_ids[:, :self.tokenizer.model_max_length]
labels = labels[:, :self.tokenizer.model_max_length]
batch = dict(
input_ids=input_ids,
labels=labels,
attention_mask=input_ids.ne(self.tokenizer.pad_token_id),
)
if 'image' in instances[0]:
images = [instance['image'] for instance in instances]
if all(x is not None and x.shape == images[0].shape for x in images):
batch['images'] = torch.stack(images)
else:
batch['images'] = images
if 'vp_image' in instances[0]:
vp_images = [instance['vp_image'] for instance in instances]
if all(x is not None and x.shape == vp_images[0].shape for x in vp_images):
batch['vp_images'] = torch.stack(vp_images)
else:
batch['vp_images'] = vp_images
for instance in instances:
for key in ['input_ids', 'labels', 'image']:
del instance[key]
batch['seg_info'] = [instance for instance in instances]
if 'dataset_type' in instances[0]:
batch['dataset_type'] = [instance['dataset_type'] for instance in instances]
if 'class_name_ids' in instances[0]:
class_name_ids = [instance['class_name_ids'] for instance in instances]
if any(x.shape != class_name_ids[0].shape for x in class_name_ids):
batch['class_name_ids'] = torch.nn.utils.rnn.pad_sequence(
class_name_ids,
batch_first=True,
padding_value=-1,
)
else:
batch['class_name_ids'] = torch.stack(class_name_ids, dim=0)
if 'token_refer_id' in instances[0]:
token_refer_id = [instance['token_refer_id'] for instance in instances]
batch['token_refer_id'] = token_refer_id
if 'cls_indices' in instances[0]:
cls_indices = [instance['cls_indices'] for instance in instances]
if any(x.shape != cls_indices[0].shape for x in cls_indices):
batch['cls_indices'] = torch.nn.utils.rnn.pad_sequence(
cls_indices,
batch_first=True,
padding_value=-1,
)
else:
batch['cls_indices'] = torch.stack(cls_indices, dim=0)
if 'random_idx' in instances[0]:
random_idxs = [instance['random_idx'] for instance in instances]
batch['random_idx'] = torch.stack(random_idxs, dim=0)
if 'class_name_embedding_indices' in instances[0]:
class_name_embedding_indices = [instance['class_name_embedding_indices'] for instance in instances]
class_name_embedding_indices = torch.nn.utils.rnn.pad_sequence(
class_name_embedding_indices,
batch_first=True,
padding_value=0)
batch['class_name_embedding_indices'] = class_name_embedding_indices
if 'refer_embedding_indices' in instances[0]:
refer_embedding_indices = [instance['refer_embedding_indices'] for instance in instances]
refer_embedding_indices = torch.nn.utils.rnn.pad_sequence(
refer_embedding_indices,
batch_first=True,
padding_value=0)
batch['refer_embedding_indices'] = refer_embedding_indices
return batch
@dataclass
class DataArguments:
data_path: str = field(default=None,
metadata={"help": "Path to the training data."})
lazy_preprocess: bool = False
is_multimodal: bool = False
image_folder: Optional[str] = field(default='/path/to/val2017')
model_path: Optional[str] = field(default="/path/to/model")
mask_config: Optional[str] = field(default="./psalm/mask_config/maskformer2_swin_base_384_bs16_50ep.yaml")
image_aspect_ratio: str = 'square'
image_grid_pinpoints: Optional[str] = field(default=None)
json_path: str = '/path/to/coco'
model_map_name: str = 'psalm_video'
version: str = 'llava_phi'
segmentation: bool = True
eval_batch_size: int = 1 # debug
dataloader_num_workers: int = 8
seg_task: Optional[str] = field(default="region")
region_mask_type: Optional[str] = field(default=None)
with_memory: bool = False
resume: bool = False
resume_path: Optional[str] = field(default=None)
def parse_outputs(outputs,gt_mask):
res_list = []
for output in outputs:
# gt = output['gt'].cpu().numpy().astype(np.uint8)
pred_mask = output['instances'].pred_masks
pred_mask = pred_mask.cpu().numpy()
scores = output['instances'].scores.transpose(1,0).cpu().numpy()
gt_mask = output['gt'].cpu().numpy().astype(np.uint8)
try:
pred_cls = output['instances'].pred_classes.cpu().numpy()
except:
pred_cls = None
assert scores.shape[0] == gt_mask.shape[0]
for i in range(gt_mask.shape[0]):
res = {
'pred':pred_mask,
'gt': gt_mask[i],
'scores':scores[i],
'pred_cls':pred_cls
}
res_list.append(res)
return res_list
class DAVIS_Dataset(COCO_interactive_dataset):
#注意,这里所有的处理逻辑针对的都是一帧图像
def __getitem__(self, idx):
data = self.data[idx]
#图片的相对路径名称,like2017/trainval/JPEGImages/480p/bike-packing/00001.jpg
image_file = data['image']
#image_folder是data_root根路径 在这里是data_segswap
image_folder = self.data_args.image_folder
data_dict = {}
#file_name是图片的完整路径名称,like /data/Davis/2017/trainval/JPEGImages/480p/bike-packing/00001.jpg
data_dict['file_name'] = os.path.join(image_folder, image_file)
data_dict['height'] = data['image_info']['height']
data_dict['width'] = data['image_info']['width']
#image_id可以理解为计数器,编号
data_dict['image_id'] = data['new_img_id']
#annotations,本帧对应的注释,coco格式的分割mask,一张图片可能包含多个实例的mask
data_dict['annotations'] = data['anns']
#vp_annotations,每段视频中第一帧的注释
data_dict['vp_annotations'] = data['first_frame_anns']
#vp_image,每段视频中第一帧的完整路径,like /data/Davis/2017/trainval/JPEGImages/480p/bike-packing/00000.jpg
data_dict['vp_image'] = os.path.join(image_folder,data['first_frame_image'])
for annotation in data_dict['annotations']:
annotation['bbox_mode'] = BoxMode.XYXY_ABS
#边界框左上角和右下角的坐标都为原点,意思是将边界框置为空框
annotation['bbox'] = [0,0,0,0]
annotation['image_id'] = data['new_img_id']
for annotation in data_dict['vp_annotations']:
annotation['bbox_mode'] = BoxMode.XYXY_ABS
annotation['bbox'] = [0,0,0,0]
annotation['image_id'] = data['new_img_id']
#初始化processor,应该是个图像预处理器,再送进visual encoder之前,总体来说下面的一小段代码是对输入图像和mask的预处理
# print("self.data_args.image_processor", self.data_args.image_processor)
processor = self.data_args.image_processor['instance']
#尝试从命令行参数中获取region_mask_type
region_mask_type = getattr(self.data_args,'region_mask_type',None)
if region_mask_type is not None:
region_mask_type = region_mask_type.split('||')
#print("region_mask_type:", region_mask_type)
#根据region_mask_type和mask_format(这里是0、1掩码),对原始的data_dict进行预处理,将Detectron2格式的dataset dict转化为MaskFormer格式的
data_dict = processor.preprocess(data_dict,region_mask_type=region_mask_type,mask_format='bitmask')
#num_target,本帧图像中有多少个对象
#下面的一小段代码,主要是利用llama处理输入的文本,生成对应的token
num_target = len(data_dict['instances'])
#<image> 是一个特殊的占位符,表示图像的输入
prefix_inst = 'This is an image <image>, Please segment by given regions'
#<region> 占位符来表示每个需要分割的区域,用逗号分隔,最后一个 <region> 以句号结束,例如,如果有 3 个区域,结果是 ' <region>, <region>, <region>.'
regions_inst = ' <region>,' * (num_target - 1) + ' <region>.'
sources_value = f'\nThis is all regions: {regions_inst}\n'
#sources构建了一个人类和模型交互的对话格式,定义了来自人类的输入和来自模型的输出
sources = [
[{'from': 'human', 'value': prefix_inst + sources_value},
{'from': 'gpt', 'value': '\n[SEG]<seg>'}]]
text_dict = self.preprocess_llama2(sources, self.tokenizer)
#input_ids是模型的实际输入,是由分词器将文本 sources 转换为的一系列数字标识(token IDs)
input_ids = text_dict['input_ids'][0]
#labels是模型训练时的token的真实标签,与input_ids对应
labels = text_dict['labels'][0]
data_dict['input_ids'] = input_ids
data_dict['labels'] = labels
data_dict['dataset_type'] = 'region_coco'
return data_dict
import zlib
import base64
def compress_mask(mask):
# 将bool型mask转为bit数组
packed = np.packbits(mask.astype(bool), axis=None)
# 使用zlib二次压缩
compressed = zlib.compress(packed.tobytes())
# 转为base64字符串便于JSON存储
return base64.b64encode(compressed).decode('ascii')
def decompress_mask(encoded_str, shape):
# 逆向解码
compressed = base64.b64decode(encoded_str)
packed = zlib.decompress(compressed)
arr = np.frombuffer(packed, dtype=np.uint8)
return np.unpackbits(arr).reshape(shape).astype(bool)
def evaluation():
# parser = transformers.HfArgumentParser(DataArguments)
# data_args = parser.parse_args_into_dataclasses()[0]
# disable_torch_init()
# model_path = os.path.expanduser(data_args.model_path)
# model_name = get_model_name_from_path(model_path)
# print(f'current model is {model_path}')
# tokenizer, model, image_processor, context_len = load_pretrained_model(model_path, None, model_name, model_args=data_args, mask_config=data_args.mask_config, device='cuda')
parser = transformers.HfArgumentParser(DataArguments)
data_args = parser.parse_args_into_dataclasses()[0]
disable_torch_init()
model_path = os.path.expanduser(data_args.model_path)
model_name = get_model_name_from_path(model_path)
print(f'current model is {model_path}')
tokenizer, model, image_processor, context_len = load_pretrained_model(model_path, None, model_name, model_args=data_args, mask_config=data_args.mask_config, device='cuda')
data_args.image_processor = image_processor
data_args.is_multimodal = True
conversation_lib.default_conversation = conversation_lib.conv_templates[data_args.version]
eval_dataset = DAVIS_Dataset(json_path=data_args.json_path, tokenizer=tokenizer, data_args=data_args)
data_collator = DataCollatorForCOCODatasetV2(tokenizer=tokenizer)
dataloader_params = {
"batch_size": data_args.eval_batch_size,
"num_workers": data_args.dataloader_num_workers,
}
eval_dataloader = DataLoader(eval_dataset, batch_size=dataloader_params['batch_size'], collate_fn=data_collator,
num_workers=dataloader_params['num_workers'])
def load_ref_dataset():
return DAVIS_Dataset(json_path=data_args.json_path, tokenizer=tokenizer, data_args=data_args)
#注册load_ref_dataset函数,方便快速获取数据集
DatasetCatalog.register('refcoco_dataset', load_ref_dataset)
MetadataCatalog.get('refcoco_dataset').set(stuff_classes=['object'],)
gt_json_path = data_args.json_path
#save_dir /data/..../data_segswap
save_dir = os.path.dirname(gt_json_path)
save_dir = os.path.join(save_dir,'predictions')
device = 'cuda' if torch.cuda.is_available() else 'cpu'
model.to(device=device,dtype=torch.float).eval()
#prev是preservation的缩写,即历史信息
prev_image = None
prev_mask_list = None
prev_fill_number_list = None
prev_video = None
prev_transformer = None
# area_total = 0
# 导入额外的库
import json
from pycocotools import mask as mask_utils
splits_path = "/home/yuqian_fu/Projects/ego-exo4d-relation/correspondence/SegSwap/data/split.json"
save_path = "/work/yuqian_fu/Ego/bisai_results_base64.json"
with open(splits_path, "r") as fp:
splits = json.load(fp)
takes_all = splits["val"]
if data_args.resume:
with open(data_args.resume_path, "r") as fp:
result = json.load(fp)
# 删除result字典中最后处理的take_id
# last_processed_take = "xxx"
# del result[last_processed_take]
processed_takes = set(result.keys())
takes_all = [take_id for take_id in takes_all if take_id not in processed_takes]
else:
result = {}
# 混合精度推理
scaler = torch.cuda.amp.autocast(enabled=True)
with torch.no_grad():
for take_id in tqdm(takes_all):
print("current take_id:", take_id)
# 获取针对每个take的标注文件
with open(f'{data_args.image_folder}/{take_id}/annotation.json', 'r') as fp:
annotations = json.load(fp)
# 获取每个take下的所有物体,并创建从fill_number到物体名称的映射
objs = natsorted(list(annotations["masks"].keys())) #debug: 是否有必要使用natsort
coco_id_to_cont_id = {cont_id + 1: coco_id for cont_id, coco_id in enumerate(objs)}
id_range = list(coco_id_to_cont_id.keys())
# 保存每个take下的结果
pred_json = {'masks': {}, 'subsample_idx': annotations['subsample_idx']}
for idx, inputs in enumerate(eval_dataloader):
inputs = {k: v.to(device) if torch.is_tensor(v) else v for k, v in inputs.items()}
# 筛选数据,若不是take_id下的帧,则跳过
video_name = inputs['seg_info'][0]['file_name'].split('/')[-3]
#print("video_name:", video_name) # debug
if video_name != take_id:
continue
# 提取cam
target_cam = inputs['seg_info'][0]['file_name'].split('/')[-2]
query_cam = inputs['seg_info'][0]['vp_file_path'].split('/')[-2] # debug
# print("query_cam:", query_cam) # debug
# print("target_cam:", target_cam)
pair_key = f'{query_cam}_{target_cam}'
# 提取id
id = inputs['seg_info'][0]['file_name'].split('/')[-1].split('.')[0]
# print("id:", id) # debug
with torch.cuda.amp.autocast():
outputs = model.eval_video(
input_ids=inputs['input_ids'],
attention_mask=inputs['attention_mask'],
images=inputs['images'].float(),
vp_images=inputs['vp_images'].float(),
seg_info=inputs['seg_info'],
labels=inputs['labels']
)
if torch.cuda.is_available():
torch.cuda.synchronize()
output = outputs[0]
pred_mask = output['instances'].pred_masks
pred_mask = pred_mask.cpu().numpy()
scores = output['instances'].scores.transpose(1, 0).cpu().numpy()
gt_mask = output['gt'].cpu().numpy().astype(np.uint8)
assert len(scores) == len(inputs['seg_info'][0]['instances'].vp_fill_number)
prev_idx = []
for i in range(len(scores)):
cur_scores = scores[i]
cur_fill_number = inputs['seg_info'][0]['instances'].vp_fill_number[i]
# debug:如果填充物体id不在所有物体的索引列表中,跳过
if cur_fill_number not in id_range:
print(f"cur_fill_number {cur_fill_number} not in id_range, skipping...")
continue
max_score, idx = torch.topk(torch.tensor(cur_scores), 10, largest=True, sorted=True)
idx = idx.cpu().numpy()
for i in range(10):
if idx[i] not in prev_idx:
prev_idx.append(idx[i])
pick_idx = idx[i]
pick_score = max_score[i]
break
#TODO这里curpred是单个物体的mask,可以在这里看看能不能提取种类id信息
cur_pred = pred_mask[pick_idx, :].astype(bool)
compressed_str = compress_mask(cur_pred)
# 根据cur_fill_number逆映射找到obj-name
obj_name = coco_id_to_cont_id[cur_fill_number.item()]
# 对获取到的obj_name进行合法性筛查
if target_cam not in annotations['masks'][obj_name].keys():
print(f"target_cam {target_cam} not in {obj_name}, skipping...")
continue
if id not in annotations["masks"][obj_name][target_cam].keys():
print(f"id {id} not in {target_cam}, skipping...")
continue
# 1) 保证第一层 obj_name 存在
if obj_name not in pred_json['masks']:
pred_json['masks'][obj_name] = {}
# 2) 保证第二层 pair_key 存在
if pair_key not in pred_json['masks'][obj_name]:
pred_json['masks'][obj_name][pair_key] = {}
#pred_json['masks'][obj_name][f'{query_cam}_{target_cam}'][id] = {'pred_mask': cur_pred, 'confidence': 1} # debug:先将confidence写死为1
pred_json['masks'][obj_name][f'{query_cam}_{target_cam}'][id] = {'pred_mask': compressed_str, 'confidence': pick_score.item(), 'shape': cur_pred.shape} # debug:先将confidence写死为1
#检查一下pred_json['masks']的内容是否为空
if len(pred_json['masks']) == 0:
print(f"pred_json['masks'] is empty for take_id {take_id}, skipping...")
continue
# 将这个take下的所有结果存储
result[take_id] = pred_json
# TODO: 增加每个take都保存的功能
with open(save_path, "w") as fp:
json.dump(result, fp)
if __name__ == '__main__':
evaluation()
|