Instructions to use cngchis/phi4-mini-intent with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use cngchis/phi4-mini-intent with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="cngchis/phi4-mini-intent")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("cngchis/phi4-mini-intent") model = AutoModelForCausalLM.from_pretrained("cngchis/phi4-mini-intent") - Notebooks
- Google Colab
- Kaggle
Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
datasets:
|
| 4 |
+
- cngchis/Support-Ticket-Router-12K-Cleaned
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
metrics:
|
| 8 |
+
- f1
|
| 9 |
+
- accuracy
|
| 10 |
+
- precision
|
| 11 |
+
- recall
|
| 12 |
+
base_model:
|
| 13 |
+
- unsloth/Phi-4-mini-instruct
|
| 14 |
+
new_version: cngchis/phi4-mini-intent
|
| 15 |
+
pipeline_tag: text-classification
|
| 16 |
+
library_name: transformers
|
| 17 |
+
---
|