Efficient Few-Shot Learning Without Prompts
Paper • 2209.11055 • Published • 6
How to use mrzaizai2k/model_use_planner with setfit:
from setfit import SetFitModel
model = SetFitModel.from_pretrained("mrzaizai2k/model_use_planner")How to use mrzaizai2k/model_use_planner with sentence-transformers:
from sentence_transformers import SentenceTransformer
model = SentenceTransformer("mrzaizai2k/model_use_planner")
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-multilingual-MiniLM-L12-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 |
|---|---|
| 0 |
|
| 1 |
|
| Label | Accuracy |
|---|---|
| all | 1.0 |
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("mrzaizai2k/model_use_planner")
# Run inference
preds = model("彼に電話して住所を送って")
| Training set | Min | Median | Max |
|---|---|---|---|
| Word count | 1 | 6.2 | 17 |
| Label | Training Sample Count |
|---|---|
| 0 | 30 |
| 1 | 30 |
| Epoch | Step | Training Loss | Validation Loss |
|---|---|---|---|
| 0.0043 | 1 | 0.2053 | - |
| 0.2146 | 50 | 0.2011 | - |
| 0.4292 | 100 | 0.008 | - |
| 0.6438 | 150 | 0.0031 | - |
| 0.8584 | 200 | 0.0005 | - |
| 1.0 | 233 | - | 0.0688 |
| 1.0730 | 250 | 0.0005 | - |
| 1.2876 | 300 | 0.0002 | - |
| 1.5021 | 350 | 0.0002 | - |
| 1.7167 | 400 | 0.0003 | - |
| 1.9313 | 450 | 0.0002 | - |
| 2.0 | 466 | - | 0.1132 |
| 2.1459 | 500 | 0.0002 | - |
| 2.3605 | 550 | 0.0003 | - |
| 2.5751 | 600 | 0.0001 | - |
| 2.7897 | 650 | 0.0002 | - |
| 3.0 | 699 | - | 0.1015 |
| 3.0043 | 700 | 0.0002 | - |
| 3.2189 | 750 | 0.0002 | - |
| 3.4335 | 800 | 0.0002 | - |
| 3.6481 | 850 | 0.0001 | - |
| 3.8627 | 900 | 0.0001 | - |
| 4.0 | 932 | - | 0.0928 |
@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}
}