Instructions to use voxreality/t5_nlu_intent_recognition with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use voxreality/t5_nlu_intent_recognition with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("voxreality/t5_nlu_intent_recognition") model = AutoModelForSeq2SeqLM.from_pretrained("voxreality/t5_nlu_intent_recognition", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -5,7 +5,7 @@ A fine-tuned version of the T5 model for intent recognition. It is adept at disc
|
|
| 5 |
|
| 6 |
**How to use:**
|
| 7 |
|
| 8 |
-
```
|
| 9 |
from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
|
| 10 |
|
| 11 |
model_path = 'voxreality/t5_nlu_intent_recognition'
|
|
|
|
| 5 |
|
| 6 |
**How to use:**
|
| 7 |
|
| 8 |
+
```python
|
| 9 |
from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
|
| 10 |
|
| 11 |
model_path = 'voxreality/t5_nlu_intent_recognition'
|