CouchCat commited on
Commit
ed3a9d2
1 Parent(s): 587de47

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +25 -0
README.md ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: en
3
+ license: mit
4
+ tags:
5
+ - multi-label
6
+ widget:
7
+ - text: "I would like to return these the pants and shoes"
8
+ ---
9
+
10
+ ### Description
11
+ A Multi-label text classification model trained on a customer feedback data using DistilBert.
12
+ Possible labels are:
13
+ - Delivery (delivery status, time of arrival, etc.)
14
+ - Return (return confirmation, return label requests, etc.)
15
+ - Product (quality, complaint, etc.)
16
+ - Monetary (pending transactions, refund, etc.)
17
+
18
+ ### Usage
19
+ ```
20
+ from transformers import AutoTokenizer, AutoModelForSequenceClassification
21
+
22
+ tokenizer = AutoTokenizer.from_pretrained("CouchCat/ma_mlc_v7_distil")
23
+
24
+ model = AutoModelForSequenceClassification.from_pretrained("CouchCat/ma_mlc_v7_distil")
25
+ ```