From 1b7d414784a1ed2547b558442a8c4ab25f7a6cae Mon Sep 17 00:00:00 2001 From: Kevin Gibbons Date: Mon, 22 Aug 2022 21:01:15 -0700 Subject: [PATCH] Fix usage of simplified API in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7f38debd90..9ed76208aa 100644 --- a/README.md +++ b/README.md @@ -301,7 +301,7 @@ lets you create images from a prompt in just three lines of code: ~~~~ from ldm.simplet2i import T2I model = T2I() -outputs = model.text2image("a unicorn in manhattan") +outputs = model.txt2img("a unicorn in manhattan") ~~~~ Outputs is a list of lists in the format [[filename1,seed1],[filename2,seed2]...]