Instructions to use DeepNeural/medical-ner with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use DeepNeural/medical-ner with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="DeepNeural/medical-ner")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("DeepNeural/medical-ner") model = AutoModelForTokenClassification.from_pretrained("DeepNeural/medical-ner", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -62,11 +62,11 @@ The following hyperparameters were used during training:
|
|
| 62 |
|
| 63 |
### Training results
|
| 64 |
|
| 65 |
-
| Training Loss | Epoch |
|
| 66 |
-
|:-------------:|:-----:|:----
|
| 67 |
-
|
|
| 68 |
-
|
|
| 69 |
-
|
|
| 70 |
|
| 71 |
|
| 72 |
### Framework versions
|
|
|
|
| 62 |
|
| 63 |
### Training results
|
| 64 |
|
| 65 |
+
| Training Loss | Epoch | Validation Loss | F1 |
|
| 66 |
+
|:-------------:|:-----:|:---------------:|:------:|
|
| 67 |
+
| 2.61 | 1.0 | 0.0 | 1.0 |
|
| 68 |
+
| 2.61 | 2.0 | 0.0 | 1.0 |
|
| 69 |
+
| 2.61 | 3.0 | 0.0 | 1.0 |
|
| 70 |
|
| 71 |
|
| 72 |
### Framework versions
|