YAML Metadata Warning:empty or missing yaml metadata in repo card

Check out the documentation for more information.

SVM Ticket Agent Classifier

This model classifies support tickets to either DATA AGENT or USER ACCESS AGENT based on the ticket text.

Model Details

  • Model Type: Support Vector Machine (SVM)
  • Feature Extraction: TF-IDF Vectorizer
  • Training Size: 40 samples
  • Classes: ['DATA AGENT', 'No decision', 'USER ACCESS AGENT']

Usage

from joblib import load

# Load model components
pipeline = load('pipeline.joblib')
label_encoder = load('label_encoder.joblib')

# Make prediction
text = "I need access to the sales dashboard"
agent_encoded = pipeline.predict([text])[0]
agent = label_encoder.inverse_transform([agent_encoded])[0]
Downloads last month

-

Downloads are not tracked for this model. How to track
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support