buy-intent sell-intent consumer-intent

Buy vs Sell Intent Classifier

Train Loss Validation Acc. Test Acc.
0.013 0.988 0.992

Sample Intents for Testings

LABEL_0 => "SELLING_INTENT" <br/> LABEL_1 => "BUYING_INTENT"

Buying Intents

Selling Intents

Usage in Transformers

from transformers import AutoTokenizer, AutoModelForSequenceClassification
  
tokenizer = AutoTokenizer.from_pretrained("obsei-ai/sell-buy-intent-classifier-bert-mini")

model = AutoModelForSequenceClassification.from_pretrained("obsei-ai/sell-buy-intent-classifier-bert-mini")

<p style='color:red'>Due to the privacy reasons, I unfortunately can't share the dataset and its splits.</p>