Instructions to use tliumozilla/mobilebert-query-intent-detection-test with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use tliumozilla/mobilebert-query-intent-detection-test with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="tliumozilla/mobilebert-query-intent-detection-test")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("tliumozilla/mobilebert-query-intent-detection-test") model = AutoModelForSequenceClassification.from_pretrained("tliumozilla/mobilebert-query-intent-detection-test") - Notebooks
- Google Colab
- Kaggle
File size: 110 Bytes
8d435ca | 1 2 3 4 5 6 7 8 9 10 | {
"label2id": {
"Chat": 0,
"Search": 1
},
"id2label": {
"0": "Chat",
"1": "Search"
}
} |