Update README.md
Browse files
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("
|
| 72 |
-
model = AutoModelForSequenceClassification.from_pretrained("
|
| 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/
|
| 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 |
```
|