mirror of
https://github.com/modelscope/modelscope.git
synced 2025-12-22 11:09:21 +01:00
Link: https://code.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/11437035 * stablediffusion io format * text2img task format to output_imgs and numpy list * other text2img io format
71 lines
2.6 KiB
Python
71 lines
2.6 KiB
Python
# Copyright (c) Alibaba, Inc. and its affiliates.
|
|
|
|
import unittest
|
|
|
|
import numpy as np
|
|
|
|
from modelscope.models import Model
|
|
from modelscope.outputs import OutputKeys
|
|
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 TextToImageSynthesisTest(unittest.TestCase, DemoCompatibilityCheck):
|
|
|
|
def setUp(self) -> None:
|
|
self.task = Tasks.text_to_image_synthesis
|
|
self.model_id = 'damo/cv_diffusion_text-to-image-synthesis_tiny'
|
|
|
|
test_text = {
|
|
'text': '宇航员',
|
|
'generator_ddim_timesteps': 2,
|
|
'upsampler_256_ddim_timesteps': 2,
|
|
'upsampler_1024_ddim_timesteps': 2,
|
|
'debug': True
|
|
}
|
|
|
|
@unittest.skipUnless(test_level() >= 0, 'skip test in current test level')
|
|
def test_run_with_model_from_modelhub(self):
|
|
model = Model.from_pretrained(self.model_id)
|
|
pipe_line_text_to_image_synthesis = pipeline(
|
|
task=Tasks.text_to_image_synthesis, model=model)
|
|
img = pipe_line_text_to_image_synthesis(
|
|
self.test_text)[OutputKeys.OUTPUT_IMGS][0]
|
|
print(np.sum(np.abs(img)))
|
|
|
|
@unittest.skipUnless(test_level() >= 2, 'skip test in current test level')
|
|
def test_run_with_model_name(self):
|
|
pipe_line_text_to_image_synthesis = pipeline(
|
|
task=Tasks.text_to_image_synthesis, model=self.model_id)
|
|
img = pipe_line_text_to_image_synthesis(
|
|
self.test_text)[OutputKeys.OUTPUT_IMGS][0]
|
|
print(np.sum(np.abs(img)))
|
|
|
|
@unittest.skipUnless(test_level() >= 2, 'skip test in current test level')
|
|
def test_run_with_default_model(self):
|
|
pipe_line_text_to_image_synthesis = pipeline(
|
|
task=Tasks.text_to_image_synthesis)
|
|
img = pipe_line_text_to_image_synthesis(
|
|
self.test_text)[OutputKeys.OUTPUT_IMGS][0]
|
|
print(np.sum(np.abs(img)))
|
|
|
|
@unittest.skipUnless(test_level() >= 2, 'skip test in current test level')
|
|
def test_run_with_model_from_modelhub_dpm_solver(self):
|
|
self.test_text.update({'solver': 'dpm-solver'})
|
|
model = Model.from_pretrained(self.model_id)
|
|
pipe_line_text_to_image_synthesis = pipeline(
|
|
task=Tasks.text_to_image_synthesis, model=model)
|
|
img = pipe_line_text_to_image_synthesis(
|
|
self.test_text)[OutputKeys.OUTPUT_IMGS][0]
|
|
print(np.sum(np.abs(img)))
|
|
|
|
@unittest.skip('demo compatibility test is only enabled on a needed-basis')
|
|
def test_demo_compatibility(self):
|
|
self.compatibility_check()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|