Commit
·
ecaaf47
1
Parent(s):
c487059
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language: "en"
|
3 |
+
tags:
|
4 |
+
- buy-intent
|
5 |
+
- sell-intent
|
6 |
+
- consumer-intent
|
7 |
+
widget:
|
8 |
+
- text: "Can you please share pictures for Face Shields ? We are looking for large quantity pcs"
|
9 |
+
---
|
10 |
+
# KEYWORD QUERY VS STATEMENT/QUESTION CLASSIFIER FOR NEURAL SEARCH
|
11 |
+
| Train Loss | Validation Acc.| Test Acc.|
|
12 |
+
| ------------- |:-------------: | -----: |
|
13 |
+
| 0.013 | 0.988 | 0.992 |
|
14 |
+
|
15 |
+
# Sample Intents for Testings
|
16 |
+
LABEL_0 => **"SELLING_INTENT"** <br/>
|
17 |
+
LABEL_1 => **"BUYING_INTENT"**
|
18 |
+
|
19 |
+
## Buying Intents
|
20 |
+
- I am interested in this style of PGN-ES-D-6150 /Direct drive energy saving servo motor price and in doing business with you. Could you please send me the quotation
|
21 |
+
- Hi, I am looking for a supplier of calcium magnesium carbonate fertilizer. Can you send 1 bag sample via air freight to the USA?
|
22 |
+
- I am looking for the purple ombre dress with floral bodice in a size 12 for my wedding in June this year
|
23 |
+
- we are interested in your Corned Beef. do you have any quality assurance certificates? looking forward to hearing from you.
|
24 |
+
- I would like to know if pet nail clippers are of high quality. And if you would send a free sample?
|
25 |
+
|
26 |
+
## Selling Intents
|
27 |
+
- Black full body massage chair for sale.
|
28 |
+
- Boiler over 7 years old
|
29 |
+
- Polyester trousers black, size 24.
|
30 |
+
- Oliver Twist £1, German Dictionary 50p (Cold War s0ld), Penguin Plays £1, post by arrangement. The bundle price is £2. Will separate (Twelfth Night and Sketch B&W Sold)
|
31 |
+
- Brand new Royal Doulton bone China complete Dinner Service comprising 55 pieces including coffee pot and cups. (6 PLACE SETTING) ! 'Diana' design delicate pattern.
|
32 |
+
|
33 |
+
|
34 |
+
## Usage in Transformers
|
35 |
+
|
36 |
+
```python
|
37 |
+
from transformers import AutoTokenizer, AutoModelForSequenceClassification
|
38 |
+
|
39 |
+
tokenizer = AutoTokenizer.from_pretrained("shahrukhx01/buy-sell-intent-classifier-bert-mini")
|
40 |
+
|
41 |
+
model = AutoModelForSequenceClassification.from_pretrained("shahrukhx01/buy-sell-intent-classifier-bert-mini")
|
42 |
+
```
|
43 |
+
|
44 |
+
## <p style='color:red'>Due to the privacy reasons, I unfortunately can't share the dataset and its splits.</p>
|