kms-engineer commited on
Commit
765fa9a
·
verified ·
1 Parent(s): 101a791

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -68,8 +68,8 @@ This model recognizes 15+ different intents for contact management:
68
  from transformers import AutoTokenizer, AutoModelForSequenceClassification, pipeline
69
 
70
  # Load model and tokenizer
71
- tokenizer = AutoTokenizer.from_pretrained("mykytakotenko/assistant-bot-intent-classifier")
72
- model = AutoModelForSequenceClassification.from_pretrained("mykytakotenko/assistant-bot-intent-classifier")
73
 
74
  # Create classification pipeline
75
  classifier = pipeline("text-classification", model=model, tokenizer=tokenizer)
@@ -153,7 +153,7 @@ If you use this model, please cite:
153
  title = {Intent Classifier for Contact Management Assistant Bot},
154
  year = {2025},
155
  publisher = {Hugging Face},
156
- howpublished = {\url{https://huggingface.co/mykytakotenko/assistant-bot-intent-classifier}},
157
  note = {Based on RoBERTa by Facebook AI}
158
  }
159
  ```
 
68
  from transformers import AutoTokenizer, AutoModelForSequenceClassification, pipeline
69
 
70
  # Load model and tokenizer
71
+ tokenizer = AutoTokenizer.from_pretrained("kms-engineer/assistant-bot-intent-classifier")
72
+ model = AutoModelForSequenceClassification.from_pretrained("kms-engineer/assistant-bot-intent-classifier")
73
 
74
  # Create classification pipeline
75
  classifier = pipeline("text-classification", model=model, tokenizer=tokenizer)
 
153
  title = {Intent Classifier for Contact Management Assistant Bot},
154
  year = {2025},
155
  publisher = {Hugging Face},
156
+ howpublished = {\url{https://huggingface.co/kms-engineer/assistant-bot-intent-classifier}},
157
  note = {Based on RoBERTa by Facebook AI}
158
  }
159
  ```