Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,52 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: bigscience-openrail-m
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: bigscience-openrail-m
|
| 3 |
+
pipeline_tag: text-classification
|
| 4 |
+
|
| 5 |
+
widget:
|
| 6 |
+
- example_title: "Very Positive"
|
| 7 |
+
text: "This product is absolutely amazing!"
|
| 8 |
+
- example_title: "Positive"
|
| 9 |
+
text: "I like the features of this app."
|
| 10 |
+
- example_title: "Somewhat Positive"
|
| 11 |
+
text: "The service is pretty good."
|
| 12 |
+
- example_title: "Neutral"
|
| 13 |
+
text: "It meets my expectations."
|
| 14 |
+
- example_title: "Somewhat Negative"
|
| 15 |
+
text: "The experience was not as bad."
|
| 16 |
+
- example_title: "Negative"
|
| 17 |
+
text: "I'm disappointed with the quality."
|
| 18 |
+
- example_title: "Very Negative"
|
| 19 |
+
text: "This is the worst purchase I've ever made."
|
| 20 |
+
|
| 21 |
+
---
|
| 22 |
+
Multi-label sentiment classification model developed by [Dejan Marketing](https://dejanmarketing.com/).
|
| 23 |
+
|
| 24 |
+
The model is designed to be deployed in an automated pipeline capable of classifying text sentiment for thousands (or even millions) of text chunks or as a part of a scraping pipeline.
|
| 25 |
+
|
| 26 |
+
This is a demo model which may occassionally misclasify some texts. In a typical commercial project, a larger model is deployed for the task, and in special cases, a domain-specific model is developed for the client.
|
| 27 |
+
|
| 28 |
+
# Engage Our Team
|
| 29 |
+
Interested in using this in an automated pipeline for bulk query processing?
|
| 30 |
+
|
| 31 |
+
Please [book an appointment](https://dejanmarketing.com/conference/) to discuss your needs.
|
| 32 |
+
|
| 33 |
+
# Base Model
|
| 34 |
+
|
| 35 |
+
albert/albert-base-v2
|
| 36 |
+
|
| 37 |
+
|
| 38 |
+
## Labels
|
| 39 |
+
|
| 40 |
+
sentiment_labels = {
|
| 41 |
+
0: "very positive",
|
| 42 |
+
1: "positive",
|
| 43 |
+
2: "somewhat positive",
|
| 44 |
+
3: "neutral",
|
| 45 |
+
4: "somewhat negative",
|
| 46 |
+
5: "negative",
|
| 47 |
+
6: "very negative"
|
| 48 |
+
}
|
| 49 |
+
|
| 50 |
+
# Sources of Training Data
|
| 51 |
+
|
| 52 |
+
Synthetic. Llama3.
|