Efficient Few-Shot Learning Without Prompts
Paper • 2209.11055 • Published • 6
How to use omymble/books-bge-small-aspect with setfit:
from setfit import SetFitModel
model = SetFitModel.from_pretrained("omymble/books-bge-small-aspect")How to use omymble/books-bge-small-aspect with sentence-transformers:
from sentence_transformers import SentenceTransformer
model = SentenceTransformer("omymble/books-bge-small-aspect")
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 Aspect Based Sentiment Analysis (ABSA). This SetFit model uses BAAI/bge-small-en-v1.5 as the Sentence Transformer embedding model. A LogisticRegression instance is used for classification. In particular, this model is in charge of filtering aspect span candidates.
The model has been trained using an efficient few-shot learning technique that involves:
This model was trained within the context of a larger system for ABSA, which looks like so:
| Label | Examples |
|---|---|
| aspect |
|
| no aspect |
|
First install the SetFit library:
pip install setfit
Then you can load this model and run inference.
from setfit import AbsaModel
# Download from the 🤗 Hub
model = AbsaModel.from_pretrained(
"omymble/books-bge-small-aspect",
"omymble/books-bge-small-polarity",
)
# Run inference
preds = model("The food was great, but the venue is just way too busy.")
| Training set | Min | Median | Max |
|---|---|---|---|
| Word count | 2 | 24.9558 | 56 |
| Label | Training Sample Count |
|---|---|
| no aspect | 330 |
| aspect | 100 |
| Epoch | Step | Training Loss | Validation Loss |
|---|---|---|---|
| 0.0011 | 1 | 0.2545 | - |
| 0.0536 | 50 | 0.2497 | 0.2476 |
| 0.1072 | 100 | 0.1865 | 0.2074 |
| 0.1608 | 150 | 0.0377 | 0.2288 |
| 0.2144 | 200 | 0.0343 | 0.2691 |
| 0.2680 | 250 | 0.011 | 0.2619 |
| 0.3215 | 300 | 0.0107 | 0.272 |
| 0.3751 | 350 | 0.0074 | 0.2738 |
@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-small-en-v1.5