File size: 2,979 Bytes
a0bbb7a
4153621
 
 
 
a0bbb7a
4153621
 
 
 
 
 
 
 
 
 
 
 
 
a0bbb7a
 
4153621
c9c9362
a0bbb7a
 
 
 
c9c9362
4153621
 
 
c9c9362
2ab9935
 
 
 
 
4153621
c9c9362
a0bbb7a
 
c9c9362
4153621
 
 
 
 
 
 
 
 
 
 
c9c9362
4153621
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2ab9935
 
 
 
 
4153621
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c9c9362
4153621
c9c9362
4153621
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
---

base_model:
    - Qwen/Qwen3-0.6B
    - meta-llama/Llama-3.2-1B
library_name: transformers
pipeline_tag: text-classification
tags:
    - qwen3
    - llama-3.2
    - gguf
    - onnx
    - safetensors
    - llama.cpp
    - onnxruntime
    - intent-classification
    - text-classification
license: apache-2.0

---

# Intent Classifier (Release)

This Hugging Face repo contains only the final released models for the
intent-classifier project.

It is intentionally limited to release artifacts:

- merged full-weight model checkpoints
- GGUF exports for llama.cpp
- ONNX exports for runtime backends.

## Current release

Current stable release: **v1.0**
To use this exact release, select `v1.0` in the Files and versions tab or load the repo with `revision="v1.0"`.

## Models

- qwen3-0.6b
- llama3.2-1b

Both models are fine-tuned for intent classification and exported in multiple inference formats.

- **Transformers / Safetensors:** Full-weight Hugging Face checkpoints for standard Transformers inference and downstream conversion.
- **GGUF:** GGUF files are provided for llama.cpp inference.
- **ONNX:** ONNX exports are provided for runtime backends.

## Transformers / Safetensors

The Transformers folders contain merged full-weight checkpoints in safetensors format.

These are the canonical Hugging Face model artifacts for each selected release model and are the best starting point if you want to:

- run inference with Transformers,
- inspect tokenizer and config files,
- convert to another serving format,
- fine-tune further from the released checkpoint.

## GGUF

The GGUF files are intended for inference with [llama.cpp](https://github.com/ggml-org/llama.cpp).

Available quantization formats include:

- Q4_K_M
- Q6_K
- Q8_0
- F16

## ONNX

The ONNX folders contain exported model variants for ONNX Runtime backends.

These artifacts are intended for deployment and benchmarking across runtimes such as CPU, CoreML, CUDA, or TensorRT pipelines, depending on the exported variant.

When available, the ONNX exports may include multiple precision or quantization variants such as fp16 or int8.

## Versioning

Stable releases are published as git tags such as `v1.0`.
The README describes the latest intended stable release, while the Files and versions tab lets you browse or load a specific tagged revision.

## Repository structure

```text
intent-classifier/
β”œβ”€β”€ qwen3-0.6b/
β”‚   β”œβ”€β”€ Transformers / Safetensors
β”‚   β”œβ”€β”€ GGUF
β”‚   └── ONNX
β”‚
β”œβ”€β”€ llama3.2-1b/
β”‚   β”œβ”€β”€ Transformers / Safetensors
β”‚   β”œβ”€β”€ GGUF
β”‚   └── ONNX
β”‚
└── README.md
```

## Related repositories

Training code and experiment artifacts are maintained separately.

- Training code: <https://github.com/kon172verma/intent-classifier>
- Inference/benchmarking: <https://github.com/kon172verma/intent-classifier-inference>
- Experiments (all adapters): <https://huggingface.co/kon172verma/intent-classifier-experiments>