From 031be6cca7deda6108dcf0f84a64de136d968b44 Mon Sep 17 00:00:00 2001 From: Abubakar Abid Date: Thu, 16 Dec 2021 11:09:50 -0600 Subject: [PATCH] Update getting_started.md --- guides/getting_started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/getting_started.md b/guides/getting_started.md index 6c59962860..6299546461 100644 --- a/guides/getting_started.md +++ b/guides/getting_started.md @@ -222,7 +222,7 @@ Gradio integrates nicely with the Hugging Face Hub, allowing you to load models - To load any model from the Hugging Face Hub and create an interface around it, you pass `"model/"` or `"huggingface/"` followed by the model name, like these examples: ```python -gr.Interface.load("huggingface/gpt-2").launch(); +gr.Interface.load("huggingface/gpt2").launch(); ``` ```python