min-dalle-test/replicate/predict.py

48 lines
1.4 KiB
Python
Raw Normal View History

2022-06-29 19:53:25 +00:00
import tempfile
from cog import BasePredictor, Path, Input
from min_dalle import MinDalle
2022-07-04 22:37:07 +00:00
from PIL import Image
2022-06-29 19:53:25 +00:00
class Predictor(BasePredictor):
def setup(self):
self.model = MinDalle(is_mega=True)
2022-06-29 19:53:25 +00:00
def predict(
self,
text: str = Input(
2022-07-02 14:46:56 +00:00
description='Text',
default='Dali painting of WALL·E'
2022-06-29 19:53:25 +00:00
),
2022-07-02 14:05:16 +00:00
grid_size: int = Input(
description='Size of the image grid',
2022-07-02 14:32:17 +00:00
ge=1,
le=5,
default=4
2022-07-04 12:05:55 +00:00
),
seed: int = Input(
description='Set the seed to a positive number for reproducible results',
default=-1
),
2022-07-04 22:37:07 +00:00
log2_intermediate_image_count: int = Input(
description='Set the log2 number of intermediate images to show',
ge=0,
le=4,
default=3
),
2022-06-29 19:53:25 +00:00
) -> Path:
2022-07-04 22:37:07 +00:00
def handle_intermediate_image(i: int, image: Image.Image) -> Path:
if i + 1 == 16: return
out_path = Path(tempfile.mkdtemp()) / 'output.jpg'
image.save(str(out_path))
image = self.model.generate_image(
text,
seed,
grid_size=grid_size,
log2_mid_count=log2_intermediate_image_count,
handle_intermediate_image=handle_intermediate_image
)
return handle_intermediate_image(-1, image)