dmr76 commited on
Commit
23d5fd6
·
1 Parent(s): 47cd298

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +44 -0
README.md ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ tags:
5
+ - roberta
6
+ - marketing mix
7
+ - multi-label
8
+ - classification
9
+ - microblog
10
+ - tweets
11
+ ---
12
+ # Model Card for: mmx_classifier_microblog_ENv02
13
+
14
+ Multi-label classifier that identifies which marketing mix variable(s) a microblog post pertains to.
15
+
16
+ ## Model Details
17
+
18
+ You can use this classifier to determine which of the 4P's of marketing, also known as marketing mix variables, a microblog post (e.g., Tweet) pertains to:
19
+
20
+ 1. Product
21
+ 2. Place
22
+ 3. Price
23
+ 4. Promotion
24
+
25
+ ### Model Description
26
+
27
+ This classifier is a fine-tuned checkpoint of [cardiffnlp/twitter-roberta-large-2022-154m] (https://huggingface.co/cardiffnlp/twitter-roberta-large-2022-154m).
28
+ It was trained on 15K Tweets that mentioned at least one of 699 brands. The Tweets were cleaned and labeled using OpenAI's GPT4.
29
+
30
+ Because this is a multi-label classification problem, we use binary cross-entropy (BCE) with logits loss for the fine-tuning. We basically combine a sigmoid layer with BCELoss in a single class.
31
+ To obtain the probabilities for each label (i.e., marketing mix variable), you need to "push" the predictions through a sigmoid function. This is already done in the accompanying python notebook.
32
+
33
+ IMPORTANT: At the time of writing this description, Huggingface's pipeline did not support multi-label classifiers.
34
+
35
+ ### Citation
36
+ For attribution, please cite the following reference if you use this model:
37
+ ```
38
+ Ringel, Daniel, Creating Synthetic Experts with Generative Artificial Intelligence (July 15, 2023). Available at SSRN: https://ssrn.com/abstract=4542949
39
+ ```
40
+
41
+ ### Additional Ressources
42
+ [www.synthetic-experts.ai](http://www.synthetic-experts.ai)
43
+
44
+