Instructions to use Sebbones/bert-finetuned-ner-requirements with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Sebbones/bert-finetuned-ner-requirements with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="Sebbones/bert-finetuned-ner-requirements")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("Sebbones/bert-finetuned-ner-requirements") model = AutoModelForTokenClassification.from_pretrained("Sebbones/bert-finetuned-ner-requirements", device_map="auto") - Notebooks
- Google Colab
- Kaggle
training complete
Browse files
README.md
CHANGED
|
@@ -19,13 +19,13 @@ should probably proofread and complete it, then remove this comment. -->
|
|
| 19 |
|
| 20 |
# bert-finetuned-ner-requirements
|
| 21 |
|
| 22 |
-
This model is a fine-tuned version of [google-bert/bert-base-german-cased](https://huggingface.co/google-bert/bert-base-german-cased) on
|
| 23 |
It achieves the following results on the evaluation set:
|
| 24 |
-
- Loss:
|
| 25 |
-
- Precision: 0.
|
| 26 |
-
- Recall: 0.
|
| 27 |
-
- F1: 0.
|
| 28 |
-
- Accuracy: 0.
|
| 29 |
|
| 30 |
## Model description
|
| 31 |
|
|
@@ -50,19 +50,22 @@ The following hyperparameters were used during training:
|
|
| 50 |
- seed: 42
|
| 51 |
- optimizer: Use OptimizerNames.ADAMW_TORCH with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
|
| 52 |
- lr_scheduler_type: linear
|
| 53 |
-
- num_epochs:
|
| 54 |
|
| 55 |
### Training results
|
| 56 |
|
| 57 |
| Training Loss | Epoch | Step | Validation Loss | Precision | Recall | F1 | Accuracy |
|
| 58 |
|:-------------:|:-----:|:----:|:---------------:|:---------:|:------:|:------:|:--------:|
|
| 59 |
-
| No log | 1.0 |
|
| 60 |
-
| No log | 2.0 |
|
| 61 |
-
| No log | 3.0 |
|
|
|
|
|
|
|
| 62 |
|
| 63 |
|
| 64 |
### Framework versions
|
| 65 |
|
| 66 |
-
- Transformers 4.
|
| 67 |
- Pytorch 2.6.0+cu124
|
|
|
|
| 68 |
- Tokenizers 0.21.1
|
|
|
|
| 19 |
|
| 20 |
# bert-finetuned-ner-requirements
|
| 21 |
|
| 22 |
+
This model is a fine-tuned version of [google-bert/bert-base-german-cased](https://huggingface.co/google-bert/bert-base-german-cased) on the None dataset.
|
| 23 |
It achieves the following results on the evaluation set:
|
| 24 |
+
- Loss: 0.4528
|
| 25 |
+
- Precision: 0.6724
|
| 26 |
+
- Recall: 0.6842
|
| 27 |
+
- F1: 0.6783
|
| 28 |
+
- Accuracy: 0.875
|
| 29 |
|
| 30 |
## Model description
|
| 31 |
|
|
|
|
| 50 |
- seed: 42
|
| 51 |
- optimizer: Use OptimizerNames.ADAMW_TORCH with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
|
| 52 |
- lr_scheduler_type: linear
|
| 53 |
+
- num_epochs: 5
|
| 54 |
|
| 55 |
### Training results
|
| 56 |
|
| 57 |
| Training Loss | Epoch | Step | Validation Loss | Precision | Recall | F1 | Accuracy |
|
| 58 |
|:-------------:|:-----:|:----:|:---------------:|:---------:|:------:|:------:|:--------:|
|
| 59 |
+
| No log | 1.0 | 38 | 0.6381 | 0.6203 | 0.6082 | 0.6142 | 0.8239 |
|
| 60 |
+
| No log | 2.0 | 76 | 0.4657 | 0.6718 | 0.6745 | 0.6732 | 0.8678 |
|
| 61 |
+
| No log | 3.0 | 114 | 0.4412 | 0.6679 | 0.6979 | 0.6826 | 0.8746 |
|
| 62 |
+
| No log | 4.0 | 152 | 0.4533 | 0.6705 | 0.6745 | 0.6725 | 0.8719 |
|
| 63 |
+
| No log | 5.0 | 190 | 0.4528 | 0.6724 | 0.6842 | 0.6783 | 0.875 |
|
| 64 |
|
| 65 |
|
| 66 |
### Framework versions
|
| 67 |
|
| 68 |
+
- Transformers 4.50.0
|
| 69 |
- Pytorch 2.6.0+cu124
|
| 70 |
+
- Datasets 3.5.0
|
| 71 |
- Tokenizers 0.21.1
|