From 8dad676808abf112019c9233b9388829d7aa4180 Mon Sep 17 00:00:00 2001 From: Brett Kuprel Date: Tue, 5 Jul 2022 06:28:55 -0400 Subject: [PATCH] group sliders --- replicate_predictor.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/replicate_predictor.py b/replicate_predictor.py index 8ca101c..685d99a 100644 --- a/replicate_predictor.py +++ b/replicate_predictor.py @@ -16,16 +16,16 @@ class ReplicatePredictor(BasePredictor): description='Text', default='Dali painting of WALL·E' ), + seed: int = Input( + description='A positive number will generate reproducible results', + default=-1 + ), grid_size: int = Input( description='Size of the image grid', ge=1, le=4, default=4 ), - seed: int = Input( - description='A positive number will generate reproducible results', - default=-1 - ), log2_intermediate_image_count: int = Input( description='Number of images to show while running, each adds a slight delay', ge=0,