Instructions to use urbija/ner-bio-annotated-3 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use urbija/ner-bio-annotated-3 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="urbija/ner-bio-annotated-3")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("urbija/ner-bio-annotated-3") model = AutoModelForTokenClassification.from_pretrained("urbija/ner-bio-annotated-3") - Notebooks
- Google Colab
- Kaggle
update model card README.md
Browse files
README.md
CHANGED
|
@@ -31,7 +31,7 @@ More information needed
|
|
| 31 |
### Training hyperparameters
|
| 32 |
|
| 33 |
The following hyperparameters were used during training:
|
| 34 |
-
- learning_rate:
|
| 35 |
- train_batch_size: 8
|
| 36 |
- eval_batch_size: 8
|
| 37 |
- seed: 42
|
|
|
|
| 31 |
### Training hyperparameters
|
| 32 |
|
| 33 |
The following hyperparameters were used during training:
|
| 34 |
+
- learning_rate: 0.0002
|
| 35 |
- train_batch_size: 8
|
| 36 |
- eval_batch_size: 8
|
| 37 |
- seed: 42
|