Files
modelscope/tests/export/test_export_ocr_recognition.py
2026-03-07 22:40:43 +08:00

52 lines
1.9 KiB
Python

# Copyright (c) Alibaba, Inc. and its affiliates.
import os
import shutil
import tempfile
import unittest
from collections import OrderedDict
from modelscope.exporters import Exporter
from modelscope.models import Model
from modelscope.utils.constant import Tasks
from modelscope.utils.import_utils import exists
from modelscope.utils.test_utils import test_level
class TestExportOCRRecognition(unittest.TestCase):
def setUp(self):
print(('Testing %s.%s' % (type(self).__name__, self._testMethodName)))
self.tmp_dir = tempfile.TemporaryDirectory().name
if not os.path.exists(self.tmp_dir):
os.makedirs(self.tmp_dir)
self.model_id = 'damo/cv_LightweightEdge_ocr-recognitoin-general_damo'
@unittest.skipUnless(
exists('torch<=2.4'), 'Skip because torch version not supported')
def test_export_ocr_detection(self):
model = Model.from_pretrained(
'damo/cv_LightweightEdge_ocr-recognitoin-general_damo',
model_revision='v2.4.1')
Exporter.from_model(model).export_onnx(
input_shape=(1, 3, 32, 640), output_dir=self.tmp_dir)
@unittest.skipUnless(
exists('torch<=2.4'), 'Skip because torch version not supported')
def test_export_ocr_detection_crnn(self):
model = Model.from_pretrained(
'damo/cv_crnn_ocr-recognition-general_damo')
Exporter.from_model(model).export_onnx(
input_shape=(1, 3, 32, 640), output_dir=self.tmp_dir)
@unittest.skipUnless(
exists('torch<=2.4'), 'Skip because torch version not supported')
def test_export_ocr_detection_cvit(self):
model = Model.from_pretrained(
'damo/cv_convnextTiny_ocr-recognition-general_damo')
Exporter.from_model(model).export_onnx(
input_shape=(3, 3, 32, 300), output_dir=self.tmp_dir)
if __name__ == '__main__':
unittest.main()