Text Classification
Transformers
Safetensors
English
modernbert
agent-safety
tool-calling
guardrails
long-context
Eval Results (legacy)
text-embeddings-inference
Instructions to use ProCreations/auto-0.4b with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ProCreations/auto-0.4b with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="ProCreations/auto-0.4b")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("ProCreations/auto-0.4b") model = AutoModelForSequenceClassification.from_pretrained("ProCreations/auto-0.4b", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -235,5 +235,15 @@ than merely declared.
|
|
| 235 |
|
| 236 |
## Other formats
|
| 237 |
|
| 238 |
-
- [`ProCreations/auto-0.4b-gguf`](https://huggingface.co/ProCreations/auto-0.4b-gguf) — llama.cpp
|
| 239 |
- [`ProCreations/auto-0.4b-ONNX`](https://huggingface.co/ProCreations/auto-0.4b-ONNX) — ONNX + int8
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 235 |
|
| 236 |
## Other formats
|
| 237 |
|
|
|
|
| 238 |
- [`ProCreations/auto-0.4b-ONNX`](https://huggingface.co/ProCreations/auto-0.4b-ONNX) — ONNX + int8
|
| 239 |
+
|
| 240 |
+
The GGUF build was **withdrawn**. llama.cpp converts the model, but its `--pooling rank` path
|
| 241 |
+
returns zero for a 2-class classification head, so the GGUF could not actually make
|
| 242 |
+
approve/deny decisions — it returned identical `0.000` scores for a `rm -rf /` and for a
|
| 243 |
+
`pytest` invocation. It was removed rather than left up implying it worked.
|
| 244 |
+
|
| 245 |
+
## Successor
|
| 246 |
+
|
| 247 |
+
[`ProCreations/auto-1b`](https://huggingface.co/ProCreations/auto-1b) scores **96.40%** on the
|
| 248 |
+
same benchmark (vs 90.13% here), with false-deny down from 10.88% to 3.19% and long-context
|
| 249 |
+
accuracy up from 78.45% to 97.02%. Prefer it unless you specifically need the smaller model.
|