CouchCat commited on
Commit
f617320
1 Parent(s): 398fea3

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +23 -0
README.md ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: en
3
+ license: mit
4
+ tags:
5
+ - ner
6
+ widget:
7
+ - text: "These shoes from Adidas fit quite well"
8
+ ---
9
+
10
+ ### Description
11
+ A Named Entity Recognition model trained on a customer feedback data using DistilBert.
12
+ Possible labels are:
13
+ - PRD: for certain products
14
+ - BRND: for brands
15
+
16
+ ### Usage
17
+ ```
18
+ from transformers import AutoTokenizer, AutoModelForTokenClassification
19
+
20
+ tokenizer = AutoTokenizer.from_pretrained("CouchCat/ma_ner_v6_distil")
21
+
22
+ model = AutoModelForTokenClassification.from_pretrained("CouchCat/ma_ner_v6_distil")
23
+ ```