Instructions to use erickrribeiro/bert-finetuned-ner with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use erickrribeiro/bert-finetuned-ner with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="erickrribeiro/bert-finetuned-ner")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("erickrribeiro/bert-finetuned-ner") model = AutoModelForTokenClassification.from_pretrained("erickrribeiro/bert-finetuned-ner") - Notebooks
- Google Colab
- Kaggle
Enabling the Model widget
#1
by erickrribeiro - opened
README.md
CHANGED
|
@@ -4,6 +4,13 @@ datasets:
|
|
| 4 |
- conll2003
|
| 5 |
language:
|
| 6 |
- en
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
metrics:
|
| 8 |
- precision
|
| 9 |
- recall
|
|
|
|
| 4 |
- conll2003
|
| 5 |
language:
|
| 6 |
- en
|
| 7 |
+
widget:
|
| 8 |
+
- text: "My name is Erick Ribeiro and I live in Manaus, Brazil"
|
| 9 |
+
- example_title: "Example 1"
|
| 10 |
+
- text: "Larissa is a programmer at the Luizalabs"
|
| 11 |
+
- example_title: "Example 2"
|
| 12 |
+
- text: "Raj lives in Brazil and works for Google"
|
| 13 |
+
- example_title: "Example 3"
|
| 14 |
metrics:
|
| 15 |
- precision
|
| 16 |
- recall
|