Views
No views yet
| Metric | Value |
|---|---|
| F1 | 0.9940 |
| Accuracy | 0.9940 |
| Precision | 0.9940 |
| Recall | 0.9940 |
| Loss | 0.0233 |
| Training Loss | Epoch | Step | Validation Loss | Precision | Recall | Accuracy | F1 |
|---|---|---|---|---|---|---|---|
| No log | 1.0 | 214 | 0.1865 | 0.9323 | 0.9323 | 0.9323 | 0.9323 |
| No log | 2.0 | 428 | 0.0742 | 0.9771 | 0.9771 | 0.9771 | 0.9771 |
| 0.2737 | 3.0 | 642 | 0.0479 | 0.9855 | 0.9855 | 0.9855 | 0.9855 |
| 0.2737 | 4.0 | 856 | 0.0284 | 0.9923 | 0.9923 | 0.9923 | 0.9923 |
| 0.0586 | 5.0 | 1070 | 0.0233 | 0.9940 | 0.9940 | 0.9940 | 0.9940 |
pip install transformers sentencepiece1from transformers import pipeline
2
3task = "text-classification"
4model_id = "mrm8488/deberta-v3-ft-financial-news-sentiment-analysis"
5
6classifier = pipeline(task, model_id)
7text = "Tesla cars are not as good as expected"
8result = classifier(text)
9print(result)1@misc {manuel_romero_2024,
2 author = { {Manuel Romero} },
3 title = { deberta-v3-ft-financial-news-sentiment-analysis (Revision 7430ace) },
4 year = 2024,
5 url = { https://huggingface.co/mrm8488/deberta-v3-ft-financial-news-sentiment-analysis },
6 doi = { 10.57967/hf/1666 },
7 publisher = { Hugging Face }
8}