Some checks failed
Self-hosted runner (nightly-past-ci-caller) / Get number (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.11 (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.10 (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.9 (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.8 (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.7 (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.6 (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.5 (push) Has been cancelled
Self-hosted runner (benchmark) / Benchmark (aws-g5-4xlarge-cache) (push) Has been cancelled
Build documentation / build (push) Has been cancelled
Build documentation / build_other_lang (push) Has been cancelled
CodeQL Security Analysis / CodeQL Analysis (push) Has been cancelled
New model PR merged notification / Notify new model (push) Has been cancelled
PR CI / pr-ci (push) Has been cancelled
Slow tests on important models (on Push - A10) / Get all modified files (push) Has been cancelled
Secret Leaks / trufflehog (push) Has been cancelled
Update Transformers metadata / build_and_package (push) Has been cancelled
Slow tests on important models (on Push - A10) / Model CI (push) Has been cancelled
Check Tiny Models / Check tiny models (push) Has been cancelled
Self-hosted runner (Intel Gaudi3 scheduled CI caller) / Model CI (push) Has been cancelled
Self-hosted runner (Intel Gaudi3 scheduled CI caller) / Pipeline CI (push) Has been cancelled
Self-hosted runner (Intel Gaudi3 scheduled CI caller) / Example CI (push) Has been cancelled
Self-hosted runner (Intel Gaudi3 scheduled CI caller) / DeepSpeed CI (push) Has been cancelled
Self-hosted runner (Intel Gaudi3 scheduled CI caller) / Trainer/FSDP CI (push) Has been cancelled
Nvidia CI - Flash Attn / Setup (push) Has been cancelled
Nvidia CI - Flash Attn / Model CI (push) Has been cancelled
Nvidia CI / Setup (push) Has been cancelled
Nvidia CI / Model CI (push) Has been cancelled
Nvidia CI / Torch pipeline CI (push) Has been cancelled
Nvidia CI / Example CI (push) Has been cancelled
Nvidia CI / Trainer/FSDP CI (push) Has been cancelled
Nvidia CI / DeepSpeed CI (push) Has been cancelled
Nvidia CI / Quantization CI (push) Has been cancelled
Nvidia CI / Kernels CI (push) Has been cancelled
Doctests / Setup (push) Has been cancelled
Doctests / Call doctest jobs (push) Has been cancelled
Doctests / Send results to webhook (push) Has been cancelled
Extras Smoke Test / Get supported Python versions (push) Has been cancelled
Extras Smoke Test / Test extras on Python ${{ matrix.python-version }} (push) Has been cancelled
Extras Smoke Test / Check Slack token availability (push) Has been cancelled
Extras Smoke Test / Notify failures to Slack (push) Has been cancelled
Self-hosted runner (AMD scheduled CI caller) / Trigger Scheduled AMD CI (push) Has been cancelled
Stale Bot / Close Stale Issues (push) Has been cancelled
515 lines
22 KiB
Python
515 lines
22 KiB
Python
# Copyright 2023 Microsoft Research and The HuggingFace Inc. team. All rights reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
import os
|
|
import unittest
|
|
from tempfile import TemporaryDirectory
|
|
|
|
import numpy as np
|
|
import pytest
|
|
|
|
from transformers.image_utils import load_image
|
|
from transformers.testing_utils import (
|
|
get_tests_dir,
|
|
require_sentencepiece,
|
|
require_tokenizers,
|
|
require_torch,
|
|
require_vision,
|
|
)
|
|
from transformers.tokenization_utils_sentencepiece import SentencePieceExtractor
|
|
from transformers.utils import is_vision_available
|
|
|
|
from ...test_processing_common import ProcessorTesterMixin, url_to_local_path
|
|
|
|
|
|
if is_vision_available():
|
|
from PIL import Image
|
|
|
|
from transformers import (
|
|
AutoProcessor,
|
|
CLIPImageProcessor,
|
|
Kosmos2Processor,
|
|
XLMRobertaTokenizer,
|
|
)
|
|
|
|
|
|
SAMPLE_VOCAB = get_tests_dir("fixtures/test_sentencepiece.model")
|
|
|
|
|
|
@require_sentencepiece
|
|
@require_tokenizers
|
|
@require_vision
|
|
class Kosmos2ProcessorTest(ProcessorTesterMixin, unittest.TestCase):
|
|
processor_class = Kosmos2Processor
|
|
|
|
@classmethod
|
|
def _setup_tokenizer(cls):
|
|
# We have a SentencePiece fixture for testing
|
|
extractor = SentencePieceExtractor(SAMPLE_VOCAB)
|
|
_, vocab_scores, _ = extractor.extract()
|
|
return XLMRobertaTokenizer(vocab=vocab_scores)
|
|
|
|
def get_tokenizer(self, **kwargs):
|
|
return AutoProcessor.from_pretrained(self.tmpdirname, **kwargs).tokenizer
|
|
|
|
def get_image_processor(self, **kwargs):
|
|
return AutoProcessor.from_pretrained(self.tmpdirname, **kwargs).image_processor
|
|
|
|
@classmethod
|
|
def _setup_image_processor(cls):
|
|
image_processor_class = cls._get_component_class_from_processor("image_processor")
|
|
return image_processor_class(do_center_crop=False)
|
|
|
|
@unittest.skip("Kosmos2Processor adds special tokens to the text")
|
|
def test_tokenizer_defaults(self):
|
|
pass
|
|
|
|
def test_image_processor_load_save_reload(self):
|
|
# make sure load from Hub repo. -> save -> reload locally work
|
|
image_processor = CLIPImageProcessor.from_pretrained("microsoft/kosmos-2-patch14-224")
|
|
with TemporaryDirectory() as tmp_dir:
|
|
image_processor.save_pretrained(tmp_dir)
|
|
reloaded_image_processor = CLIPImageProcessor.from_pretrained(tmp_dir)
|
|
assert image_processor.to_dict() == reloaded_image_processor.to_dict()
|
|
assert image_processor.to_json_string() == reloaded_image_processor.to_json_string()
|
|
|
|
@require_torch
|
|
def test_full_processor(self):
|
|
url = url_to_local_path("https://huggingface.co/microsoft/kosmos-2-patch14-224/resolve/main/two_dogs.jpg")
|
|
|
|
processor = Kosmos2Processor.from_pretrained("microsoft/kosmos-2-patch14-224")
|
|
|
|
# test with different input formats.
|
|
# fmt: off
|
|
texts = [
|
|
# no phrase
|
|
"<grounding> Two puppies sit in a field of grass.",
|
|
# 1 phrase
|
|
"<grounding> <phrase> Two puppies </phrase> sit in a field of grass.",
|
|
# 2 phrases
|
|
"<grounding> <phrase> Two puppies </phrase> sit in a field of <phrase> grass </phrase>.",
|
|
# 2 phrases: bboxes already specified for the 1st phrase
|
|
"<grounding> <phrase> Two puppies </phrase> <object> <patch_index_0079> <patch_index_1016> </delimiter_of_multi_objects/> <patch_index_0135> <patch_index_1008> </object> sit in a field of <phrase> grass </phrase>.",
|
|
]
|
|
# fmt: on
|
|
|
|
image = load_image(url)
|
|
# To match the official (microsoft) Kosmos-2 demo from which the expected values here are grabbed
|
|
image_path = os.path.join(self.tmpdirname, "image.jpg")
|
|
image.save(image_path)
|
|
image = Image.open(image_path)
|
|
|
|
# fmt: off
|
|
bboxes = [
|
|
[None, []],
|
|
[[None], [[]], [(79, 1016)], [[(79, 1016)]], [[(79, 1016), (135, 1008)]]],
|
|
[[[(79, 1016), (135, 1008)], None], [[(79, 1016), (135, 1008)], []], [[(79, 1016), (135, 1008)], (480, 1023)], [[(79, 1016), (135, 1008)], [(480, 1023)]]],
|
|
[[None, [(480, 1023)]]],
|
|
]
|
|
# fmt: on
|
|
|
|
batch_image = [image] * 4
|
|
batch_text = [texts[0], texts[1], texts[1], texts[2]]
|
|
batch_bboxes = [
|
|
None, # no phrase
|
|
[[]], # 1 phrase: no bbox
|
|
[(79, 1016)], # 1 phrase: 1 bbox
|
|
[[(79, 1016), (135, 1008)], (480, 1023)], # 2 phrase: 2 bboxes + 1 bbox
|
|
]
|
|
|
|
# fmt: off
|
|
expected_input_ids = [
|
|
[0, 64012, 1264, 17772, 1357, 12, 10, 770, 9, 4464, 4, 2],
|
|
[0, 64012, 64007, 1264, 17772, 64008, 1357, 12, 10, 770, 9, 4464, 4, 2],
|
|
[0, 64012, 64007, 1264, 17772, 64008, 64009, 64092, 65029, 64010, 1357, 12, 10, 770, 9, 4464, 4, 2],
|
|
[0, 64012, 64007, 1264, 17772, 64008, 64009, 64092, 65029, 64011, 64148, 65021, 64010, 1357, 12, 10, 770, 9, 4464, 4, 2],
|
|
[0, 64012, 64007, 1264, 17772, 64008, 64009, 64092, 65029, 64011, 64148, 65021, 64010, 1357, 12, 10, 770, 9, 64007, 4464, 64008, 106, 4, 2],
|
|
[0, 64012, 64007, 1264, 17772, 64008, 64009, 64092, 65029, 64011, 64148, 65021, 64010, 1357, 12, 10, 770, 9, 64007, 4464, 64008, 64009, 64493, 65036, 64010, 106, 4, 2],
|
|
]
|
|
# fmt: on
|
|
|
|
EXPECTED_PIXEL_VALUES_1 = np.array(
|
|
[
|
|
[
|
|
[-0.6535852551460266, -0.6389868259429932, -0.6243883967399597],
|
|
[-0.6535852551460266, -0.6389868259429932, -0.6243883967399597],
|
|
[-0.6243883967399597, -0.6243883967399597, -0.5951915383338928],
|
|
],
|
|
[
|
|
[-0.20629698038101196, -0.19128920137882233, -0.19128920137882233],
|
|
[-0.20629698038101196, -0.19128920137882233, -0.17628143727779388],
|
|
[-0.2213047444820404, -0.20629698038101196, -0.16127367317676544],
|
|
],
|
|
[
|
|
[-0.5843556523323059, -0.5701355338096619, -0.5701355338096619],
|
|
[-0.5843556523323059, -0.5701355338096619, -0.5559154152870178],
|
|
[-0.5843556523323059, -0.5559154152870178, -0.5416953563690186],
|
|
],
|
|
]
|
|
)
|
|
EXPECTED_PIXEL_VALUES_2 = np.array(
|
|
[
|
|
[
|
|
[-0.4346088469028473, -0.47840413451194763, -0.7849710583686829],
|
|
[-0.5221993923187256, -0.5076009631156921, -0.755774199962616],
|
|
[-0.5221993923187256, -0.5076009631156921, -0.7411757707595825],
|
|
],
|
|
[
|
|
[-0.2813358008861542, -0.2963435649871826, -0.431413471698761],
|
|
[-0.26632803678512573, -0.2963435649871826, -0.4764367938041687],
|
|
[-0.2213047444820404, -0.2813358008861542, -0.49144455790519714],
|
|
],
|
|
[
|
|
[-0.5701355338096619, -0.641235888004303, -0.7549964189529419],
|
|
[-0.5843556523323059, -0.641235888004303, -0.7834365367889404],
|
|
[-0.5559154152870178, -0.641235888004303, -0.7834365367889404],
|
|
],
|
|
]
|
|
)
|
|
|
|
def check(texts, bboxes, expected_input_ids):
|
|
outputs = processor(images=None, text=texts, bboxes=bboxes, add_eos_token=True)
|
|
self.assertListEqual(outputs.input_ids, expected_input_ids)
|
|
|
|
# no phrase
|
|
check(texts[0], bboxes[0][0], expected_input_ids[0])
|
|
|
|
# no phrase
|
|
check(texts[0], bboxes[0][1], expected_input_ids[0])
|
|
|
|
# 1 phrase: no bbox
|
|
check(texts[1], bboxes[1][0], expected_input_ids[1])
|
|
|
|
# 1 phrase: no bbox
|
|
check(texts[1], bboxes[1][1], expected_input_ids[1])
|
|
|
|
# 1 phrase: 1 bbox
|
|
check(texts[1], bboxes[1][2], expected_input_ids[2])
|
|
|
|
# 1 phrase: 1 bbox
|
|
check(texts[1], bboxes[1][3], expected_input_ids[2])
|
|
|
|
# 1 phrase: 2 bboxes
|
|
check(texts[1], bboxes[1][4], expected_input_ids[3])
|
|
|
|
# could not contain `[None]`
|
|
with pytest.raises(ValueError):
|
|
_ = processor.preprocess_examples(images=None, texts=texts[1], bboxes=[[None]])
|
|
|
|
# 2 phrase: 2 bboxes + no bbox
|
|
check(texts[2], bboxes[2][0], expected_input_ids[4])
|
|
|
|
# 2 phrase: 2 bboxes + no bbox
|
|
check(texts[2], bboxes[2][1], expected_input_ids[4])
|
|
|
|
# 2 phrase: 2 bboxes + 1 bbox
|
|
check(texts[2], bboxes[2][2], expected_input_ids[5])
|
|
|
|
# 2 phrase: 2 bboxes + 1 bbox
|
|
check(texts[2], bboxes[2][3], expected_input_ids[5])
|
|
|
|
# 2 phrase: no box (as already specified in the text) + 1 bbox
|
|
check(texts[3], bboxes[3][0], expected_input_ids[5])
|
|
|
|
# could not contain `[None]`
|
|
with pytest.raises(ValueError):
|
|
_ = processor.preprocess_examples(images=None, texts=texts[2], bboxes=[[(79, 1016), (135, 1008)], [None]])
|
|
|
|
# test batch
|
|
outputs = processor(
|
|
images=None,
|
|
text=batch_text,
|
|
bboxes=batch_bboxes,
|
|
add_eos_token=True,
|
|
)
|
|
self.assertListEqual(
|
|
outputs.input_ids,
|
|
[expected_input_ids[0], expected_input_ids[1], expected_input_ids[2], expected_input_ids[5]],
|
|
)
|
|
|
|
# test batch with padding (without `return_tensors`)
|
|
outputs = processor(
|
|
images=None,
|
|
text=batch_text,
|
|
bboxes=batch_bboxes,
|
|
padding=True,
|
|
add_eos_token=True,
|
|
)
|
|
# padding on the right
|
|
self.assertListEqual(
|
|
outputs.input_ids[0],
|
|
expected_input_ids[0] + [1] * (len(expected_input_ids[5]) - len(expected_input_ids[0])),
|
|
)
|
|
self.assertListEqual(
|
|
outputs.attention_mask[0],
|
|
[1] * len(expected_input_ids[0]) + [0] * (len(expected_input_ids[5]) - len(expected_input_ids[0])),
|
|
)
|
|
# no padding for the longest sequence
|
|
self.assertListEqual(outputs.input_ids[-1], expected_input_ids[5])
|
|
self.assertListEqual(outputs.attention_mask[-1], [1] * len(expected_input_ids[5]))
|
|
|
|
# test batch with padding (with `return_tensors`)
|
|
outputs = processor(
|
|
images=None,
|
|
text=batch_text,
|
|
bboxes=batch_bboxes,
|
|
return_tensors="pt",
|
|
padding=True,
|
|
add_eos_token=True,
|
|
)
|
|
# padding on the right
|
|
self.assertListEqual(
|
|
outputs.input_ids.numpy().tolist()[0],
|
|
expected_input_ids[0] + [1] * (len(expected_input_ids[5]) - len(expected_input_ids[0])),
|
|
)
|
|
self.assertListEqual(
|
|
outputs.attention_mask.numpy().tolist()[0],
|
|
[1] * len(expected_input_ids[0]) + [0] * (len(expected_input_ids[5]) - len(expected_input_ids[0])),
|
|
)
|
|
# no padding for the longest sequence
|
|
self.assertListEqual(outputs.input_ids.numpy().tolist()[-1], expected_input_ids[5])
|
|
self.assertListEqual(outputs.attention_mask.numpy().tolist()[-1], [1] * len(expected_input_ids[5]))
|
|
|
|
# test with image
|
|
num_image_tokens = 64
|
|
|
|
outputs = processor(images=image, text=texts[0], bboxes=None, add_eos_token=True)
|
|
self.assertTupleEqual(outputs.pixel_values[0].shape, (3, 224, 224))
|
|
self.assertListEqual(
|
|
outputs.input_ids,
|
|
[0, 64003] + list(range(4, 4 + num_image_tokens)) + [64004] + expected_input_ids[0][1:],
|
|
)
|
|
self.assertListEqual(
|
|
outputs.image_embeds_position_mask,
|
|
[0] * 2 + [1] * num_image_tokens + [0] + [0] * (len(expected_input_ids[0]) - 1),
|
|
)
|
|
np.testing.assert_allclose(outputs.pixel_values[0][:3, :3, :3], EXPECTED_PIXEL_VALUES_1, atol=1e-4)
|
|
np.testing.assert_allclose(outputs.pixel_values[0][:3, -3:, -3:], EXPECTED_PIXEL_VALUES_2, atol=1e-4)
|
|
|
|
# test with image in batch (right padding)
|
|
outputs = processor(
|
|
images=batch_image,
|
|
text=batch_text,
|
|
bboxes=batch_bboxes,
|
|
return_tensors="pt",
|
|
padding=True,
|
|
add_eos_token=True,
|
|
)
|
|
self.assertTupleEqual(outputs.pixel_values.shape, (4, 3, 224, 224))
|
|
np.testing.assert_allclose(
|
|
outputs.pixel_values[:, :3, :3, :3].numpy(), [EXPECTED_PIXEL_VALUES_1] * len(batch_image), atol=1e-4
|
|
)
|
|
np.testing.assert_allclose(
|
|
outputs.pixel_values[:, :3, -3:, -3:].numpy(), [EXPECTED_PIXEL_VALUES_2] * len(batch_image), atol=1e-4
|
|
)
|
|
# padding on the right: the `[1:]` below is because the part for `BOS` is already added in the beginning of each (dynamically computed) expected value # noqa
|
|
# fmt: off
|
|
EXPECTED_IDS_BATCH_RIGHT_PADDING = [
|
|
[0, 64003] + list(range(4, 4 + num_image_tokens)) + [64004] + expected_input_ids[0][1:] + [1] * (len(expected_input_ids[5]) - len(expected_input_ids[0])),
|
|
[0, 64003] + list(range(4, 4 + num_image_tokens)) + [64004] + expected_input_ids[5][1:],
|
|
]
|
|
EXPECTED_MASK_BATCH_RIGHT_PADDING = [
|
|
[1, 1] + [1] * num_image_tokens + [1] + [1] * len(expected_input_ids[0][1:]) + [0] * (len(expected_input_ids[5]) - len(expected_input_ids[0])),
|
|
[1] * (2 + num_image_tokens + len(expected_input_ids[5])),
|
|
]
|
|
# fmt: on
|
|
self.assertListEqual(outputs.input_ids.numpy().tolist()[0], EXPECTED_IDS_BATCH_RIGHT_PADDING[0])
|
|
self.assertListEqual(outputs.attention_mask.numpy().tolist()[0], EXPECTED_MASK_BATCH_RIGHT_PADDING[0])
|
|
self.assertListEqual(outputs.input_ids.numpy().tolist()[-1], EXPECTED_IDS_BATCH_RIGHT_PADDING[-1])
|
|
self.assertListEqual(outputs.attention_mask.numpy().tolist()[-1], EXPECTED_MASK_BATCH_RIGHT_PADDING[-1])
|
|
self.assertListEqual(
|
|
outputs.image_embeds_position_mask.numpy().tolist(),
|
|
[[0, 0] + [1] * num_image_tokens + [0] + [0] * (len(expected_input_ids[5]) - 1)] * len(batch_image),
|
|
)
|
|
|
|
processor = Kosmos2Processor.from_pretrained("microsoft/kosmos-2-patch14-224", padding_side="left")
|
|
|
|
# test with image in batch (left padding)
|
|
outputs = processor(
|
|
images=batch_image,
|
|
text=batch_text,
|
|
bboxes=batch_bboxes,
|
|
return_tensors="pt",
|
|
padding=True,
|
|
add_eos_token=True,
|
|
)
|
|
# padding on the left: the `[1:]` below is because the part for `BOS` is already added in the beginning of each (dynamically computed) expected value # noqa
|
|
# fmt: off
|
|
EXPECTED_IDS_BATCH = [
|
|
[1] * (len(expected_input_ids[5]) - len(expected_input_ids[0])) + [0, 64003] + list(range(4, 4 + num_image_tokens)) + [64004] + expected_input_ids[0][1:],
|
|
[0, 64003] + list(range(4, 4 + num_image_tokens)) + [64004] + expected_input_ids[5][1:],
|
|
]
|
|
EXPECTED_MASK_BATCH =[
|
|
[0] * (len(expected_input_ids[5]) - len(expected_input_ids[0])) + [1, 1] + [1] * num_image_tokens + [1] + [1] * len(expected_input_ids[0][1:]),
|
|
[1] * (2 + num_image_tokens + len(expected_input_ids[5])),
|
|
]
|
|
EXPECTED_IMG_POS_MASK_BATCH = [
|
|
[0] * (len(expected_input_ids[5]) - len(expected_input_ids[0])) + [0, 0] + [1] * num_image_tokens + [0] + [0] * len(expected_input_ids[0][1:]),
|
|
[0, 0] + [1] * num_image_tokens + [0] + [0] * (len(expected_input_ids[5]) - 1),
|
|
]
|
|
# fmt: on
|
|
|
|
self.assertListEqual(outputs.input_ids.numpy().tolist()[0], EXPECTED_IDS_BATCH[0])
|
|
self.assertListEqual(outputs.attention_mask.numpy().tolist()[0], EXPECTED_MASK_BATCH[0])
|
|
self.assertListEqual(outputs.image_embeds_position_mask.numpy().tolist()[0], EXPECTED_IMG_POS_MASK_BATCH[0])
|
|
|
|
# no padding for the longest sequence
|
|
self.assertListEqual(outputs.input_ids.numpy().tolist()[-1], EXPECTED_IDS_BATCH[-1])
|
|
self.assertListEqual(outputs.attention_mask.numpy().tolist()[-1], EXPECTED_MASK_BATCH[-1])
|
|
self.assertListEqual(outputs.image_embeds_position_mask.numpy().tolist()[-1], EXPECTED_IMG_POS_MASK_BATCH[-1])
|
|
|
|
# Rewrite as Kosmos-2 supports custom padding only when image is None.
|
|
@require_vision
|
|
@require_torch
|
|
def test_kwargs_overrides_default_tokenizer_kwargs(self):
|
|
if "image_processor" not in self.processor_class.get_attributes():
|
|
self.skipTest(f"image_processor attribute not present in {self.processor_class}")
|
|
image_processor = self.get_component("image_processor")
|
|
tokenizer = self.get_component("tokenizer", max_length=117)
|
|
|
|
processor = self.processor_class(tokenizer=tokenizer, image_processor=image_processor)
|
|
self.skip_processor_without_typed_kwargs(processor)
|
|
input_str = self.prepare_text_inputs()
|
|
# set image input to None
|
|
image_input = None
|
|
|
|
inputs = processor(
|
|
text=input_str,
|
|
images=image_input,
|
|
return_tensors="pt",
|
|
max_length=112,
|
|
padding="max_length",
|
|
)
|
|
|
|
self.assertEqual(len(inputs["input_ids"][0]), 112)
|
|
|
|
# Rewrite to test only image_processor kwargs
|
|
@require_torch
|
|
@require_vision
|
|
def test_structured_kwargs_nested(self):
|
|
if "image_processor" not in self.processor_class.get_attributes():
|
|
self.skipTest(f"image_processor attribute not present in {self.processor_class}")
|
|
image_processor = self.get_component("image_processor")
|
|
tokenizer = self.get_component("tokenizer")
|
|
|
|
processor = self.processor_class(tokenizer=tokenizer, image_processor=image_processor)
|
|
self.skip_processor_without_typed_kwargs(processor)
|
|
|
|
input_str = self.prepare_text_inputs()
|
|
image_input = self.prepare_image_inputs()
|
|
|
|
# Define the kwargs for each modality
|
|
all_kwargs = {
|
|
"common_kwargs": {"return_tensors": "pt"},
|
|
"images_kwargs": {"size": {"height": 214, "width": 214}},
|
|
}
|
|
|
|
inputs = processor(text=input_str, images=image_input, **all_kwargs)
|
|
self.skip_processor_without_typed_kwargs(processor)
|
|
|
|
self.assertEqual(inputs["pixel_values"].shape[2], 214)
|
|
|
|
# Rewrite to test only image_processor kwargs
|
|
@require_torch
|
|
@require_vision
|
|
def test_structured_kwargs_nested_from_dict(self):
|
|
if "image_processor" not in self.processor_class.get_attributes():
|
|
self.skipTest(f"image_processor attribute not present in {self.processor_class}")
|
|
|
|
image_processor = self.get_component("image_processor")
|
|
tokenizer = self.get_component("tokenizer")
|
|
|
|
processor = self.processor_class(tokenizer=tokenizer, image_processor=image_processor)
|
|
self.skip_processor_without_typed_kwargs(processor)
|
|
input_str = self.prepare_text_inputs()
|
|
image_input = self.prepare_image_inputs()
|
|
|
|
# Define the kwargs for each modality
|
|
all_kwargs = {
|
|
"common_kwargs": {"return_tensors": "pt"},
|
|
"images_kwargs": {"size": {"height": 214, "width": 214}},
|
|
}
|
|
|
|
inputs = processor(text=input_str, images=image_input, **all_kwargs)
|
|
self.assertEqual(inputs["pixel_values"].shape[2], 214)
|
|
|
|
# Rewrite as Kosmos-2 supports custom padding only when image is None.
|
|
@require_vision
|
|
@require_torch
|
|
def test_tokenizer_defaults_preserved_by_kwargs(self):
|
|
if "image_processor" not in self.processor_class.get_attributes():
|
|
self.skipTest(f"image_processor attribute not present in {self.processor_class}")
|
|
image_processor = self.get_component("image_processor")
|
|
tokenizer = self.get_component("tokenizer", max_length=117, padding="max_length")
|
|
|
|
processor = self.processor_class(tokenizer=tokenizer, image_processor=image_processor)
|
|
self.skip_processor_without_typed_kwargs(processor)
|
|
input_str = self.prepare_text_inputs()
|
|
# set image input to None
|
|
image_input = None
|
|
|
|
inputs = processor(text=input_str, images=image_input, return_tensors="pt")
|
|
self.assertEqual(len(inputs["input_ids"][0]), 117)
|
|
|
|
# Rewrite as Kosmos-2 supports custom padding only when image is None.
|
|
@require_torch
|
|
@require_vision
|
|
def test_unstructured_kwargs(self):
|
|
if "image_processor" not in self.processor_class.get_attributes():
|
|
self.skipTest(f"image_processor attribute not present in {self.processor_class}")
|
|
image_processor = self.get_component("image_processor")
|
|
tokenizer = self.get_component("tokenizer")
|
|
|
|
processor = self.processor_class(tokenizer=tokenizer, image_processor=image_processor)
|
|
self.skip_processor_without_typed_kwargs(processor)
|
|
|
|
input_str = self.prepare_text_inputs()
|
|
# set image input to None
|
|
image_input = None
|
|
inputs = processor(
|
|
text=input_str,
|
|
images=image_input,
|
|
return_tensors="pt",
|
|
padding="max_length",
|
|
max_length=76,
|
|
)
|
|
|
|
self.assertEqual(len(inputs["input_ids"][0]), 76)
|
|
|
|
# Rewrite as Kosmos-2 supports custom padding only when image is None.
|
|
@require_torch
|
|
@require_vision
|
|
def test_unstructured_kwargs_batched(self):
|
|
if "image_processor" not in self.processor_class.get_attributes():
|
|
self.skipTest(f"image_processor attribute not present in {self.processor_class}")
|
|
image_processor = self.get_component("image_processor")
|
|
tokenizer = self.get_component("tokenizer")
|
|
|
|
processor = self.processor_class(tokenizer=tokenizer, image_processor=image_processor)
|
|
self.skip_processor_without_typed_kwargs(processor)
|
|
|
|
input_str = self.prepare_text_inputs(batch_size=2)
|
|
# set image input to None
|
|
image_input = None
|
|
inputs = processor(
|
|
text=input_str,
|
|
images=image_input,
|
|
return_tensors="pt",
|
|
size={"height": 214, "width": 214},
|
|
padding="longest",
|
|
max_length=76,
|
|
)
|
|
|
|
self.assertEqual(len(inputs["input_ids"][0]), 10)
|