From 2c9d19e1b7a8c33d9388b4b46f6db3e624e0e7e5 Mon Sep 17 00:00:00 2001 From: Brett Kuprel Date: Fri, 1 Jul 2022 20:24:19 -0400 Subject: [PATCH] update readme --- README.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/README.md b/README.md index a89f0e7..4301b64 100644 --- a/README.md +++ b/README.md @@ -27,11 +27,7 @@ To load a model once and generate multiple times, first initialize `MinDalle`. ```python from min_dalle import MinDalle -model = MinDalle( - is_mega=True, - is_reusable=True, - models_root='./pretrained' -) +model = MinDalle(is_mega=True, models_root='./pretrained') ``` The required models will be downloaded to `models_root` if they are not already there. After the model has loaded, call `generate_image` with some text and a seed as many times as you want.