Token Classification
Transformers
PyTorch
Safetensors
English
bert
toponym detection
language model
geospatial understanding
geolm
Instructions to use knowledge-computing/geolm-base-toponym-recognition with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use knowledge-computing/geolm-base-toponym-recognition with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="knowledge-computing/geolm-base-toponym-recognition")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("knowledge-computing/geolm-base-toponym-recognition") model = AutoModelForTokenClassification.from_pretrained("knowledge-computing/geolm-base-toponym-recognition") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -12,9 +12,11 @@ datasets:
|
|
| 12 |
- GeoWebNews
|
| 13 |
metrics:
|
| 14 |
- f1
|
| 15 |
-
pipeline_tag:
|
| 16 |
widget:
|
| 17 |
-
- text:
|
|
|
|
|
|
|
| 18 |
---
|
| 19 |
|
| 20 |
# Model Card for GeoLM model for Toponym Recognition
|
|
|
|
| 12 |
- GeoWebNews
|
| 13 |
metrics:
|
| 14 |
- f1
|
| 15 |
+
pipeline_tag: token-classification
|
| 16 |
widget:
|
| 17 |
+
- text: >-
|
| 18 |
+
Minneapolis, officially the City of Minneapolis, is a city in the state of
|
| 19 |
+
Minnesota and the county seat of Hennepin County.
|
| 20 |
---
|
| 21 |
|
| 22 |
# Model Card for GeoLM model for Toponym Recognition
|