mirror of
https://github.com/modelscope/modelscope.git
synced 2025-12-23 11:39:26 +01:00
47 lines
1.8 KiB
Python
47 lines
1.8 KiB
Python
# Copyright (c) Alibaba, Inc. and its affiliates.
|
|
|
|
import unittest
|
|
|
|
from modelscope.pipelines import pipeline
|
|
from modelscope.utils.constant import Tasks
|
|
from modelscope.utils.demo_utils import DemoCompatibilityCheck
|
|
from modelscope.utils.test_utils import test_level
|
|
|
|
|
|
class GeneralImageClassificationTest(unittest.TestCase,
|
|
DemoCompatibilityCheck):
|
|
|
|
def setUp(self) -> None:
|
|
self.task = Tasks.image_classification
|
|
self.model_id = 'damo/cv_vit-base_image-classification_Dailylife-labels'
|
|
|
|
@unittest.skipUnless(test_level() >= 0, 'skip test in current test level')
|
|
def test_run_ImageNet(self):
|
|
general_image_classification = pipeline(
|
|
Tasks.image_classification,
|
|
model='damo/cv_vit-base_image-classification_ImageNet-labels')
|
|
result = general_image_classification('data/test/images/bird.JPEG')
|
|
print(result)
|
|
|
|
@unittest.skipUnless(test_level() >= 0, 'skip test in current test level')
|
|
def test_run_Dailylife(self):
|
|
general_image_classification = pipeline(
|
|
Tasks.image_classification,
|
|
model='damo/cv_vit-base_image-classification_Dailylife-labels')
|
|
result = general_image_classification('data/test/images/bird.JPEG')
|
|
print(result)
|
|
|
|
@unittest.skipUnless(test_level() >= 2, 'skip test in current test level')
|
|
def test_run_Dailylife_default(self):
|
|
general_image_classification = pipeline(Tasks.image_classification)
|
|
result = general_image_classification('data/test/images/bird.JPEG')
|
|
print(result)
|
|
|
|
@unittest.skipUnless(test_level() >= 0, 'skip test in current test level')
|
|
def test_demo_compatibility(self):
|
|
self.compatibility_check()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|