Efficient Few-Shot Learning Without Prompts
Paper • 2209.11055 • Published • 5
This is a SetFit model that can be used for Text Classification. This SetFit model uses BAAI/bge-base-en-v1.5 as the Sentence Transformer embedding model. A LogisticRegression instance is used for classification.
The model has been trained using an efficient few-shot learning technique that involves:
| Label | Examples |
|---|---|
| 1 |
|
| 0 |
|
| Label | Accuracy |
|---|---|
| all | 0.8133 |
First install the SetFit library:
pip install setfit
Then you can load this model and run inference.
from setfit import SetFitModel
# Download from the 🤗 Hub
model = SetFitModel.from_pretrained("Netta1994/setfit_baai_wikisum_gpt-4o_improved-cot-instructions_chat_few_shot_remove_final_evalu")
# Run inference
preds = model("Reasoning:
contradiction - The answer contains information that contradicts what appears in the document.
Evaluation:")
| Training set | Min | Median | Max |
|---|---|---|---|
| Word count | 3 | 34.4637 | 148 |
| Label | Training Sample Count |
|---|---|
| 0 | 79 |
| 1 | 100 |
| Epoch | Step | Training Loss | Validation Loss |
|---|---|---|---|
| 0.0022 | 1 | 0.2446 | - |
| 0.1116 | 50 | 0.2299 | - |
| 0.2232 | 100 | 0.1175 | - |
| 0.3348 | 150 | 0.0861 | - |
| 0.4464 | 200 | 0.0436 | - |
| 0.5580 | 250 | 0.0233 | - |
| 0.6696 | 300 | 0.0262 | - |
| 0.7812 | 350 | 0.0146 | - |
| 0.8929 | 400 | 0.015 | - |
@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}
}
Base model
BAAI/bge-base-en-v1.5