Text Classification
Transformers
TensorBoard
Safetensors
bert
Generated from Trainer
text-embeddings-inference
Instructions to use EgorSys/students_scores_model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use EgorSys/students_scores_model with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="EgorSys/students_scores_model")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("EgorSys/students_scores_model") model = AutoModelForSequenceClassification.from_pretrained("EgorSys/students_scores_model", device_map="auto") - Notebooks
- Google Colab
- Kaggle
End of training
Browse files
README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
---
|
| 2 |
library_name: transformers
|
| 3 |
license: apache-2.0
|
| 4 |
-
base_model:
|
| 5 |
tags:
|
| 6 |
- generated_from_trainer
|
| 7 |
metrics:
|
|
@@ -16,10 +16,10 @@ should probably proofread and complete it, then remove this comment. -->
|
|
| 16 |
|
| 17 |
# students_scores_model
|
| 18 |
|
| 19 |
-
This model is a fine-tuned version of [
|
| 20 |
It achieves the following results on the evaluation set:
|
| 21 |
-
- Loss:
|
| 22 |
-
- F1: 0.
|
| 23 |
|
| 24 |
## Model description
|
| 25 |
|
|
@@ -44,27 +44,20 @@ The following hyperparameters were used during training:
|
|
| 44 |
- seed: 42
|
| 45 |
- optimizer: Use adamw_torch with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
|
| 46 |
- lr_scheduler_type: linear
|
| 47 |
-
- num_epochs:
|
| 48 |
|
| 49 |
### Training results
|
| 50 |
|
| 51 |
| Training Loss | Epoch | Step | Validation Loss | F1 |
|
| 52 |
|:-------------:|:-----:|:----:|:---------------:|:------:|
|
| 53 |
-
| No log | 1.0 | 282 | 1.
|
| 54 |
-
|
|
| 55 |
-
|
|
| 56 |
-
| 0.6605 | 4.0 | 1128 | 1.0805 | 0.5774 |
|
| 57 |
-
| 0.6605 | 5.0 | 1410 | 1.1245 | 0.5795 |
|
| 58 |
-
| 0.5969 | 6.0 | 1692 | 1.1497 | 0.5830 |
|
| 59 |
-
| 0.5969 | 7.0 | 1974 | 1.1631 | 0.5803 |
|
| 60 |
-
| 0.5509 | 8.0 | 2256 | 1.1735 | 0.5811 |
|
| 61 |
-
| 0.5216 | 9.0 | 2538 | 1.2007 | 0.5838 |
|
| 62 |
-
| 0.5216 | 10.0 | 2820 | 1.2070 | 0.5779 |
|
| 63 |
|
| 64 |
|
| 65 |
### Framework versions
|
| 66 |
|
| 67 |
-
- Transformers 4.
|
| 68 |
- Pytorch 2.4.0
|
| 69 |
- Datasets 3.1.0
|
| 70 |
-
- Tokenizers 0.
|
|
|
|
| 1 |
---
|
| 2 |
library_name: transformers
|
| 3 |
license: apache-2.0
|
| 4 |
+
base_model: bert-base-uncased
|
| 5 |
tags:
|
| 6 |
- generated_from_trainer
|
| 7 |
metrics:
|
|
|
|
| 16 |
|
| 17 |
# students_scores_model
|
| 18 |
|
| 19 |
+
This model is a fine-tuned version of [bert-base-uncased](https://huggingface.co/bert-base-uncased) on the None dataset.
|
| 20 |
It achieves the following results on the evaluation set:
|
| 21 |
+
- Loss: 0.8998
|
| 22 |
+
- F1: 0.6116
|
| 23 |
|
| 24 |
## Model description
|
| 25 |
|
|
|
|
| 44 |
- seed: 42
|
| 45 |
- optimizer: Use adamw_torch with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
|
| 46 |
- lr_scheduler_type: linear
|
| 47 |
+
- num_epochs: 3
|
| 48 |
|
| 49 |
### Training results
|
| 50 |
|
| 51 |
| Training Loss | Epoch | Step | Validation Loss | F1 |
|
| 52 |
|:-------------:|:-----:|:----:|:---------------:|:------:|
|
| 53 |
+
| No log | 1.0 | 282 | 1.0135 | 0.5125 |
|
| 54 |
+
| 1.0336 | 2.0 | 564 | 0.9235 | 0.5810 |
|
| 55 |
+
| 1.0336 | 3.0 | 846 | 0.8998 | 0.6116 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 56 |
|
| 57 |
|
| 58 |
### Framework versions
|
| 59 |
|
| 60 |
+
- Transformers 4.47.0
|
| 61 |
- Pytorch 2.4.0
|
| 62 |
- Datasets 3.1.0
|
| 63 |
+
- Tokenizers 0.21.0
|