Efficient Few-Shot Learning Without Prompts
Paper • 2209.11055 • Published • 7
How to use vishwa1004/chatbot_theme_map with setfit:
from setfit import SetFitModel
model = SetFitModel.from_pretrained("vishwa1004/chatbot_theme_map")How to use vishwa1004/chatbot_theme_map with sentence-transformers:
from sentence_transformers import SentenceTransformer
model = SentenceTransformer("vishwa1004/chatbot_theme_map")
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 |
|---|---|
| Movement |
|
| Foundational Learning |
|
| School Governance |
|
| Teaching and Learning Practises |
|
| System Thinking |
|
| Community Engagement |
|
| Child Rights |
|
| Inclusion |
|
| Label | Accuracy |
|---|---|
| all | 0.9 |
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("setfit_model_id")
# Run inference
preds = model("Support program for migrant children transitioning into new schools.")
| Training set | Min | Median | Max |
|---|---|---|---|
| Word count | 7 | 10.3729 | 16 |
| Label | Training Sample Count |
|---|---|
| Child Rights | 13 |
| Community Engagement | 14 |
| Foundational Learning | 15 |
| Inclusion | 13 |
| Movement | 14 |
| School Governance | 19 |
| System Thinking | 16 |
| Teaching and Learning Practises | 14 |
| Epoch | Step | Training Loss | Validation Loss |
|---|---|---|---|
| 0.0034 | 1 | 0.1985 | - |
| 0.1695 | 50 | 0.1709 | - |
| 0.3390 | 100 | 0.1086 | - |
| 0.5085 | 150 | 0.0267 | - |
| 0.6780 | 200 | 0.0041 | - |
| 0.8475 | 250 | 0.0016 | - |
| 1.0 | 295 | - | 0.0386 |
| 1.0169 | 300 | 0.0011 | - |
| 1.1864 | 350 | 0.0008 | - |
| 1.3559 | 400 | 0.0006 | - |
| 1.5254 | 450 | 0.0006 | - |
| 1.6949 | 500 | 0.0005 | - |
| 1.8644 | 550 | 0.0005 | - |
| 2.0 | 590 | - | 0.0377 |
| 2.0339 | 600 | 0.0004 | - |
| 2.2034 | 650 | 0.0004 | - |
| 2.3729 | 700 | 0.0004 | - |
| 2.5424 | 750 | 0.0004 | - |
| 2.7119 | 800 | 0.0003 | - |
| 2.8814 | 850 | 0.0003 | - |
| 3.0 | 885 | - | 0.0370 |
| 3.0508 | 900 | 0.0003 | - |
| 3.2203 | 950 | 0.0003 | - |
| 3.3898 | 1000 | 0.0003 | - |
| 3.5593 | 1050 | 0.0003 | - |
| 3.7288 | 1100 | 0.0003 | - |
| 3.8983 | 1150 | 0.0003 | - |
| 4.0 | 1180 | - | 0.0372 |
@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}
}