Instructions to use Nirij3m/deberta-synth-vishing with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use Nirij3m/deberta-synth-vishing with PEFT:
from peft import PeftModel from transformers import AutoModelForSequenceClassification base_model = AutoModelForSequenceClassification.from_pretrained("answerdotai/ModernBERT-base") model = PeftModel.from_pretrained(base_model, "Nirij3m/deberta-synth-vishing") - Transformers
How to use Nirij3m/deberta-synth-vishing with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Nirij3m/deberta-synth-vishing", device_map="auto") - Notebooks
- Google Colab
- Kaggle
deberta-synth-vishing
This model is a fine-tuned version of answerdotai/ModernBERT-base on the None dataset. It achieves the following results on the evaluation set:
- Loss: 0.1074
- Accuracy: 0.9602
- F1: 0.9688
- Precision: 0.9819
- Recall: 0.9559
Model description
More information needed
Intended uses & limitations
More information needed
Training and evaluation data
More information needed
Training procedure
Training hyperparameters
The following hyperparameters were used during training:
- learning_rate: 2e-05
- train_batch_size: 32
- eval_batch_size: 16
- seed: 42
- optimizer: Use OptimizerNames.ADAMW_TORCH_FUSED with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
- lr_scheduler_type: linear
- lr_scheduler_warmup_steps: 100
- num_epochs: 10
Training results
| Training Loss | Epoch | Step | Validation Loss | Accuracy | F1 | Precision | Recall |
|---|---|---|---|---|---|---|---|
| 0.5887 | 1.0 | 99 | 0.5619 | 0.6676 | 0.7933 | 0.6622 | 0.9890 |
| 0.2801 | 2.0 | 198 | 0.2605 | 0.8935 | 0.9168 | 0.9239 | 0.9097 |
| 0.1311 | 3.0 | 297 | 0.1713 | 0.9276 | 0.9445 | 0.9333 | 0.9559 |
| 0.0902 | 4.0 | 396 | 0.1122 | 0.9517 | 0.9621 | 0.9730 | 0.9515 |
| 0.0606 | 5.0 | 495 | 0.0984 | 0.9616 | 0.9702 | 0.9713 | 0.9692 |
| 0.0613 | 6.0 | 594 | 0.1141 | 0.9616 | 0.9704 | 0.9651 | 0.9758 |
| 0.0232 | 7.0 | 693 | 0.1074 | 0.9602 | 0.9688 | 0.9819 | 0.9559 |
Framework versions
- PEFT 0.19.1
- Transformers 5.10.1
- Pytorch 2.11.0+cu128
- Datasets 5.0.0
- Tokenizers 0.22.2
- Downloads last month
- 2
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support
Model tree for Nirij3m/deberta-synth-vishing
Base model
answerdotai/ModernBERT-base
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Nirij3m/deberta-synth-vishing", device_map="auto")