Spaces:
Running
on
Zero
Running
on
Zero
File size: 32,107 Bytes
2ada650 |
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 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 |
import os
import logging
import warnings
from minigpt4.common.registry import registry
from minigpt4.datasets.builders.base_dataset_builder import BaseDatasetBuilder
from minigpt4.datasets.datasets.laion_dataset import LaionDataset
from minigpt4.datasets.datasets.vg_dataset import ReferVisualGenomeDataset
from minigpt4.datasets.datasets.open_images import OpenImageDataset,OpenBboxToObjectDataset
from minigpt4.datasets.datasets.locna_dataset import LocNaCOCODataset
from minigpt4.datasets.datasets.llava_dataset import LlavaDetailDataset, LlavaReasonDataset, LlavaConversationDataset
from minigpt4.datasets.datasets.lvis_dataset import LVISBBOXDataset,LVISBboxToObjectDataset
from minigpt4.datasets.datasets.text_caps import TextCapBboxToObjectDataset, TextCapDataset
from minigpt4.datasets.datasets.coco_caption import COCOCapDataset,COCOCapEvalDataset
from minigpt4.datasets.datasets.coyo_dataset import COYOCaptionWDSDataset,COYOBoxToPhraseWDSDataset,COYOPhraseToBoxWDSDataset
# , COYOBBoxPhraseDataset
from minigpt4.datasets.datasets.grounded_detailed_image_caption_dataset import GroundedDetailDataset
from minigpt4.datasets.datasets.reasoning_dataset import ReasoningDataset
from minigpt4.datasets.datasets.video_datasets import CMDVideoDataset, WebVidDataset,VideoChatGPTDataset,Video_validation_Dataset
from minigpt4.datasets.datasets.cot import CoTDataset
from minigpt4.datasets.datasets.unnatural_instruction import UnnaturalDataset
from minigpt4.datasets.datasets.caption_reasoning import CaptionReasonDataset
from minigpt4.datasets.datasets.aok_vqa_reasoning_datasets import AOKVQAReasoningDataset
from minigpt4.datasets.datasets.paint_dataset import PaintPTCOCODataset, PaintRLCOCODataset, PaintPixelCOCODataset, SegReferCOCODataset, PaintLanRLOpaqueCOCODataset
from minigpt4.datasets.datasets.nav_dataset import NavR2RDataset
@registry.register_builder("yifan_reasoning")
class LlavaDetailBuilder(BaseDatasetBuilder):
train_dataset_cls = AOKVQAReasoningDataset
DATASET_CONFIG_DICT = {
"default": "configs/datasets/aokvqa_reasoning/defaults.yaml",
}
def build_datasets(self):
# at this point, all the annotations and image/videos should be all downloaded to the specified locations.
logging.info("Building datasets...")
self.build_processors()
build_info = self.config.build_info
datasets = dict()
# create datasets
dataset_cls = self.train_dataset_cls
datasets['train'] = dataset_cls(
vis_processor=self.vis_processors["train"],
text_processor=self.text_processors["train"],
ann_paths=build_info.ann_path,
vis_root=build_info.image_path,
)
return datasets
@registry.register_builder("caption_reasoning")
class CaptionReasoningBuilder(BaseDatasetBuilder):
train_dataset_cls = CaptionReasonDataset
DATASET_CONFIG_DICT = {
"default": "configs/datasets/mm_reasoning/mm_reasoning.yaml",
}
def build_datasets(self):
# at this point, all the annotations and image/videos should be all downloaded to the specified locations.
logging.info("Building datasets...")
self.build_processors()
build_info = self.config.build_info
datasets = dict()
# create datasets
dataset_cls = self.train_dataset_cls
# print("ann_path",build_info.ann_path)
# print("vis root",build_info.image_path )
datasets['train'] = dataset_cls(
vis_processor=self.vis_processors['train'],
text_processor=self.text_processors['train'],
ann_path=build_info.ann_path,
vis_root=build_info.image_path,
)
return datasets
@registry.register_builder("unnatural_instruction")
class UnnaturalInstructionBuilder(BaseDatasetBuilder):
train_dataset_cls = UnnaturalDataset
DATASET_CONFIG_DICT = {
"default": "configs/datasets/nlp/unnatural_instruction.yaml",
}
def build_datasets(self):
# at this point, all the annotations and image/videos should be all downloaded to the specified locations.
logging.info("Building datasets...")
self.build_processors()
build_info = self.config.build_info
datasets = dict()
# create datasets
dataset_cls = self.train_dataset_cls
datasets['train'] = dataset_cls(
text_processor=self.text_processors["train"],
ann_path=build_info.ann_path,
)
return datasets
@registry.register_builder("cot")
class CoTBuilder(BaseDatasetBuilder):
train_dataset_cls = CoTDataset
DATASET_CONFIG_DICT = {
"default": "configs/datasets/nlp/cot.yaml",
}
def build_datasets(self):
# at this point, all the annotations and image/videos should be all downloaded to the specified locations.
logging.info("Building datasets...")
self.build_processors()
build_info = self.config.build_info
datasets = dict()
# create datasets
dataset_cls = self.train_dataset_cls
datasets['train'] = dataset_cls(
text_processor=self.text_processors["train"],
ann_path=build_info.ann_path,
)
return datasets
@registry.register_builder("coco_caption")
class COCOCapBuilder(BaseDatasetBuilder):
train_dataset_cls = COCOCapDataset
eval_dataset_cls = COCOCapEvalDataset
DATASET_CONFIG_DICT = {
"default": "configs/datasets/coco/caption.yaml",
"eval": "configs/datasets/coco/caption.yaml",
}
@registry.register_builder("open_images")
class OpenImageBuilder(BaseDatasetBuilder):
train_dataset_cls = OpenImageDataset
DATASET_CONFIG_DICT = {"default": "configs/datasets/open_images/default.yaml"}
def _download_ann(self):
pass
def _download_vis(self):
pass
def build(self):
self.build_processors()
build_info = self.config.build_info
datasets = dict()
split = "train"
# create datasets
# [NOTE] return inner_datasets (wds.DataPipeline)
dataset_cls = self.train_dataset_cls
datasets[split] = dataset_cls(
vis_processor=self.vis_processors[split],
text_processor=self.text_processors[split],
location=build_info.storage,
).inner_dataset
return datasets
@registry.register_builder("open_images_bbox_to_object")
class OpenBboxToObjectuilder(BaseDatasetBuilder):
train_dataset_cls = OpenBboxToObjectDataset
DATASET_CONFIG_DICT = {"default": "configs/datasets/open_images/default_bbox.yaml"}
def _download_ann(self):
pass
def _download_vis(self):
pass
def build(self):
self.build_processors()
build_info = self.config.build_info
datasets = dict()
split = "train"
# create datasets
# [NOTE] return inner_datasets (wds.DataPipeline)
dataset_cls = self.train_dataset_cls
datasets[split] = dataset_cls(
vis_processor=self.vis_processors[split],
text_processor=self.text_processors[split],
location=build_info.storage,
).inner_dataset
return datasets
@registry.register_builder("lvis_images_bbox")
class LVISBBOxBuilder(BaseDatasetBuilder):
train_dataset_cls = LVISBBOXDataset
DATASET_CONFIG_DICT = {"default": "configs/datasets/lvis/default_bbox.yaml"}
def _download_ann(self):
pass
def _download_vis(self):
pass
def build(self):
self.build_processors()
build_info = self.config.build_info
datasets = dict()
split = "train"
# create datasets
# [NOTE] return inner_datasets (wds.DataPipeline)
dataset_cls = self.train_dataset_cls
datasets[split] = dataset_cls(
vis_processor=self.vis_processors[split],
text_processor=self.text_processors[split],
location=build_info.storage,
).inner_dataset
return datasets
@registry.register_builder("lvis_bbox_to_object")
class LVISBBoxToObjectBuilder(BaseDatasetBuilder):
train_dataset_cls = LVISBboxToObjectDataset
DATASET_CONFIG_DICT = {"default": "configs/datasets/lvis/bbox_to_object.yaml"}
def _download_ann(self):
pass
def _download_vis(self):
pass
def build(self):
self.build_processors()
build_info = self.config.build_info
datasets = dict()
split = "train"
# create datasets
# [NOTE] return inner_datasets (wds.DataPipeline)
dataset_cls = self.train_dataset_cls
datasets[split] = dataset_cls(
vis_processor=self.vis_processors[split],
text_processor=self.text_processors[split],
location=build_info.storage,
).inner_dataset
return datasets
@registry.register_builder("spatial_reasoning")
class ReasoningBuilder(BaseDatasetBuilder):
train_dataset_cls = ReasoningDataset
DATASET_CONFIG_DICT = {"default": "configs/datasets/reasoning/default.yaml"}
def _download_ann(self):
pass
def _download_vis(self):
pass
def build(self):
self.build_processors()
build_info = self.config.build_info
datasets = dict()
split = "train"
# create datasets
# [NOTE] return inner_datasets (wds.DataPipeline)
dataset_cls = self.train_dataset_cls
datasets[split] = dataset_cls(
vis_processor=self.vis_processors[split],
text_processor=self.text_processors[split],
ann_path=build_info.ann_path,
vis_root=build_info.image_path,
)
return datasets
@registry.register_builder("textcaps_caption")
class TextcapCaptionBuilder(BaseDatasetBuilder):
train_dataset_cls = TextCapDataset
DATASET_CONFIG_DICT = {"default": "configs/datasets/textcaps/caption.yaml"}
def _download_ann(self):
pass
def _download_vis(self):
pass
def build(self):
self.build_processors()
build_info = self.config.build_info
datasets = dict()
split = "train"
# create datasets
# [NOTE] return inner_datasets (wds.DataPipeline)
dataset_cls = self.train_dataset_cls
datasets[split] = dataset_cls(
vis_processor=self.vis_processors[split],
text_processor=self.text_processors[split],
ann_path=build_info.ann_path,
vis_root=build_info.image_path,
)
return datasets
@registry.register_builder("coyo_caption")
class CoyoCaptionBuilder(BaseDatasetBuilder):
train_dataset_cls = COYOCaptionWDSDataset
DATASET_CONFIG_DICT = {"default": "configs/datasets/coyo/default.yaml"}
def _download_ann(self):
pass
def _download_vis(self):
pass
def build(self):
self.build_processors()
build_info = self.config.build_info
datasets = dict()
split = "train"
# create datasets
# [NOTE] return inner_datasets (wds.DataPipeline)
dataset_cls = self.train_dataset_cls
datasets[split] = dataset_cls(
vis_processor=self.vis_processors[split],
text_processor=self.text_processors[split],
location=build_info.storage,
).inner_dataset
return datasets
@registry.register_builder("coyo_bbox_phrase")
class CoyoBboxPhraseBuilder(BaseDatasetBuilder):
train_dataset_cls = COYOBoxToPhraseWDSDataset
DATASET_CONFIG_DICT = {"default": "configs/datasets/coyo/bbox_phrase.yaml"}
def _download_ann(self):
pass
def _download_vis(self):
pass
def build(self):
self.build_processors()
build_info = self.config.build_info
datasets = dict()
split = "train"
# create datasets
# [NOTE] return inner_datasets (wds.DataPipeline)
dataset_cls = self.train_dataset_cls
datasets[split] = dataset_cls(
vis_processor=self.vis_processors[split],
text_processor=self.text_processors[split],
location=build_info.storage,
).inner_dataset
return datasets
@registry.register_builder("coyo_phrase_bbox")
class CoyoBboxPhraseBuilder(BaseDatasetBuilder):
train_dataset_cls = COYOPhraseToBoxWDSDataset
DATASET_CONFIG_DICT = {"default": "configs/datasets/coyo/phrase_bbox.yaml"}
def _download_ann(self):
pass
def _download_vis(self):
pass
def build(self):
self.build_processors()
build_info = self.config.build_info
datasets = dict()
split = "train"
# create datasets
# [NOTE] return inner_datasets (wds.DataPipeline)
dataset_cls = self.train_dataset_cls
datasets[split] = dataset_cls(
vis_processor=self.vis_processors[split],
text_processor=self.text_processors[split],
location=build_info.storage,
).inner_dataset
return datasets
@registry.register_builder("textcaps_ocr")
class TextcapCaptionBuilder(BaseDatasetBuilder):
train_dataset_cls = TextCapBboxToObjectDataset
DATASET_CONFIG_DICT = {"default": "configs/datasets/textcaps/ocr.yaml"}
def _download_ann(self):
pass
def _download_vis(self):
pass
def build(self):
self.build_processors()
build_info = self.config.build_info
datasets = dict()
split = "train"
# create datasets
# [NOTE] return inner_datasets (wds.DataPipeline)
dataset_cls = self.train_dataset_cls
datasets[split] = dataset_cls(
vis_processor=self.vis_processors[split],
text_processor=self.text_processors[split],
ann_path=build_info.ann_path,
vis_root=build_info.image_path,
)
return datasets
@registry.register_builder("laion")
class LaionBuilder(BaseDatasetBuilder):
train_dataset_cls = LaionDataset
DATASET_CONFIG_DICT = {"default": "configs/datasets/laion/defaults.yaml"}
def _download_ann(self):
pass
def _download_vis(self):
pass
def build(self):
self.build_processors()
build_info = self.config.build_info
datasets = dict()
split = "train"
# create datasets
# [NOTE] return inner_datasets (wds.DataPipeline)
dataset_cls = self.train_dataset_cls
datasets[split] = dataset_cls(
vis_processor=self.vis_processors[split],
text_processor=self.text_processors[split],
location=build_info.storage,
).inner_dataset
return datasets
@registry.register_builder("locna_coco")
class LocNaCOCOBuilder(BaseDatasetBuilder):
train_dataset_cls = LocNaCOCODataset
DATASET_CONFIG_DICT = {
"default": "configs/datasets/coco/defaults_locna.yaml",
}
def build_datasets(self):
# at this point, all the annotations and image/videos should be all downloaded to the specified locations.
logging.info("Building datasets...")
self.build_processors()
build_info = self.config.build_info
ann_paths = build_info.annotations.train.storage
datasets = dict()
for ann_path in ann_paths:
if not os.path.exists(ann_path):
warnings.warn("storage path {} does not exist.".format(ann_path))
# create datasets
dataset_cls = self.train_dataset_cls
datasets['train'] = dataset_cls(
vis_processor=self.vis_processors["train"],
text_processor=self.text_processors["train"],
ann_paths=ann_paths,
vis_root=build_info.images.storage,
)
return datasets
@registry.register_builder("llava_detail")
class LlavaDetailBuilder(BaseDatasetBuilder):
train_dataset_cls = LlavaDetailDataset
DATASET_CONFIG_DICT = {
"default": "configs/datasets/llava/detail.yaml",
}
def build_datasets(self):
# at this point, all the annotations and image/videos should be all downloaded to the specified locations.
logging.info("Building datasets...")
self.build_processors()
build_info = self.config.build_info
datasets = dict()
# create datasets
dataset_cls = self.train_dataset_cls
datasets['train'] = dataset_cls(
vis_processor=self.vis_processors["train"],
text_processor=self.text_processors["train"],
ann_path=build_info.ann_path,
vis_root=build_info.image_path,
)
return datasets
@registry.register_builder("grounded_detailed_image_caption")
class GroundedCaptionBuilder(BaseDatasetBuilder):
train_dataset_cls = GroundedDetailDataset
DATASET_CONFIG_DICT = {
"default": "configs/datasets/grounded_image_caption/default.yaml",
}
def build_datasets(self):
# at this point, all the annotations and image/videos should be all downloaded to the specified locations.
logging.info("Building datasets...")
self.build_processors()
build_info = self.config.build_info
datasets = dict()
# create datasets
dataset_cls = self.train_dataset_cls
datasets['train'] = dataset_cls(
vis_processor=self.vis_processors["train"],
text_processor=self.text_processors["train"],
ann_path=build_info.ann_path,
vis_root=build_info.image_path,
)
return datasets
@registry.register_builder("llava_reason")
class LlavaReasonBuilder(BaseDatasetBuilder):
train_dataset_cls = LlavaReasonDataset
DATASET_CONFIG_DICT = {
"default": "configs/datasets/llava/reason.yaml",
}
def build_datasets(self):
# at this point, all the annotations and image/videos should be all downloaded to the specified locations.
logging.info("Building datasets...")
self.build_processors()
build_info = self.config.build_info
datasets = dict()
# create datasets
dataset_cls = self.train_dataset_cls
datasets['train'] = dataset_cls(
vis_processor=self.vis_processors["train"],
text_processor=self.text_processors["train"],
ann_path=build_info.ann_path,
vis_root=build_info.image_path,
)
return datasets
@registry.register_builder("llava_conversation")
class LlavaReasonBuilder(BaseDatasetBuilder):
train_dataset_cls = LlavaConversationDataset
DATASET_CONFIG_DICT = {
"default": "configs/datasets/llava/conversation.yaml",
}
def build_datasets(self):
# at this point, all the annotations and image/videos should be all downloaded to the specified locations.
logging.info("Building datasets...")
self.build_processors()
build_info = self.config.build_info
datasets = dict()
# create datasets
dataset_cls = self.train_dataset_cls
datasets['train'] = dataset_cls(
vis_processor=self.vis_processors["train"],
text_processor=self.text_processors["train"],
ann_path=build_info.ann_path,
vis_root=build_info.image_path,
)
return datasets
class AllRefCOCOBuilder(BaseDatasetBuilder):
def build_datasets(self):
# at this point, all the annotations and image/videos should be all downloaded to the specified locations.
logging.info("Building datasets...")
self.build_processors()
build_info = self.config.build_info
image_path = build_info.image_path
ann_path = build_info.ann_path
datasets = dict()
if not os.path.exists(image_path):
warnings.warn("image path {} does not exist.".format(image_path))
if not os.path.exists(ann_path):
warnings.warn("ann path {} does not exist.".format(ann_path))
# create datasets
dataset_cls = self.train_dataset_cls
datasets['train'] = dataset_cls(
vis_processor=self.vis_processors["train"],
text_processor=self.text_processors["train"],
ann_path=ann_path,
vis_root=image_path,
dataset=build_info.dataset,
splitBy=build_info.splitBy
)
return datasets
@registry.register_builder("refvg")
class RefVisualGenomeBuilder(BaseDatasetBuilder):
train_dataset_cls = ReferVisualGenomeDataset
DATASET_CONFIG_DICT = {
"default": "configs/datasets/vg/ref.yaml",
}
def build_datasets(self):
# at this point, all the annotations and image/videos should be all downloaded to the specified locations.
logging.info("Building datasets...")
self.build_processors()
build_info = self.config.build_info
data_dir = build_info.data_dir
datasets = dict()
# create datasets
dataset_cls = self.train_dataset_cls
datasets['train'] = dataset_cls(
vis_processor=self.vis_processors["train"],
text_processor=self.text_processors["train"],
data_dir=data_dir,
)
return datasets
@registry.register_builder("cmd_video")
class CMDVideoBuilder(BaseDatasetBuilder):
train_dataset_cls = CMDVideoDataset
DATASET_CONFIG_DICT = {
"default": "configs/datasets/cmd_video/default.yaml",
}
def build_datasets(self):
# download, split, etc...
# only called on 1 GPU/TPU in distributed
self.build_processors()
build_info = self.config.build_info
datasets = dict()
# create datasets
dataset_cls = self.train_dataset_cls
datasets['train'] = dataset_cls(
vis_processor=self.vis_processors["train"],
text_processor=self.text_processors["train"],
vis_root=build_info.vis_root,
ann_paths=build_info.ann_paths,
cc_path=build_info.cc_path
)
return datasets
@registry.register_builder("webvid")
class WebVidBuilder(BaseDatasetBuilder):
train_dataset_cls = WebVidDataset
DATASET_CONFIG_DICT = {
"default": "configs/datasets/webvid/default.yaml",
}
def build_datasets(self):
# download, split, etc...
# only called on 1 GPU/TPU in distributed
self.build_processors()
build_info = self.config.build_info
datasets = dict()
# create datasets
dataset_cls = self.train_dataset_cls
datasets['train'] = dataset_cls(
vis_processor=self.vis_processors["train"],
text_processor=self.text_processors["train"],
vis_root=build_info.vis_root,
ann_paths=build_info.ann_paths,
subtitles_path=build_info.subtitles_path,
)
return datasets
@registry.register_builder("video_chatgpt")
class VideoChatGPTBuilder(BaseDatasetBuilder):
train_dataset_cls = VideoChatGPTDataset
eval_dataset_cls=Video_validation_Dataset
DATASET_CONFIG_DICT = {
"default": "configs/datasets/video_chatgpt/default.yaml",
}
print(DATASET_CONFIG_DICT)
def build_datasets(self):
# download, split, etc...
# only called on 1 GPU/TPU in distributed
self.build_processors()
build_info = self.config.build_info
datasets = dict()
# create datasets
dataset_cls = self.train_dataset_cls
datasets['train'] = dataset_cls(
vis_processor=self.vis_processors["train"],
text_processor=self.text_processors["train"],
vis_root=build_info.vis_root,
ann_paths=build_info.ann_paths,
)
return datasets
@registry.register_builder("r2r")
class NavR2RBuilder(BaseDatasetBuilder):
train_dataset_cls = NavR2RDataset
DATASET_CONFIG_DICT = {
"default": "configs/datasets/nav/r2r.yaml",
}
def build_datasets(self):
# at this point, all the annotations and image/videos should be all downloaded to the specified locations.
logging.info("Building datasets...")
self.build_processors()
build_info = self.config.build_info
datasets = dict()
# create datasets
dataset_cls = self.train_dataset_cls
datasets['train'] = dataset_cls(
vis_processor=self.vis_processors["train"],
text_processor=self.text_processors["train"],
data_root=build_info.data_root
)
return datasets
@registry.register_builder("paintcoco")
class PaintPTCOCOBuilder(BaseDatasetBuilder):
train_dataset_cls = PaintPTCOCODataset
DATASET_CONFIG_DICT = {
"default": "configs/datasets/paint/coco.yaml",
}
def build_datasets(self):
# at this point, all the annotations and image/videos should be all downloaded to the specified locations.
logging.info("Building datasets...")
self.build_processors()
build_info = self.config.build_info
img_root = build_info.img_root
stroke_root = build_info.stroke_root
max_step = build_info.max_step
datasets = dict()
# create datasets
dataset_cls = self.train_dataset_cls
datasets['train'] = dataset_cls(
vis_processor=self.vis_processors["train"],
text_processor=self.text_processors["train"],
img_root=img_root,
stroke_root=stroke_root,
max_step=max_step
)
return datasets
class PaintRLCOCOBuilderBase(BaseDatasetBuilder):
train_dataset_cls = PaintRLCOCODataset
def build_datasets(self):
# at this point, all the annotations and image/videos should be all downloaded to the specified locations.
logging.info("Building datasets...")
self.build_processors()
build_info = self.config.build_info
img_root = build_info.img_root
stroke_root = build_info.stroke_root
max_step = build_info.max_step
single_stroke = build_info.single_stroke
datasets = dict()
# create datasets
dataset_cls = self.train_dataset_cls
datasets['train'] = dataset_cls(
vis_processor=self.vis_processors["train"],
text_processor=self.text_processors["train"],
img_root=img_root,
stroke_root=stroke_root,
max_step=max_step,
single_stroke=single_stroke
)
return datasets
@registry.register_builder("paintrlcoco")
class PaintRLCOCOBuilder(PaintRLCOCOBuilderBase):
DATASET_CONFIG_DICT = {
"default": "configs/datasets/paint/rl_coco.yaml",
}
@registry.register_builder("paintrlscoco")
class PaintRLSCOCOBuilder(PaintRLCOCOBuilderBase):
DATASET_CONFIG_DICT = {
"default": "configs/datasets/paint/rls_coco.yaml",
}
@registry.register_builder("paintlanrlsococo")
class PaintLanRLOpaqueCOCOBuilder(BaseDatasetBuilder):
train_dataset_cls = PaintLanRLOpaqueCOCODataset
DATASET_CONFIG_DICT = {
"default": "configs/datasets/paint/lan_rls_o_coco.yaml",
}
def build_datasets(self):
# at this point, all the annotations and image/videos should be all downloaded to the specified locations.
logging.info("Building datasets...")
self.build_processors()
build_info = self.config.build_info
img_root = build_info.img_root
stroke_root = build_info.stroke_root
max_step = build_info.max_step
single_stroke = build_info.single_stroke
ann_path = build_info.ann_path
datasets = dict()
# create datasets
dataset_cls = self.train_dataset_cls
datasets['train'] = dataset_cls(
vis_processor=self.vis_processors["train"],
text_processor=self.text_processors["train"],
img_root=img_root,
stroke_root=stroke_root,
ann_path=ann_path,
max_step=max_step,
single_stroke=single_stroke
)
return datasets
class PaintPixelCOCOBuilder(BaseDatasetBuilder):
train_dataset_cls = PaintPixelCOCODataset
def build(self):
"""
Create by split datasets inheriting torch.utils.data.Datasets.
# build() can be dataset-specific. Overwrite to customize.
"""
self.build_processors()
build_info = self.config.build_info
ann_info = build_info.annotations
vis_info = build_info.get(self.data_type)
res = build_info.res
datasets = dict()
split = 'train'
# annotation path
ann_paths = ann_info.get(split).storage
if isinstance(ann_paths, str):
ann_paths = [ann_paths]
# visual data storage path
vis_path = os.path.join(vis_info.storage, split)
# create datasets
dataset_cls = self.train_dataset_cls
datasets[split] = dataset_cls(
vis_processor=self.vis_processors["train"],
text_processor=self.text_processors["train"],
ann_paths=ann_paths,
vis_root=vis_path,
res=res
)
return datasets
@registry.register_builder("paintpixelcoco32")
class PaintPixelCOCO32Builder(PaintPixelCOCOBuilder):
train_dataset_cls = PaintPixelCOCODataset
DATASET_CONFIG_DICT = {
"default": "configs/datasets/paint/pixel_coco_32.yaml",
}
@registry.register_builder("paintpixelcoco64")
class PaintPixelCOCO64Builder(PaintPixelCOCOBuilder):
train_dataset_cls = PaintPixelCOCODataset
DATASET_CONFIG_DICT = {
"default": "configs/datasets/paint/pixel_coco_64.yaml",
}
class AllSegRefCOCOBuilder(BaseDatasetBuilder):
train_dataset_cls = SegReferCOCODataset
def build_datasets(self):
# at this point, all the annotations and image/videos should be all downloaded to the specified locations.
logging.info("Building datasets...")
self.build_processors()
build_info = self.config.build_info
image_path = build_info.image_path
ann_path = build_info.ann_path
res = build_info.res
datasets = dict()
if not os.path.exists(image_path):
warnings.warn("image path {} does not exist.".format(image_path))
if not os.path.exists(ann_path):
warnings.warn("ann path {} does not exist.".format(ann_path))
# create datasets
dataset_cls = self.train_dataset_cls
datasets['train'] = dataset_cls(
vis_processor=self.vis_processors["train"],
text_processor=self.text_processors["train"],
ann_path=ann_path,
vis_root=image_path,
res=res,
dataset=build_info.dataset,
splitBy=build_info.splitBy
)
return datasets
@registry.register_builder("segrefcoco32")
class SegRefCOCO32Builder(AllSegRefCOCOBuilder):
DATASET_CONFIG_DICT = {
"default": "configs/datasets/paint/segrefcoco32.yaml",
}
@registry.register_builder("segrefcocop32")
class SegRefCOCOP32Builder(AllSegRefCOCOBuilder):
DATASET_CONFIG_DICT = {
"default": "configs/datasets/paint/segrefcocop32.yaml",
}
@registry.register_builder("segrefcocog32")
class SegRefCOCOG32Builder(AllSegRefCOCOBuilder):
DATASET_CONFIG_DICT = {
"default": "configs/datasets/paint/segrefcocog32.yaml",
}
@registry.register_builder("segrefcoco64")
class SegRefCOCO64Builder(AllSegRefCOCOBuilder):
DATASET_CONFIG_DICT = {
"default": "configs/datasets/paint/segrefcoco64.yaml",
}
@registry.register_builder("segrefcocop64")
class SegRefCOCOP64Builder(AllSegRefCOCOBuilder):
DATASET_CONFIG_DICT = {
"default": "configs/datasets/paint/segrefcocop64.yaml",
}
@registry.register_builder("segrefcocog64")
class SegRefCOCOG64Builder(AllSegRefCOCOBuilder):
DATASET_CONFIG_DICT = {
"default": "configs/datasets/paint/segrefcocog64.yaml",
}
|