File size: 626 Bytes
8b54e30 157360f |
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 |
---
tags:
- sklearn
- SVM
- sentence-transformers
- defect-classification
- text-classification
- pickle
---
# ๐ SVM Defect Classifier (Text-based)
This model is trained using **Sentence-BERT (MiniLM)** embeddings and a **Support Vector Machine (SVM)** classifier.
It predicts **defect types** from text descriptions.
## ๐ Model Details
- **Text Embeddings**: `all-MiniLM-L6-v2` (from `sentence-transformers`)
- **Classifier**: SVM with RBF Kernel
- **Format**: `.pkl` (Pickle)
## ๐ How to Use the Model
First, install dependencies:
```bash
pip install sentence-transformers scikit-learn joblib huggingface_hub
|