File size: 31,230 Bytes
032e687 |
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 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 |
import random
import glob
import json
import logging
import os
import torch
from datasets import Dataset as HFDataset
from datasets import DatasetDict, load_from_disk
from mmengine import print_log
from mmengine.config import Config, ConfigDict
from PIL import Image
from torch.utils.data import Dataset
import numpy as np
import torch.nn.functional as F
from pycocotools.coco import COCO
from xtuner.registry import BUILDER
from .utils import expand2square, expand2square_mask
from .process_functions.semantic_seg_process import semantic_seg_conversations, semantic_seg_gcg_format_conversations
from xtuner.dataset.huggingface import process_hf_dataset, build_origin_dataset
import copy
from xtuner.dataset.utils import encode_fn
class SemanticSegDataset(Dataset):
def __init__(self,
image_folder,
image_processor,
data_path=None,
tokenizer=None,
offline_processed_text_folder=None,
max_dataset_length=None,
dataset_map_fn=None,
template_map_fn=None,
max_length=2048,
pad_image_to_square=False,
num_proc=8,
lazy=False,
repeats=1,
gcg_format=False):
super().__init__()
self.tokenizer = tokenizer
assert offline_processed_text_folder or (data_path and tokenizer)
self.lazy = lazy
self.max_length = max_length
self.dataset_map_fn = dataset_map_fn
self.template_map_fn = template_map_fn
if isinstance(self.template_map_fn, dict) and self.lazy:
_type = self.template_map_fn['type']
del self.template_map_fn['type']
self.template_map_fn = _type(**self.template_map_fn)
if offline_processed_text_folder and data_path:
print_log(
'Both `offline_processed_text_folder` and '
'`data_path` are set, and we load dataset from'
'`offline_processed_text_folder` '
f'({offline_processed_text_folder})',
logger='current',
level=logging.WARNING)
if offline_processed_text_folder is not None:
raise NotImplementedError
else:
self.image_label_datas = self.json_file_preprocess(data_path, image_folder)
if gcg_format:
conversations_datas = semantic_seg_gcg_format_conversations(self.classes)
else:
conversations_datas = semantic_seg_conversations(self.classes)
json_data = DatasetDict({'train': HFDataset.from_list(conversations_datas)})
if self.lazy:
self.text_data = build_origin_dataset(json_data, 'train')
else:
self.text_data = process_hf_dataset(
dataset=json_data,
tokenizer=tokenizer,
max_length=max_length,
dataset_map_fn=dataset_map_fn,
template_map_fn=template_map_fn,
split='train',
max_dataset_length=max_dataset_length,
remove_unused_columns=False,
pack_to_max_length=False,
with_image_token=True,
map_num_proc=num_proc, # because limited mem
)
self.clsid2convs = self.construct_cls2convs_dict()
self.image_folder = image_folder
size = image_processor.crop_size
if isinstance(size, int):
self.image_h, self.image_w = size, size
else:
self.image_w, self.image_h = size
if isinstance(image_processor, dict) or isinstance(
image_processor, Config) or isinstance(image_processor,
ConfigDict):
self.image_processor = BUILDER.build(image_processor)
else:
self.image_processor = image_processor
self.pad_image_to_square = pad_image_to_square
self.down_ratio = 1
self.repeats = repeats
self.tokenizer = tokenizer
def construct_cls2convs_dict(self):
ret = {}
for conv_item in self.text_data:
cls_id = conv_item['class_id']
if cls_id in ret.keys():
ret[cls_id].append(conv_item)
else:
ret[cls_id] = [conv_item]
return ret
def json_file_preprocess(self, data_path, image_folder):
# ade20k
with open(data_path, 'r') as file:
ade20k_classes = json.load(file)
ade20k_image_dir = image_folder
ade20k_images = [os.path.join(ade20k_image_dir, img) for img in os.listdir(ade20k_image_dir) if
img.endswith('.jpg')]
ade20k_labels = [img.replace(".jpg", ".png").replace("images", "annotations") for img in ade20k_images]
self.classes = np.array(ade20k_classes)
ret = []
for image, label in zip(ade20k_images, ade20k_labels):
ret.append({"image": image, "label": label})
return ret
def __len__(self):
return len(self.image_label_datas) * self.repeats
@property
def modality_length(self):
length_list = []
for data_dict in self.image_label_datas:
length_list.append(100)
length_list = length_list * self.repeats
return length_list
def real_len(self):
return len(self.image_label_datas)
def decode_mask(self, label_path):
label = np.array(Image.open(label_path))
# ade 20k
label = np.where(label == 0, 255, label - 1)
unique_labels = [lbl for lbl in np.unique(label) if lbl != 255]
if not unique_labels:
return None, None
# only choose 1
selected_labels = np.random.choice(
unique_labels, 1, replace=False
)
label = torch.from_numpy(label).long()
masks = torch.stack([label == class_id for class_id in selected_labels], dim=0)
masks = masks.numpy()
if self.pad_image_to_square:
masks = expand2square_mask(masks)
masks = torch.from_numpy(masks).to(torch.float32)
masks = F.interpolate(masks.unsqueeze(0), size=(self.image_h // self.down_ratio,
self.image_w // self.down_ratio), mode='nearest').squeeze(0)
return masks, selected_labels[0]
def __getitem__(self, index):
index = index % self.real_len()
data_dict = copy.deepcopy(self.image_label_datas[index])
assert 'image' in data_dict.keys()
if data_dict.get('image', None) is not None:
image_file = data_dict['image']
image = Image.open(image_file).convert('RGB')
ori_width, ori_height = image.size
if self.pad_image_to_square:
image = expand2square(
image,
tuple(
int(x * 255) for x in self.image_processor.image_mean))
image = self.image_processor.preprocess(
image, return_tensors='pt')['pixel_values'][0]
data_dict['pixel_values'] = image
# process and get masks
data_dict['masks'], class_id = self.decode_mask(data_dict['label'])
if class_id is None:
return self.__getitem__(0)
conv_datas = self.clsid2convs[class_id]
selected_idx = np.random.randint(0, len(conv_datas))
data_dict.update(conv_datas[selected_idx])
else:
if hasattr(self.image_processor, 'crop_size'):
crop_size = self.image_processor.crop_size
else:
crop_size = self.image_processor.size
data_dict['pixel_values'] = torch.zeros(3, crop_size['height'],
crop_size['width'])
data_dict['masks'] = None
if self.lazy:
result = self.dataset_map_fn(data_dict)
data_dict.update(result)
result = self.template_map_fn(data_dict)
data_dict.update(result)
result = encode_fn(data_dict, tokenizer=self.tokenizer, max_length=self.max_length, with_image_token=True)
data_dict.update(result)
return data_dict
class ADE20kSemanticSegDataset(SemanticSegDataset):
def __init__(self,
image_folder,
image_processor,
data_path=None,
tokenizer=None,
offline_processed_text_folder=None,
max_dataset_length=None,
dataset_map_fn=None,
template_map_fn=None,
max_length=2048,
pad_image_to_square=False,
num_proc=8,
lazy=False,
repeats=1,
gcg_format=False):
super().__init__(
image_folder=image_folder,
image_processor=image_processor,
data_path=data_path,
tokenizer=tokenizer,
offline_processed_text_folder=offline_processed_text_folder,
max_dataset_length=max_dataset_length,
dataset_map_fn=dataset_map_fn,
template_map_fn=template_map_fn,
max_length=max_length,
pad_image_to_square=pad_image_to_square,
num_proc=num_proc,
lazy=lazy,
repeats=repeats,
gcg_format=gcg_format,
)
class COCOStuffSemanticSegDataset(SemanticSegDataset):
def __init__(self,
image_folder,
image_processor,
data_path=None,
tokenizer=None,
offline_processed_text_folder=None,
max_dataset_length=None,
dataset_map_fn=None,
template_map_fn=None,
max_length=2048,
pad_image_to_square=False,
num_proc=8,
lazy=False,
repeats=1,
label_path=None,
gcg_format=False,):
self.label_path = label_path
super().__init__(
image_folder=image_folder,
image_processor=image_processor,
data_path=data_path,
tokenizer=tokenizer,
offline_processed_text_folder=offline_processed_text_folder,
max_dataset_length=max_dataset_length,
dataset_map_fn=dataset_map_fn,
template_map_fn=template_map_fn,
max_length=max_length,
pad_image_to_square=pad_image_to_square,
num_proc=num_proc,
lazy=lazy,
repeats=repeats,
gcg_format=gcg_format,
)
self.cocostuff_class2index = {c: i for i, c in enumerate(self.classes)}
def json_file_preprocess(self, data_path, image_folder):
# coco stuff
assert self.label_path is not None
with open(data_path, 'r') as file:
cocostuff_classes = [line.strip().split(": ")[-1] for line in file.readlines()[1:]]
coco_stuff_image_dir = image_folder
coco_stuff_label_dir = self.label_path
coco_stuff_labels = glob.glob(os.path.join(coco_stuff_label_dir, "*.png"))
coco_stuff_images = [label.replace(".png", ".jpg").replace(coco_stuff_label_dir, coco_stuff_image_dir)
for label in coco_stuff_labels]
self.classes = np.array(cocostuff_classes)
ret = []
for image, label in zip(coco_stuff_images, coco_stuff_labels):
ret.append({"image": image, "label": label})
return ret
def decode_mask(self, label_path):
label = np.array(Image.open(label_path))
# coco stuff
ignored_classes = [index for class_name, index in self.cocostuff_class2index.items() if
"-" in class_name]
label = np.where(np.isin(label, ignored_classes), 255, label)
unique_labels = [lbl for lbl in np.unique(label) if lbl != 255]
if not unique_labels:
print("No valid label !!!")
return None, None
# only choose 1
selected_labels = np.random.choice(
unique_labels, 1, replace=False
)
label = torch.from_numpy(label).long()
masks = torch.stack([label == class_id for class_id in selected_labels], dim=0)
masks = masks.numpy()
if self.pad_image_to_square:
masks = expand2square_mask(masks)
masks = torch.from_numpy(masks).to(torch.float32)
masks = F.interpolate(masks.unsqueeze(0), size=(self.image_h // self.down_ratio,
self.image_w // self.down_ratio), mode='nearest').squeeze(0)
return masks, selected_labels[0]
class MapillarySemanticSegDataset(SemanticSegDataset):
def __init__(self,
image_folder,
image_processor,
data_path=None,
tokenizer=None,
offline_processed_text_folder=None,
max_dataset_length=None,
dataset_map_fn=None,
template_map_fn=None,
max_length=2048,
pad_image_to_square=False,
num_proc=8,
lazy=False,
repeats=1,
label_path=None,
gcg_format=False,):
self.label_path = label_path
super().__init__(
image_folder=image_folder,
image_processor=image_processor,
data_path=data_path,
tokenizer=tokenizer,
offline_processed_text_folder=offline_processed_text_folder,
max_dataset_length=max_dataset_length,
dataset_map_fn=dataset_map_fn,
template_map_fn=template_map_fn,
max_length=max_length,
pad_image_to_square=pad_image_to_square,
num_proc=num_proc,
lazy=lazy,
repeats=repeats,
gcg_format=gcg_format,
)
def json_file_preprocess(self, data_path, image_folder):
assert self.label_path is not None
# mapillary
with open(data_path, 'r') as file:
mapillary_classes = json.load(file)["labels"]
mapillary_classes = [cls["readable"].lower() for cls in mapillary_classes]
mapillary_labels = sorted(
glob.glob(os.path.join(self.label_path, "*.png")))
mapillary_images = [
label.replace(".png", ".jpg").replace(self.label_path, image_folder)
for label in mapillary_labels]
self.classes = np.array(mapillary_classes)
ret = []
for image, label in zip(mapillary_images, mapillary_labels):
ret.append({"image": image, "label": label})
return ret
def decode_mask(self, label_path):
label = np.array(Image.open(label_path))
ignored_classes = [index for index, class_name in enumerate(self.classes) if
"-" in class_name or '(' in class_name or
'unlabeled' in class_name]
label = np.where(np.isin(label, ignored_classes), 255, label)
unique_labels = [lbl for lbl in np.unique(label) if lbl != 255]
if not unique_labels:
print("No valid label !!!")
return None, None
# only choose 1
selected_labels = np.random.choice(
unique_labels, 1, replace=False
)
label = torch.from_numpy(label).long()
masks = torch.stack([label == class_id for class_id in selected_labels], dim=0)
masks = masks.numpy()
if self.pad_image_to_square:
masks = expand2square_mask(masks)
masks = torch.from_numpy(masks).to(torch.float32)
masks = F.interpolate(masks.unsqueeze(0), size=(self.image_h // self.down_ratio,
self.image_w // self.down_ratio), mode='nearest').squeeze(0)
return masks, selected_labels[0]
class PascalPartSemanticSegDataset(Dataset):
def __init__(self,
image_folder,
image_processor,
data_path=None,
tokenizer=None,
offline_processed_text_folder=None,
max_dataset_length=None,
dataset_map_fn=None,
template_map_fn=None,
max_length=2048,
pad_image_to_square=False,
num_proc=8,
lazy=False,
repeats=1):
super().__init__()
self.tokenizer = tokenizer
assert offline_processed_text_folder or (data_path and tokenizer)
self.lazy = lazy
self.max_length = max_length
self.dataset_map_fn = dataset_map_fn
self.template_map_fn = template_map_fn
if isinstance(self.template_map_fn, dict) and self.lazy:
_type = self.template_map_fn['type']
del self.template_map_fn['type']
self.template_map_fn = _type(**self.template_map_fn)
if offline_processed_text_folder and data_path:
print_log(
'Both `offline_processed_text_folder` and '
'`data_path` are set, and we load dataset from'
'`offline_processed_text_folder` '
f'({offline_processed_text_folder})',
logger='current',
level=logging.WARNING)
if offline_processed_text_folder is not None:
raise NotImplementedError
else:
json_datas = self.json_file_preprocess(data_path)
json_data = DatasetDict({'train': HFDataset.from_list(json_datas)})
if self.lazy:
self.text_data = build_origin_dataset(json_data, 'train')
else:
self.text_data = process_hf_dataset(
dataset=json_data,
tokenizer=tokenizer,
max_length=max_length,
dataset_map_fn=dataset_map_fn,
template_map_fn=template_map_fn,
split='train',
max_dataset_length=max_dataset_length,
remove_unused_columns=False,
pack_to_max_length=False,
with_image_token=True,
map_num_proc=num_proc, # because limited mem
)
self.image_folder = image_folder
size = image_processor.crop_size
if isinstance(size, int):
self.image_h, self.image_w = size, size
else:
self.image_w, self.image_h = size
if isinstance(image_processor, dict) or isinstance(
image_processor, Config) or isinstance(image_processor,
ConfigDict):
self.image_processor = BUILDER.build(image_processor)
else:
self.image_processor = image_processor
self.pad_image_to_square = pad_image_to_square
self.down_ratio = 1
self.repeats = repeats
self.tokenizer = tokenizer
def json_file_preprocess(self, data_path):
pascal_part_api = COCO(data_path)
all_classes = pascal_part_api.loadCats(pascal_part_api.getCatIds())
class_map_pascal_part = {}
for cat in all_classes:
cat_main, cat_part = cat["name"].strip().split(":")
name = (cat_main, cat_part)
class_map_pascal_part[cat["id"]] = name
img_ids = pascal_part_api.getImgIds()
self.classes = class_map_pascal_part
self.coco_api = pascal_part_api
img_infos = [self.coco_api.loadImgs([img_id])[0] for img_id in img_ids]
valid_img_infos = []
for img_info in img_infos:
annotation_ids = self.coco_api.getAnnIds(imgIds=img_info["id"])
annotations = self.coco_api.loadAnns(annotation_ids)
if not annotations:
continue
# sampled to max number as 5
sampled_anns = np.random.choice(annotations, 5, replace=False) if len(
annotations
) >= 5 else annotations
selected_labels = []
for ann in sampled_anns:
category_id = ann["category_id"]
sampled_cls = self.classes[category_id]
if isinstance(sampled_cls, tuple):
obj, part = sampled_cls
name = f"{obj} {part}" if random.random() < 0.5 else f"the {part} of the {obj}"
else:
name = sampled_cls
selected_labels.append(name)
img_info.update({"annotations": sampled_anns,
"selected_labels": selected_labels})
valid_img_infos.append(img_info)
return valid_img_infos
def __len__(self):
return len(self.text_data) * self.repeats
@property
def modality_length(self):
length_list = []
for data_dict in self.text_data:
if self.lazy:
cur_len = 100
else:
cur_len = len(data_dict['input_ids'])
if data_dict.get('image', None) is None:
cur_len = -cur_len
length_list.append(cur_len)
length_list = length_list * self.repeats
return length_list
def real_len(self):
return len(self.text_data)
def decode_mask(self, annotations):
try:
masks = [self.coco_api.annToMask(ann) for ann in annotations]
except Exception as e:
print(f"Error generating mask: {e}")
return None
masks = np.stack(masks, axis=0)
if self.pad_image_to_square:
masks = expand2square_mask(masks)
masks = torch.from_numpy(masks)
masks = F.interpolate(masks.unsqueeze(0), size=(self.image_h // self.down_ratio,
self.image_w // self.down_ratio), mode='nearest').squeeze(0)
return masks
def __getitem__(self, index):
index = index % self.real_len()
data_dict = copy.deepcopy(self.text_data[index])
assert 'image' in data_dict.keys()
if data_dict.get('image', None) is not None:
image_file = data_dict['image']
image_file = os.path.join(self.image_folder, image_file)
image = Image.open(image_file).convert('RGB')
ori_width, ori_height = image.size
if self.pad_image_to_square:
image = expand2square(
image,
tuple(
int(x * 255) for x in self.image_processor.image_mean))
image = self.image_processor.preprocess(
image, return_tensors='pt')['pixel_values'][0]
data_dict['pixel_values'] = image
# process and get masks
data_dict['masks'] = self.decode_mask(data_dict['annotations'])
if data_dict['masks'] is None:
return self.__getitem__(0)
else:
if hasattr(self.image_processor, 'crop_size'):
crop_size = self.image_processor.crop_size
else:
crop_size = self.image_processor.size
data_dict['pixel_values'] = torch.zeros(3, crop_size['height'],
crop_size['width'])
data_dict['masks'] = None
if self.lazy:
result = self.dataset_map_fn(data_dict)
data_dict.update(result)
result = self.template_map_fn(data_dict)
data_dict.update(result)
result = encode_fn(data_dict, tokenizer=self.tokenizer, max_length=self.max_length, with_image_token=True)
data_dict.update(result)
return data_dict
class PacoSemanticSegDataset(PascalPartSemanticSegDataset):
def __init__(self,
image_folder,
image_processor,
data_path=None,
tokenizer=None,
offline_processed_text_folder=None,
max_dataset_length=None,
dataset_map_fn=None,
template_map_fn=None,
max_length=2048,
pad_image_to_square=False,
num_proc=8,
lazy=False,
repeats=1,):
self.tokenizer = tokenizer
assert offline_processed_text_folder or (data_path and tokenizer)
self.lazy = lazy
self.max_length = max_length
self.dataset_map_fn = dataset_map_fn
self.template_map_fn = template_map_fn
if isinstance(self.template_map_fn, dict) and self.lazy:
_type = self.template_map_fn['type']
del self.template_map_fn['type']
self.template_map_fn = _type(**self.template_map_fn)
if offline_processed_text_folder and data_path:
print_log(
'Both `offline_processed_text_folder` and '
'`data_path` are set, and we load dataset from'
'`offline_processed_text_folder` '
f'({offline_processed_text_folder})',
logger='current',
level=logging.WARNING)
if offline_processed_text_folder is not None:
raise NotImplementedError
else:
json_datas = self.json_file_preprocess(data_path)
self.json_datas = json_datas
json_datas = self.only_get_hf_map_infos()
json_data = DatasetDict({'train': HFDataset.from_list(json_datas)})
if self.lazy:
self.text_data = build_origin_dataset(json_data, 'train')
else:
self.text_data = process_hf_dataset(
dataset=json_data,
tokenizer=tokenizer,
max_length=max_length,
dataset_map_fn=dataset_map_fn,
template_map_fn=template_map_fn,
split='train',
max_dataset_length=max_dataset_length,
remove_unused_columns=False,
pack_to_max_length=False,
with_image_token=True,
map_num_proc=num_proc, # because limited mem
)
self.image_folder = image_folder
size = image_processor.crop_size
if isinstance(size, int):
self.image_h, self.image_w = size, size
else:
self.image_w, self.image_h = size
if isinstance(image_processor, dict) or isinstance(
image_processor, Config) or isinstance(image_processor,
ConfigDict):
self.image_processor = BUILDER.build(image_processor)
else:
self.image_processor = image_processor
self.pad_image_to_square = pad_image_to_square
self.down_ratio = 1
self.repeats = repeats
self.tokenizer = tokenizer
def only_get_hf_map_infos(self):
ret = []
for json_data in self.json_datas:
ret.append({'file_name': json_data['file_name'],
'selected_labels': json_data['selected_labels']})
return ret
def json_file_preprocess(self, data_path):
paco_api = COCO(data_path)
all_classes = paco_api.loadCats(paco_api.getCatIds())
class_map_paco = {}
for cat in all_classes:
cat_split = cat["name"].strip().split(":")
if len(cat_split) == 1:
name = cat_split[0].split("_(")[0]
else:
assert len(cat_split) == 2
obj, part = cat_split
obj = obj.split("_(")[0]
part = part.split("_(")[0]
name = (obj, part)
class_map_paco[cat["id"]] = name
img_ids = paco_api.getImgIds()
self.classes = class_map_paco
self.coco_api = paco_api
img_infos = [self.coco_api.loadImgs([img_id])[0] for img_id in img_ids]
valid_img_infos = []
for img_info in img_infos:
annotation_ids = self.coco_api.getAnnIds(imgIds=img_info["id"])
annotations = self.coco_api.loadAnns(annotation_ids)
if not annotations:
continue
# sampled to max number as 5
sampled_anns = np.random.choice(annotations, 5, replace=False) if len(
annotations
) >= 5 else annotations
selected_labels = []
for ann in sampled_anns:
category_id = ann["category_id"]
sampled_cls = self.classes[category_id]
if isinstance(sampled_cls, tuple):
obj, part = sampled_cls
name = f"{obj} {part}" if random.random() < 0.5 else f"the {part} of the {obj}"
else:
name = sampled_cls
selected_labels.append(name)
img_info.update({"annotations": sampled_anns,
"selected_labels": selected_labels})
valid_img_infos.append(img_info)
return valid_img_infos
def __getitem__(self, index):
index = index % self.real_len()
data_dict = copy.deepcopy(self.text_data[index])
data_dict.update(self.json_datas[index])
assert 'image' in data_dict.keys()
if data_dict.get('image', None) is not None:
image_file = data_dict['image']
image_file = os.path.join(self.image_folder, image_file)
image = Image.open(image_file).convert('RGB')
ori_width, ori_height = image.size
if self.pad_image_to_square:
image = expand2square(
image,
tuple(
int(x * 255) for x in self.image_processor.image_mean))
image = self.image_processor.preprocess(
image, return_tensors='pt')['pixel_values'][0]
data_dict['pixel_values'] = image
# process and get masks
data_dict['masks'] = self.decode_mask(data_dict['annotations'])
if data_dict['masks'] is None:
return self.__getitem__(0)
else:
if hasattr(self.image_processor, 'crop_size'):
crop_size = self.image_processor.crop_size
else:
crop_size = self.image_processor.size
data_dict['pixel_values'] = torch.zeros(3, crop_size['height'],
crop_size['width'])
data_dict['masks'] = None
if self.lazy:
result = self.dataset_map_fn(data_dict)
data_dict.update(result)
result = self.template_map_fn(data_dict)
data_dict.update(result)
result = encode_fn(data_dict, tokenizer=self.tokenizer, max_length=self.max_length, with_image_token=True)
data_dict.update(result)
return data_dict
|