Token Classification
Transformers
PyTorch
English
deberta-v2
fine-tune
deberta
absa-model
sentiment-classification
aspect-based-sentiment-classification
sequence-labeling
sentiment-analysis
deberta-finetune
Instructions to use sajida-dev/fine-tune-deberta-v3-base-end2end-absa-model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use sajida-dev/fine-tune-deberta-v3-base-end2end-absa-model with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="sajida-dev/fine-tune-deberta-v3-base-end2end-absa-model")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("sajida-dev/fine-tune-deberta-v3-base-end2end-absa-model") model = AutoModelForTokenClassification.from_pretrained("sajida-dev/fine-tune-deberta-v3-base-end2end-absa-model") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -21,7 +21,7 @@ tags:
|
|
| 21 |
- sentiment-analysis
|
| 22 |
- deberta-finetune
|
| 23 |
---
|
| 24 |
-
#
|
| 25 |
|
| 26 |
This model is a fine-tuned version of `yangheng/deberta-v3-base-end2end-absa` for Aspect-Based Sentiment Analysis (ABSA).
|
| 27 |
It performs end-to-end ABSA by jointly extracting aspect terms and their sentiments using a single token-classification head. Labels follow an IOB-with-sentiment format, for example `B-ASP-Positive`, `I-ASP-Negative`, or `O` for non-aspect tokens.
|
|
|
|
| 21 |
- sentiment-analysis
|
| 22 |
- deberta-finetune
|
| 23 |
---
|
| 24 |
+
# Finetuned Deberta End-to-End Aspect-based Sentiment Analysis
|
| 25 |
|
| 26 |
This model is a fine-tuned version of `yangheng/deberta-v3-base-end2end-absa` for Aspect-Based Sentiment Analysis (ABSA).
|
| 27 |
It performs end-to-end ABSA by jointly extracting aspect terms and their sentiments using a single token-classification head. Labels follow an IOB-with-sentiment format, for example `B-ASP-Positive`, `I-ASP-Negative`, or `O` for non-aspect tokens.
|