File size: 412 Bytes
3269394 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | # COLAS_CLASSIFIER (Supervised + Semantic fallback)
This repository contains:
- A supervised Transformer classifier (`./supervised_final`)
- A FAISS semantic retrieval fallback (`faiss_labels.index` + `label_table.csv`)
- A custom `handler.py` for Hugging Face Inference Endpoints.
## Payload
POST JSON:
```json
{
"inputs": "YOUR ITEM DESCRIPTION",
"top_k": 20,
"threshold": 0.80,
"use_rerank": true
}
|