Instructions to use dexter191/text-classifier with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use dexter191/text-classifier with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("dexter191/text-classifier") sentences = [ "The weather is lovely today.", "It's so sunny outside!", "He drove to the stadium." ] embeddings = model.encode(sentences) similarities = model.similarity(embeddings, embeddings) print(similarities.shape) # [3, 3] - Scikit-learn
How to use dexter191/text-classifier with Scikit-learn:
from huggingface_hub import hf_hub_download import joblib model = joblib.load( hf_hub_download("dexter191/text-classifier", "sklearn_model.joblib") ) # only load pickle files from sources you trust # read more about it here https://skops.readthedocs.io/en/stable/persistence.html - Notebooks
- Google Colab
- Kaggle
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
|