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