Instructions to use opensource/extract_names with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use opensource/extract_names with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="opensource/extract_names")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("opensource/extract_names") model = AutoModelForTokenClassification.from_pretrained("opensource/extract_names") - Notebooks
- Google Colab
- Kaggle
Commit ·
9913178
1
Parent(s): 63d283f
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,9 +1,12 @@
|
|
| 1 |
---
|
| 2 |
language: multilingual
|
| 3 |
-
|
| 4 |
-
|
|
|
|
|
|
|
| 5 |
license: MIT
|
| 6 |
---
|
| 7 |
|
|
|
|
| 8 |
## Extract names in any language.
|
| 9 |
|
|
|
|
| 1 |
---
|
| 2 |
language: multilingual
|
| 3 |
+
|
| 4 |
+
tags:
|
| 5 |
+
- Extract Names
|
| 6 |
+
|
| 7 |
license: MIT
|
| 8 |
---
|
| 9 |
|
| 10 |
+
|
| 11 |
## Extract names in any language.
|
| 12 |
|