update replicate files

This commit is contained in:
Brett Kuprel
2022-07-02 10:05:16 -04:00
parent a91a259293
commit e6f1c3ef4c
3 changed files with 5 additions and 2 deletions
+4 -1
View File
@@ -15,8 +15,11 @@ class Predictor(BasePredictor):
seed: int = Input(
description="Specify a random seed.",
),
grid_size: int = Input(
description="Specify the grid size.",
)
) -> Path:
image = self.model.generate_image(text, seed, grid_size=3)
image = self.model.generate_image(text, seed, grid_size=grid_size)
out_path = Path(tempfile.mkdtemp()) / "output.png"
image.save(str(out_path))