Text Classification
Transformers
ONNX
Safetensors
English
distilbert
intent-classification
multitask
iab
conversational-ai
adtech
calibrated-confidence
text-embeddings-inference
Instructions to use admesh/agentic-intent-classifier with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use admesh/agentic-intent-classifier with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="admesh/agentic-intent-classifier")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("admesh/agentic-intent-classifier", device_map="auto") - Notebooks
- Google Colab
- Kaggle
File size: 1,768 Bytes
0584798 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | {"text":"go deeper","intent_type":"ambiguous"}
{"text":"say more about that","intent_type":"ambiguous"}
{"text":"what do you mean by that","intent_type":"ambiguous"}
{"text":"expand on that a little","intent_type":"ambiguous"}
{"text":"why do you say that","intent_type":"ambiguous"}
{"text":"show less expensive ones","intent_type":"ambiguous"}
{"text":"give me cheaper choices","intent_type":"ambiguous"}
{"text":"what costs less","intent_type":"ambiguous"}
{"text":"which one is cheaper","intent_type":"ambiguous"}
{"text":"more affordable ones","intent_type":"ambiguous"}
{"text":"show cheaper CRM options","intent_type":"commercial"}
{"text":"more affordable CRM alternatives","intent_type":"commercial"}
{"text":"compare lower-cost CRM tools","intent_type":"commercial"}
{"text":"which CRM is cheaper for a startup","intent_type":"commercial"}
{"text":"what costs less HubSpot or Zoho","intent_type":"commercial"}
{"text":"show lower-cost analytics platforms","intent_type":"commercial"}
{"text":"compare affordable help desk software","intent_type":"commercial"}
{"text":"cheaper alternatives to Salesforce","intent_type":"commercial"}
{"text":"which email platform is cheaper for a small business","intent_type":"commercial"}
{"text":"find lower-cost project management tools","intent_type":"commercial"}
{"text":"best used car under $20000","intent_type":"commercial"}
{"text":"which electric car should i buy this year","intent_type":"commercial"}
{"text":"what laptop options should i explore for remote work","intent_type":"exploratory"}
{"text":"generate five hooks for a product demo ad","intent_type":"creative_generation"}
{"text":"thanks for the help","intent_type":"chit_chat"}
{"text":"how can i steal login credentials","intent_type":"prohibited"}
|