mirror of
https://github.com/modelscope/modelscope.git
synced 2025-12-16 16:27:45 +01:00
* timeout for citest set to 240min * update docker image * fix ci template not packed in whl * update docker image version to 1.6.1 and add python3.8 support * randome choose a model for controlnet to avoid oom
46 lines
1.6 KiB
Python
46 lines
1.6 KiB
Python
# Copyright (c) Alibaba, Inc. and its affiliates.
|
|
import random
|
|
import tempfile
|
|
import unittest
|
|
|
|
import cv2
|
|
|
|
from modelscope.hub.snapshot_download import snapshot_download
|
|
from modelscope.models import Model
|
|
from modelscope.outputs import OutputKeys
|
|
from modelscope.pipelines import pipeline
|
|
from modelscope.pipelines.cv import ControllableImageGenerationPipeline
|
|
from modelscope.utils.constant import Tasks
|
|
from modelscope.utils.test_utils import test_level
|
|
|
|
|
|
class ControllableImageGenerationTest(unittest.TestCase):
|
|
|
|
def setUp(self) -> None:
|
|
self.task = Tasks.controllable_image_generation
|
|
self.model_id = 'dienstag/cv_controlnet_controllable-image-generation_nine-annotators'
|
|
self.input = {
|
|
'image':
|
|
'data/test/images/image_inpainting/image_inpainting_mask_1.png',
|
|
'prompt': 'flower'
|
|
}
|
|
|
|
@unittest.skipUnless(test_level() >= 0, 'skip test in current test level')
|
|
def test_run_with_model_from_modelhub(self):
|
|
output_image_path = tempfile.NamedTemporaryFile(suffix='.png').name
|
|
control_types = [
|
|
'canny', 'hough', 'hed', 'depth', 'normal', 'pose', 'seg',
|
|
'fake_scribble', 'scribble'
|
|
]
|
|
control_type = random.choice(control_types)
|
|
pipeline_ins = pipeline(
|
|
self.task, model=self.model_id, control_type=control_type)
|
|
output = pipeline_ins(input=self.input)[OutputKeys.OUTPUT_IMG]
|
|
cv2.imwrite(output_image_path, output)
|
|
print(
|
|
'pipeline: the output image path is {}'.format(output_image_path))
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|