Text Classification
Transformers
TensorBoard
Safetensors
deberta-v2
Generated from Trainer
text-embeddings-inference
Instructions to use jojoman25/deberta-financial with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use jojoman25/deberta-financial with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="jojoman25/deberta-financial")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("jojoman25/deberta-financial") model = AutoModelForSequenceClassification.from_pretrained("jojoman25/deberta-financial", device_map="auto") - Notebooks
- Google Colab
- Kaggle
JoJoLabs/financial-deberta-v1
Browse files- README.md +20 -5
- logs/events.out.tfevents.1745213071.16d1498ff90a.1.0 +3 -0
- logs/events.out.tfevents.1745217372.16d1498ff90a.1.1 +3 -0
- logs/events.out.tfevents.1745259934.caf3dd7ddfda.1.0 +3 -0
- logs/events.out.tfevents.1745260376.7da4ebe60f3b.1.0 +3 -0
- model.safetensors +1 -1
- training_args.bin +2 -2
README.md
CHANGED
|
@@ -18,8 +18,10 @@ should probably proofread and complete it, then remove this comment. -->
|
|
| 18 |
|
| 19 |
This model is a fine-tuned version of [microsoft/deberta-v3-base](https://huggingface.co/microsoft/deberta-v3-base) on the None dataset.
|
| 20 |
It achieves the following results on the evaluation set:
|
| 21 |
-
- Loss: 0.
|
| 22 |
-
- Accuracy: 0.
|
|
|
|
|
|
|
| 23 |
|
| 24 |
## Model description
|
| 25 |
|
|
@@ -39,16 +41,29 @@ More information needed
|
|
| 39 |
|
| 40 |
The following hyperparameters were used during training:
|
| 41 |
- learning_rate: 2e-05
|
| 42 |
-
- train_batch_size:
|
| 43 |
-
- eval_batch_size:
|
| 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 |
- lr_scheduler_warmup_ratio: 0.1
|
| 48 |
-
- num_epochs:
|
|
|
|
| 49 |
|
| 50 |
### Training results
|
| 51 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 52 |
|
| 53 |
|
| 54 |
### Framework versions
|
|
|
|
| 18 |
|
| 19 |
This model is a fine-tuned version of [microsoft/deberta-v3-base](https://huggingface.co/microsoft/deberta-v3-base) on the None dataset.
|
| 20 |
It achieves the following results on the evaluation set:
|
| 21 |
+
- Loss: 0.2137
|
| 22 |
+
- Accuracy: 0.9146
|
| 23 |
+
- Filtered Samples: 0
|
| 24 |
+
- Remaining Samples: 2751
|
| 25 |
|
| 26 |
## Model description
|
| 27 |
|
|
|
|
| 41 |
|
| 42 |
The following hyperparameters were used during training:
|
| 43 |
- learning_rate: 2e-05
|
| 44 |
+
- train_batch_size: 32
|
| 45 |
+
- eval_batch_size: 32
|
| 46 |
- seed: 42
|
| 47 |
- optimizer: Use adamw_torch with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
|
| 48 |
- lr_scheduler_type: linear
|
| 49 |
- lr_scheduler_warmup_ratio: 0.1
|
| 50 |
+
- num_epochs: 3
|
| 51 |
+
- mixed_precision_training: Native AMP
|
| 52 |
|
| 53 |
### Training results
|
| 54 |
|
| 55 |
+
| Training Loss | Epoch | Step | Validation Loss | Accuracy | Filtered Samples | Remaining Samples |
|
| 56 |
+
|:-------------:|:------:|:----:|:---------------:|:--------:|:----------------:|:-----------------:|
|
| 57 |
+
| 0.4647 | 0.2997 | 232 | 0.3944 | 0.8593 | 0 | 2751 |
|
| 58 |
+
| 0.3971 | 0.5995 | 464 | 0.3618 | 0.8582 | 0 | 2751 |
|
| 59 |
+
| 0.2951 | 0.8992 | 696 | 0.3034 | 0.8917 | 0 | 2751 |
|
| 60 |
+
| 0.2265 | 1.1990 | 928 | 0.2843 | 0.8964 | 0 | 2751 |
|
| 61 |
+
| 0.269 | 1.4987 | 1160 | 0.2540 | 0.9059 | 0 | 2751 |
|
| 62 |
+
| 0.2077 | 1.7984 | 1392 | 0.2481 | 0.9037 | 0 | 2751 |
|
| 63 |
+
| 0.1427 | 2.0982 | 1624 | 0.2283 | 0.9073 | 0 | 2751 |
|
| 64 |
+
| 0.1723 | 2.3979 | 1856 | 0.2224 | 0.9124 | 0 | 2751 |
|
| 65 |
+
| 0.1759 | 2.6977 | 2088 | 0.2198 | 0.9131 | 0 | 2751 |
|
| 66 |
+
| 0.1836 | 2.9974 | 2320 | 0.2137 | 0.9146 | 0 | 2751 |
|
| 67 |
|
| 68 |
|
| 69 |
### Framework versions
|
logs/events.out.tfevents.1745213071.16d1498ff90a.1.0
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c3fbbd9b115fa99d63383a5ff6f4a9c84ea0fc4a791f3dd524dda8821b193cf4
|
| 3 |
+
size 88475
|
logs/events.out.tfevents.1745217372.16d1498ff90a.1.1
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:106ed7bc3304cc05cc9de60357cb067f24c2550a7755e5ccfe768881d6eaf5dc
|
| 3 |
+
size 411
|
logs/events.out.tfevents.1745259934.caf3dd7ddfda.1.0
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0d634d87bda27b1da0226b1190d7b5028161a5106e1a41ec38c9a737949c4ada
|
| 3 |
+
size 6488
|
logs/events.out.tfevents.1745260376.7da4ebe60f3b.1.0
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:07fe53d06efda254007e4346b003e9fb92683124aa3f6c7590fc048290fde7ff
|
| 3 |
+
size 5246
|
model.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 737722356
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c48f18324788b6228b7b213bce86cb1cfae5dc1fb08f31f1bc24b4ca1a500d81
|
| 3 |
size 737722356
|
training_args.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b19b6d57c6c87d37ebd66510b5d91fb8e4d3fdf1068e75ade4f0189f15500f9f
|
| 3 |
+
size 5240
|