Update model id in usage snippet
Browse files
README.md
CHANGED
@@ -82,7 +82,7 @@ You can then run inference with this model like so:
|
|
82 |
from span_marker import SpanMarkerModel
|
83 |
|
84 |
# Download from the 🤗 Hub
|
85 |
-
model = SpanMarkerModel.from_pretrained("tomaarsen/
|
86 |
# Run inference
|
87 |
entities = model.predict("Compression algorithms like Principal Component Analysis (PCA) can reduce noise and complexity.")
|
88 |
```
|
|
|
82 |
from span_marker import SpanMarkerModel
|
83 |
|
84 |
# Download from the 🤗 Hub
|
85 |
+
model = SpanMarkerModel.from_pretrained("tomaarsen/span-marker-bert-base-acronyms")
|
86 |
# Run inference
|
87 |
entities = model.predict("Compression algorithms like Principal Component Analysis (PCA) can reduce noise and complexity.")
|
88 |
```
|