COLAS_CLASSIFIER_V2 / README.md
YohanAcxias's picture
Upload folder using huggingface_hub
3269394 verified
|
Raw
History Blame Contribute Delete
412 Bytes
# 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
}