Text Classification
Transformers
PyTorch
English
roberta
feature-extraction
sentiment
text-embeddings-inference
Instructions to use DILAB-HYU/SentiCSE with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use DILAB-HYU/SentiCSE with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="DILAB-HYU/SentiCSE")# Load model directly from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("DILAB-HYU/SentiCSE") model = AutoModel.from_pretrained("DILAB-HYU/SentiCSE", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -9,6 +9,7 @@ language:
|
|
| 9 |
- en
|
| 10 |
tags:
|
| 11 |
- sentiment
|
|
|
|
| 12 |
---
|
| 13 |
# SentiCSE
|
| 14 |
This is a RoBERTa-base model trained on MR dataset and finetuned for sentiment analysis with the Sentiment tasks.
|
|
|
|
| 9 |
- en
|
| 10 |
tags:
|
| 11 |
- sentiment
|
| 12 |
+
pipeline_tag: text-classification
|
| 13 |
---
|
| 14 |
# SentiCSE
|
| 15 |
This is a RoBERTa-base model trained on MR dataset and finetuned for sentiment analysis with the Sentiment tasks.
|