Instructions to use alibidaran/intent_recognition with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use alibidaran/intent_recognition with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="alibidaran/intent_recognition")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("alibidaran/intent_recognition") model = AutoModelForSequenceClassification.from_pretrained("alibidaran/intent_recognition") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -43,3 +43,6 @@ labels_name={'greeting': 0,
|
|
| 43 |
'task': 35,
|
| 44 |
'ragging': 36,
|
| 45 |
'hod': 37}
|
|
|
|
|
|
|
|
|
|
|
|
| 43 |
'task': 35,
|
| 44 |
'ragging': 36,
|
| 45 |
'hod': 37}
|
| 46 |
+
|
| 47 |
+
#### Donation:
|
| 48 |
+
<a href="https://www.buymeacoffee.com/alibidaran96"><img src="https://img.buymeacoffee.com/button-api/?text=Buy me a coffee&emoji=☕&slug=alibidaran96&button_colour=FFDD00&font_colour=000000&font_family=Lato&outline_colour=000000&coffee_colour=ffffff" /></a>
|