--- tags: - setfit - sentence-transformers - text-classification - generated_from_setfit_trainer widget: - text: The environment around the school is not clean. - text: Early marriage of girls - text: The community faces a challenge with the government school in their village not providing proper education. - text: Children did not want to enroll in school and hence they did not go to school. - text: About children's academic progress metrics: - accuracy pipeline_tag: text-classification library_name: setfit inference: true base_model: sentence-transformers/all-MiniLM-L6-v2 --- # SetFit with sentence-transformers/all-MiniLM-L6-v2 This is a [SetFit](https://github.com/huggingface/setfit) model that can be used for Text Classification. This SetFit model uses [sentence-transformers/all-MiniLM-L6-v2](https://huggingface.co/sentence-transformers/all-MiniLM-L6-v2) as the Sentence Transformer embedding model. A [LogisticRegression](https://scikit-learn.org/stable/modules/generated/sklearn.linear_model.LogisticRegression.html) instance is used for classification. The model has been trained using an efficient few-shot learning technique that involves: 1. Fine-tuning a [Sentence Transformer](https://www.sbert.net) with contrastive learning. 2. Training a classification head with features from the fine-tuned Sentence Transformer. ## Model Details ### Model Description - **Model Type:** SetFit - **Sentence Transformer body:** [sentence-transformers/all-MiniLM-L6-v2](https://huggingface.co/sentence-transformers/all-MiniLM-L6-v2) - **Classification head:** a [LogisticRegression](https://scikit-learn.org/stable/modules/generated/sklearn.linear_model.LogisticRegression.html) instance - **Maximum Sequence Length:** 256 tokens - **Number of Classes:** 11 classes ### Model Sources - **Repository:** [SetFit on GitHub](https://github.com/huggingface/setfit) - **Paper:** [Efficient Few-Shot Learning Without Prompts](https://arxiv.org/abs/2209.11055) - **Blogpost:** [SetFit: Efficient Few-Shot Learning Without Prompts](https://huggingface.co/blog/setfit) ### Model Labels | Label | Examples | |:-----------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | Other Factors | | | Early Marriage | | | Unknown/Unclear | | | Distance and Accessibility Issues | | | Teacher Capacity and Quality Issues | | | Poverty and Economic Barriers | | | Safety Concerns | | | Legal Document linked Barriers | | | Parental Attitudes and Socio-Cultural Barriers | | | Substance Abuse and Addiction | | | School Infrastructure and Facility Issues | | ## Uses ### Direct Use for Inference First install the SetFit library: ```bash pip install setfit ``` Then you can load this model and run inference. ```python from setfit import SetFitModel # Download from the 🤗 Hub model = SetFitModel.from_pretrained("setfit_model_id") # Run inference preds = model("Early marriage of girls") ``` ## Training Details ### Training Set Metrics | Training set | Min | Median | Max | |:-------------|:----|:--------|:----| | Word count | 1 | 15.3202 | 158 | | Label | Training Sample Count | |:-----------------------------------------------|:----------------------| | Distance and Accessibility Issues | 500 | | Early Marriage | 500 | | Legal Document linked Barriers | 500 | | Other Factors | 500 | | Parental Attitudes and Socio-Cultural Barriers | 500 | | Poverty and Economic Barriers | 500 | | Safety Concerns | 500 | | School Infrastructure and Facility Issues | 500 | | Substance Abuse and Addiction | 500 | | Teacher Capacity and Quality Issues | 500 | | Unknown/Unclear | 500 | ### Training Hyperparameters - batch_size: (16, 16) - num_epochs: (1, 1) - max_steps: -1 - sampling_strategy: oversampling - num_iterations: 1 - body_learning_rate: (2e-05, 1e-05) - head_learning_rate: 0.01 - loss: CosineSimilarityLoss - distance_metric: cosine_distance - margin: 0.25 - end_to_end: False - use_amp: False - warmup_proportion: 0.1 - l2_weight: 0.01 - seed: 42 - eval_max_steps: -1 - load_best_model_at_end: False ### Training Results | Epoch | Step | Training Loss | Validation Loss | |:------:|:----:|:-------------:|:---------------:| | 0.0015 | 1 | 0.2641 | - | | 0.0727 | 50 | 0.2312 | - | | 0.1453 | 100 | 0.2069 | - | | 0.2180 | 150 | 0.1816 | - | | 0.2907 | 200 | 0.155 | - | | 0.3634 | 250 | 0.1408 | - | | 0.4360 | 300 | 0.1306 | - | | 0.5087 | 350 | 0.1371 | - | | 0.5814 | 400 | 0.1301 | - | | 0.6541 | 450 | 0.1239 | - | | 0.7267 | 500 | 0.1236 | - | | 0.7994 | 550 | 0.1213 | - | | 0.8721 | 600 | 0.122 | - | | 0.9448 | 650 | 0.1298 | - | ### Framework Versions - Python: 3.12.3 - SetFit: 1.1.3 - Sentence Transformers: 5.6.0 - Transformers: 4.57.6 - PyTorch: 2.13.0+cpu - Datasets: 2.16.1 - Tokenizers: 0.22.2 ## Citation ### BibTeX ```bibtex @article{https://doi.org/10.48550/arxiv.2209.11055, doi = {10.48550/ARXIV.2209.11055}, url = {https://arxiv.org/abs/2209.11055}, author = {Tunstall, Lewis and Reimers, Nils and Jo, Unso Eun Seo and Bates, Luke and Korat, Daniel and Wasserblat, Moshe and Pereg, Oren}, keywords = {Computation and Language (cs.CL), FOS: Computer and information sciences, FOS: Computer and information sciences}, title = {Efficient Few-Shot Learning Without Prompts}, publisher = {arXiv}, year = {2022}, copyright = {Creative Commons Attribution 4.0 International} } ```