Update getting_started.md

This commit is contained in:
Abubakar Abid 2021-12-16 11:09:50 -06:00 committed by GitHub
parent 7ae192a3d0
commit 031be6cca7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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