Efficient Few-Shot Learning Without Prompts
Paper • 2209.11055 • Published • 7
How to use dendimaki/emotionSample with setfit:
from setfit import SetFitModel
model = SetFitModel.from_pretrained("dendimaki/emotionSample")How to use dendimaki/emotionSample with sentence-transformers:
from sentence_transformers import SentenceTransformer
model = SentenceTransformer("dendimaki/emotionSample")
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]This is a SetFit model that can be used for Text Classification. This SetFit model uses sentence-transformers/paraphrase-mpnet-base-v2 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 |
|---|---|
| sadness |
|
| love |
|
| surprise |
|
| anger |
|
| joy |
|
| fear |
|
| Label | Accuracy |
|---|---|
| all | 0.4584 |
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("dendimaki/apeiron-v4")
# Run inference
preds = model("i feel for you despite the bitterness and longing")
| Training set | Min | Median | Max |
|---|---|---|---|
| Word count | 4 | 17.6458 | 55 |
| Label | Training Sample Count |
|---|---|
| sadness | 8 |
| joy | 8 |
| love | 8 |
| anger | 8 |
| fear | 8 |
| surprise | 8 |
| Epoch | Step | Training Loss | Validation Loss |
|---|---|---|---|
| 0.0083 | 1 | 0.2802 | - |
| 0.4167 | 50 | 0.1302 | - |
| 0.8333 | 100 | 0.0121 | - |
| 1.0 | 120 | - | 0.2668 |
| 1.25 | 150 | 0.003 | - |
| 1.6667 | 200 | 0.0007 | - |
| 2.0 | 240 | - | 0.2562 |
| 2.0833 | 250 | 0.0008 | - |
| 2.5 | 300 | 0.0009 | - |
| 2.9167 | 350 | 0.0007 | - |
| 3.0 | 360 | - | 0.2572 |
| 3.3333 | 400 | 0.0005 | - |
| 3.75 | 450 | 0.0005 | - |
| 4.0 | 480 | - | 0.2571 |
@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}
}