Instructions to use debbiesoon/prot_bert_bfd with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use debbiesoon/prot_bert_bfd with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="debbiesoon/prot_bert_bfd")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("debbiesoon/prot_bert_bfd") model = AutoModelForTokenClassification.from_pretrained("debbiesoon/prot_bert_bfd") - Notebooks
- Google Colab
- Kaggle
Commit ·
f8a633f
1
Parent(s): 9dcfc05
update model card README.md
Browse files
README.md
CHANGED
|
@@ -17,10 +17,10 @@ should probably proofread and complete it, then remove this comment. -->
|
|
| 17 |
|
| 18 |
This model was trained from scratch on the None dataset.
|
| 19 |
It achieves the following results on the evaluation set:
|
| 20 |
-
- Loss: 0.
|
| 21 |
-
- Precision: 0.
|
| 22 |
-
- Recall: 0.
|
| 23 |
-
- F1: 0.
|
| 24 |
|
| 25 |
## Model description
|
| 26 |
|
|
@@ -51,9 +51,9 @@ The following hyperparameters were used during training:
|
|
| 51 |
|
| 52 |
| Training Loss | Epoch | Step | Validation Loss | Precision | Recall | F1 |
|
| 53 |
|:-------------:|:-----:|:----:|:---------------:|:---------:|:------:|:------:|
|
| 54 |
-
| No log | 1.0 | 61 | 0.
|
| 55 |
-
| No log | 2.0 | 122 | 0.
|
| 56 |
-
| No log | 3.0 | 183 | 0.
|
| 57 |
|
| 58 |
|
| 59 |
### Framework versions
|
|
|
|
| 17 |
|
| 18 |
This model was trained from scratch on the None dataset.
|
| 19 |
It achieves the following results on the evaluation set:
|
| 20 |
+
- Loss: 0.5732
|
| 21 |
+
- Precision: 0.7645
|
| 22 |
+
- Recall: 0.7720
|
| 23 |
+
- F1: 0.7665
|
| 24 |
|
| 25 |
## Model description
|
| 26 |
|
|
|
|
| 51 |
|
| 52 |
| Training Loss | Epoch | Step | Validation Loss | Precision | Recall | F1 |
|
| 53 |
|:-------------:|:-----:|:----:|:---------------:|:---------:|:------:|:------:|
|
| 54 |
+
| No log | 1.0 | 61 | 0.4863 | 0.7687 | 0.7644 | 0.7663 |
|
| 55 |
+
| No log | 2.0 | 122 | 0.5434 | 0.7709 | 0.7691 | 0.7699 |
|
| 56 |
+
| No log | 3.0 | 183 | 0.5732 | 0.7645 | 0.7720 | 0.7665 |
|
| 57 |
|
| 58 |
|
| 59 |
### Framework versions
|