Update snippet model ID
Browse files
README.md
CHANGED
@@ -102,7 +102,7 @@ You can then run inference with this model like so:
|
|
102 |
from span_marker import SpanMarkerModel
|
103 |
|
104 |
# Download from the 🤗 Hub
|
105 |
-
model = SpanMarkerModel.from_pretrained("
|
106 |
# Run inference
|
107 |
entities = model.predict("Amelia Earhart flew her single engine Lockheed Vega 5B across the Atlantic to Paris.")
|
108 |
```
|
|
|
102 |
from span_marker import SpanMarkerModel
|
103 |
|
104 |
# Download from the 🤗 Hub
|
105 |
+
model = SpanMarkerModel.from_pretrained("tomaarsen/span-marker-bert-base-cross-ner")
|
106 |
# Run inference
|
107 |
entities = model.predict("Amelia Earhart flew her single engine Lockheed Vega 5B across the Atlantic to Paris.")
|
108 |
```
|