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
235 lines
9.0 KiB
Python
235 lines
9.0 KiB
Python
# Copyright 2025 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.
|
|
"""Testing suite for the PyTorch ShieldGemma2 model."""
|
|
|
|
import tempfile
|
|
import unittest
|
|
|
|
from transformers import (
|
|
BitsAndBytesConfig,
|
|
Gemma3TextConfig,
|
|
ShieldGemma2Config,
|
|
SiglipVisionConfig,
|
|
is_torch_available,
|
|
)
|
|
from transformers.image_utils import load_image
|
|
from transformers.testing_utils import (
|
|
cleanup,
|
|
require_torch,
|
|
require_torch_accelerator,
|
|
slow,
|
|
torch_device,
|
|
)
|
|
|
|
from ...test_processing_common import url_to_local_path
|
|
from ...vlm_tester import VLMModelTest, VLMModelTester
|
|
|
|
|
|
if is_torch_available():
|
|
import torch
|
|
|
|
from transformers import (
|
|
Gemma3ForConditionalGeneration,
|
|
Gemma3Model,
|
|
ShieldGemma2ForImageClassification,
|
|
ShieldGemma2Processor,
|
|
)
|
|
|
|
|
|
class ShieldGemma2ModelTester(VLMModelTester):
|
|
config_class = ShieldGemma2Config
|
|
text_config_class = Gemma3TextConfig
|
|
vision_config_class = SiglipVisionConfig
|
|
|
|
if is_torch_available():
|
|
base_model_class = Gemma3Model
|
|
conditional_generation_class = Gemma3ForConditionalGeneration
|
|
|
|
def __init__(self, parent, **kwargs):
|
|
kwargs.setdefault("batch_size", 7)
|
|
kwargs.setdefault("seq_length", 8)
|
|
kwargs.setdefault("vocab_size", 99)
|
|
kwargs.setdefault("hidden_size", 32)
|
|
kwargs.setdefault("intermediate_size", 64)
|
|
kwargs.setdefault("num_hidden_layers", 2)
|
|
kwargs.setdefault("num_attention_heads", 4)
|
|
kwargs.setdefault("num_key_value_heads", 2)
|
|
kwargs.setdefault("head_dim", 8)
|
|
kwargs.setdefault("max_position_embeddings", 64)
|
|
kwargs.setdefault("sliding_window", 8)
|
|
kwargs.setdefault("layer_types", ["sliding_attention", "full_attention"])
|
|
kwargs.setdefault("image_size", 8)
|
|
kwargs.setdefault("patch_size", 4)
|
|
kwargs.setdefault("num_channels", 3)
|
|
kwargs.setdefault("mm_tokens_per_image", 4)
|
|
kwargs.setdefault("num_image_tokens", kwargs["mm_tokens_per_image"])
|
|
kwargs.setdefault("image_token_index", 0)
|
|
kwargs.setdefault("image_token_id", kwargs["image_token_index"])
|
|
kwargs.setdefault("tie_word_embeddings", True)
|
|
kwargs.setdefault("pad_token_id", 1)
|
|
kwargs.setdefault("eos_token_id", 2)
|
|
kwargs.setdefault("bos_token_id", 3)
|
|
kwargs.setdefault("yes_token_index", 4)
|
|
kwargs.setdefault("no_token_index", 5)
|
|
super().__init__(parent, **kwargs)
|
|
|
|
@property
|
|
def _special_token_ids(self):
|
|
return super()._special_token_ids | {
|
|
self.image_token_index,
|
|
self.yes_token_index,
|
|
self.no_token_index,
|
|
}
|
|
|
|
def get_config(self):
|
|
config = super().get_config()
|
|
config.yes_token_index = self.yes_token_index
|
|
config.no_token_index = self.no_token_index
|
|
return config
|
|
|
|
def create_attention_mask(self, input_ids):
|
|
return input_ids.ne(self.pad_token_id).to(torch_device)
|
|
|
|
def get_additional_inputs(self, config, input_ids, modality_inputs):
|
|
token_type_ids = torch.zeros_like(input_ids)
|
|
token_type_ids[input_ids == config.image_token_id] = 1
|
|
return {"token_type_ids": token_type_ids}
|
|
|
|
def create_and_check_model(self, config, inputs_dict):
|
|
model = ShieldGemma2ForImageClassification(config=config)
|
|
model.to(torch_device)
|
|
model.eval()
|
|
result = model(**inputs_dict)
|
|
self.parent.assertEqual(result.logits.shape, (self.batch_size, 2))
|
|
self.parent.assertEqual(result.probabilities.shape, (self.batch_size, 2))
|
|
|
|
|
|
@require_torch
|
|
class ShieldGemma2ModelTest(VLMModelTest, unittest.TestCase):
|
|
model_tester_class = ShieldGemma2ModelTester
|
|
all_model_classes = (ShieldGemma2ForImageClassification,) if is_torch_available() else ()
|
|
pipeline_model_mapping = {}
|
|
additional_model_inputs = ["pixel_values", "attention_mask", "token_type_ids"]
|
|
|
|
test_attention_outputs = False
|
|
|
|
def _prepare_for_class(self, inputs_dict, model_class, return_labels=False):
|
|
# ShieldGemma2 does not compute its own loss, so never inject labels
|
|
return super()._prepare_for_class(inputs_dict, model_class, return_labels=False)
|
|
|
|
def test_model(self):
|
|
config, inputs_dict = self.model_tester.prepare_config_and_inputs_for_common()
|
|
self.model_tester.create_and_check_model(config, inputs_dict)
|
|
|
|
def test_sdpa_can_dispatch_composite_models(self):
|
|
"""Override: ShieldGemma2 has double-nesting (wrapper -> Gemma3ForConditionalGeneration -> Gemma3Model)."""
|
|
config, _ = self.model_tester.prepare_config_and_inputs_for_common()
|
|
model = ShieldGemma2ForImageClassification(config)
|
|
|
|
with tempfile.TemporaryDirectory() as tmpdirname:
|
|
model.save_pretrained(tmpdirname)
|
|
|
|
model_sdpa = ShieldGemma2ForImageClassification.from_pretrained(
|
|
tmpdirname,
|
|
attn_implementation="sdpa",
|
|
)
|
|
model_eager = ShieldGemma2ForImageClassification.from_pretrained(
|
|
tmpdirname,
|
|
attn_implementation="eager",
|
|
)
|
|
|
|
for loaded_model, expected_attn_implementation in ((model_sdpa, "sdpa"), (model_eager, "eager")):
|
|
self.assertEqual(loaded_model.config._attn_implementation, expected_attn_implementation)
|
|
self.assertEqual(loaded_model.model.config._attn_implementation, expected_attn_implementation)
|
|
self.assertEqual(
|
|
loaded_model.model.model.language_model.config._attn_implementation,
|
|
expected_attn_implementation,
|
|
)
|
|
self.assertEqual(
|
|
loaded_model.model.model.vision_tower.config._attn_implementation,
|
|
expected_attn_implementation,
|
|
)
|
|
|
|
@unittest.skip(reason="ShieldGemma2ForImageClassification does not support generation")
|
|
def test_generation_tester_mixin_inheritance(self):
|
|
pass
|
|
|
|
@unittest.skip(reason="ShieldGemma2 image token masks are not supported by forced flash SDPA kernels")
|
|
def test_sdpa_can_dispatch_on_flash(self):
|
|
pass
|
|
|
|
@unittest.skip(reason="ShieldGemma2ForImageClassification returns logits and probabilities only")
|
|
def test_hidden_states_output(self):
|
|
pass
|
|
|
|
@unittest.skip(reason="ShieldGemma2ForImageClassification returns logits and probabilities only")
|
|
def test_retain_grad_hidden_states_attentions(self):
|
|
pass
|
|
|
|
@unittest.skip(reason="ShieldGemma2ForImageClassification does not compute a training loss")
|
|
def test_training(self):
|
|
pass
|
|
|
|
@unittest.skip(reason="ShieldGemma2ForImageClassification does not compute a classification loss")
|
|
def test_problem_types(self):
|
|
pass
|
|
|
|
@unittest.skip(reason="ShieldGemma2ForImageClassification does not have a num_labels-based classifier head")
|
|
def test_can_load_ignoring_mismatched_shapes(self):
|
|
pass
|
|
|
|
@unittest.skip(reason="DeepSpeed ZeRO-3 does not support this nested AutoModel.from_config test setup")
|
|
def test_resize_tokens_embeddings_with_deepspeed(self):
|
|
pass
|
|
|
|
@unittest.skip(reason="DeepSpeed ZeRO-3 does not support this nested AutoModel.from_config test setup")
|
|
def test_resize_tokens_embeddings_with_deepspeed_multi_gpu(self):
|
|
pass
|
|
|
|
@unittest.skip(reason="DeepSpeed ZeRO-3 does not support this nested AutoModel.from_config test setup")
|
|
def test_resize_embeddings_untied_with_deepspeed(self):
|
|
pass
|
|
|
|
@unittest.skip(reason="DeepSpeed ZeRO-3 does not support this nested AutoModel.from_config test setup")
|
|
def test_resize_embeddings_untied_with_deepspeed_multi_gpu(self):
|
|
pass
|
|
|
|
|
|
@slow
|
|
@require_torch_accelerator
|
|
class ShieldGemma2IntegrationTest(unittest.TestCase):
|
|
def tearDown(self):
|
|
cleanup(torch_device, gc_collect=True)
|
|
|
|
def test_model(self):
|
|
model_id = "google/shieldgemma-2-4b-it"
|
|
|
|
processor = ShieldGemma2Processor.from_pretrained(model_id, padding_side="left")
|
|
image = load_image(
|
|
url_to_local_path(
|
|
"https://huggingface.co/datasets/hf-internal-testing/fixtures-captioning/resolve/main/cow_beach_1.png"
|
|
)
|
|
)
|
|
|
|
model = ShieldGemma2ForImageClassification.from_pretrained(
|
|
model_id,
|
|
quantization_config=BitsAndBytesConfig(load_in_4bit=True),
|
|
)
|
|
|
|
inputs = processor(images=[image], return_tensors="pt").to(torch_device)
|
|
output = model(**inputs)
|
|
self.assertEqual(len(output.probabilities), 3)
|
|
for element in output.probabilities:
|
|
self.assertEqual(len(element), 2)
|