e06fe8e8c6
Self-hosted runner (benchmark) / Benchmark (aws-g5-4xlarge-cache) (push) Waiting to run
New model PR merged notification / Notify new model (push) Waiting to run
Update Transformers metadata / build_and_package (push) Waiting to run
Secret Leaks / trufflehog (push) Failing after 1s
Build documentation / build (push) Failing after 1s
Build documentation / build_other_lang (push) Failing after 0s
CodeQL Security Analysis / CodeQL Analysis (push) Failing after 0s
PR CI / pr-ci (push) Failing after 1s
Slow tests on important models (on Push - A10) / Get all modified files (push) Failing after 1s
Slow tests on important models (on Push - A10) / Model CI (push) Has been skipped
38 lines
1.0 KiB
Python
38 lines
1.0 KiB
Python
import unittest
|
|
|
|
import pytest
|
|
|
|
from transformers.testing_utils import (
|
|
require_tokenizers,
|
|
require_vision,
|
|
)
|
|
from transformers.utils import is_vision_available
|
|
|
|
from ...test_processing_common import ProcessorTesterMixin
|
|
|
|
|
|
if is_vision_available():
|
|
from transformers import TrOCRProcessor
|
|
|
|
|
|
@require_tokenizers
|
|
@require_vision
|
|
class TrOCRProcessorTest(ProcessorTesterMixin, unittest.TestCase):
|
|
text_input_name = "labels"
|
|
processor_class = TrOCRProcessor
|
|
# Tiny processor created with make_tiny_processor.py from "microsoft/trocr-base-handwritten"
|
|
tiny_model_id = "hf-internal-testing/tiny-processor-trocr"
|
|
|
|
def test_processor_text(self):
|
|
processor = self.get_processor()
|
|
input_str = "lower newer"
|
|
image_input = self.prepare_image_inputs()
|
|
|
|
inputs = processor(text=input_str, images=image_input)
|
|
|
|
self.assertListEqual(list(inputs.keys()), ["pixel_values", "labels"])
|
|
|
|
# test if it raises when no input is passed
|
|
with pytest.raises(ValueError):
|
|
processor()
|