Instructions to use dd3434/test_model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use dd3434/test_model with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="dd3434/test_model")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("dd3434/test_model") model = AutoModelForSequenceClassification.from_pretrained("dd3434/test_model", device_map="auto") - Notebooks
- Google Colab
- Kaggle
End of training
Browse files
README.md
CHANGED
|
@@ -16,8 +16,8 @@ should probably proofread and complete it, then remove this comment. -->
|
|
| 16 |
|
| 17 |
This model is a fine-tuned version of [kykim/bert-kor-base](https://huggingface.co/kykim/bert-kor-base) on an unknown dataset.
|
| 18 |
It achieves the following results on the evaluation set:
|
| 19 |
-
- Loss:
|
| 20 |
-
- Accuracy: 0.
|
| 21 |
|
| 22 |
## Model description
|
| 23 |
|
|
@@ -36,7 +36,7 @@ More information needed
|
|
| 36 |
### Training hyperparameters
|
| 37 |
|
| 38 |
The following hyperparameters were used during training:
|
| 39 |
-
- learning_rate:
|
| 40 |
- train_batch_size: 32
|
| 41 |
- eval_batch_size: 32
|
| 42 |
- seed: 42
|
|
@@ -48,15 +48,15 @@ The following hyperparameters were used during training:
|
|
| 48 |
|
| 49 |
| Training Loss | Epoch | Step | Validation Loss | Accuracy |
|
| 50 |
|:-------------:|:-----:|:----:|:---------------:|:--------:|
|
| 51 |
-
| 0.
|
| 52 |
-
| 0.
|
| 53 |
-
| 0.
|
| 54 |
-
| 0.
|
| 55 |
-
| 0.
|
| 56 |
-
| 0.
|
| 57 |
-
| 0.
|
| 58 |
-
| 0.
|
| 59 |
-
| 0.
|
| 60 |
|
| 61 |
|
| 62 |
### Framework versions
|
|
|
|
| 16 |
|
| 17 |
This model is a fine-tuned version of [kykim/bert-kor-base](https://huggingface.co/kykim/bert-kor-base) on an unknown dataset.
|
| 18 |
It achieves the following results on the evaluation set:
|
| 19 |
+
- Loss: 1.0590
|
| 20 |
+
- Accuracy: 0.8587
|
| 21 |
|
| 22 |
## Model description
|
| 23 |
|
|
|
|
| 36 |
### Training hyperparameters
|
| 37 |
|
| 38 |
The following hyperparameters were used during training:
|
| 39 |
+
- learning_rate: 8e-05
|
| 40 |
- train_batch_size: 32
|
| 41 |
- eval_batch_size: 32
|
| 42 |
- seed: 42
|
|
|
|
| 48 |
|
| 49 |
| Training Loss | Epoch | Step | Validation Loss | Accuracy |
|
| 50 |
|:-------------:|:-----:|:----:|:---------------:|:--------:|
|
| 51 |
+
| 0.6008 | 0.55 | 100 | 0.4586 | 0.8525 |
|
| 52 |
+
| 0.4733 | 1.1 | 200 | 0.4955 | 0.8463 |
|
| 53 |
+
| 0.3034 | 1.65 | 300 | 0.4289 | 0.8602 |
|
| 54 |
+
| 0.2576 | 2.2 | 400 | 0.6020 | 0.8401 |
|
| 55 |
+
| 0.2013 | 2.75 | 500 | 0.5233 | 0.8509 |
|
| 56 |
+
| 0.1409 | 3.3 | 600 | 0.6732 | 0.8665 |
|
| 57 |
+
| 0.1544 | 3.85 | 700 | 0.6559 | 0.8711 |
|
| 58 |
+
| 0.0918 | 4.4 | 800 | 0.9371 | 0.8556 |
|
| 59 |
+
| 0.0851 | 4.95 | 900 | 1.0590 | 0.8587 |
|
| 60 |
|
| 61 |
|
| 62 |
### Framework versions
|