fix: fix typo in usage instruction
Browse files
README.md
CHANGED
@@ -38,7 +38,7 @@ Relies on pyannote.audio 2.1.1: see [installation instructions](https://github.c
|
|
38 |
# 1. visit hf.co/pyannote/segmentation and accept user conditions
|
39 |
# 2. visit hf.co/settings/tokens to create an access token
|
40 |
# 3. instantiate pretrained model
|
41 |
-
from pyannote.audio import
|
42 |
model = Model.from_pretrained("pyannote/segmentation",
|
43 |
use_auth_token="ACCESS_TOKEN_GOES_HERE")
|
44 |
```
|
|
|
38 |
# 1. visit hf.co/pyannote/segmentation and accept user conditions
|
39 |
# 2. visit hf.co/settings/tokens to create an access token
|
40 |
# 3. instantiate pretrained model
|
41 |
+
from pyannote.audio import Model
|
42 |
model = Model.from_pretrained("pyannote/segmentation",
|
43 |
use_auth_token="ACCESS_TOKEN_GOES_HERE")
|
44 |
```
|