Instructions to use cungnlp/FineTuningBERTbaseClassification with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use cungnlp/FineTuningBERTbaseClassification with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="cungnlp/FineTuningBERTbaseClassification")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("cungnlp/FineTuningBERTbaseClassification") model = AutoModelForSequenceClassification.from_pretrained("cungnlp/FineTuningBERTbaseClassification") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
| 1 |
Fine Tuning BERT-base for Classification
|
| 2 |
|
| 3 |
-
labels_meaning
|
| 4 |
-
0_Positive
|
| 5 |
-
1_Negative
|
| 6 |
-
2_Neutral
|
| 7 |
-
3_Extremely Positive
|
| 8 |
-
4_Extremely Negative
|
|
|
|
| 1 |
Fine Tuning BERT-base for Classification
|
| 2 |
|
| 3 |
+
labels_meaning :
|
| 4 |
+
0_Positive,
|
| 5 |
+
1_Negative,
|
| 6 |
+
2_Neutral,
|
| 7 |
+
3_Extremely Positive,
|
| 8 |
+
4_Extremely Negative.
|