From f5400f36c18a7ef73f373f73e7803b84f0e5b7bc Mon Sep 17 00:00:00 2001 From: Jake Tae Date: Fri, 13 Jan 2023 21:13:24 +0900 Subject: [PATCH] docs: fix outdated config params --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 9ce7ea6..a1b80bf 100644 --- a/README.md +++ b/README.md @@ -88,7 +88,7 @@ For more advanced use cases, you can also directly interface with Story Teller i ```python from storyteller import StoryTeller -story_teller = StoryTeller.from_defaults() +story_teller = StoryTeller.from_default() story_teller.generate(...) ``` @@ -101,7 +101,6 @@ config = StoryTellerConfig( writer="gpt2-large", painter="CompVis/stable-diffusion-v1-4", max_new_tokens=100, - diffusion_prompt_prefix="Van Gogh style", ) story_teller = StoryTeller(config)