Instructions to use njprogrammer/setfit-goemotions-multilabel-classification with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use njprogrammer/setfit-goemotions-multilabel-classification with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("njprogrammer/setfit-goemotions-multilabel-classification") 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] - setfit
How to use njprogrammer/setfit-goemotions-multilabel-classification with setfit:
from setfit import SetFitModel model = SetFitModel.from_pretrained("njprogrammer/setfit-goemotions-multilabel-classification") - Notebooks
- Google Colab
- Kaggle
Commit ·
1824104
1
Parent(s): b7676c1
Add SetFit model
Browse files- 1_Pooling/config.json +7 -0
- README.md +49 -0
- config.json +87 -0
- config_sentence_transformers.json +7 -0
- model_head.pkl +3 -0
- modules.json +14 -0
- pytorch_model.bin +3 -0
- sentence_bert_config.json +4 -0
- special_tokens_map.json +7 -0
- tokenizer.json +0 -0
- tokenizer_config.json +13 -0
- vocab.txt +0 -0
1_Pooling/config.json
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"word_embedding_dimension": 768,
|
| 3 |
+
"pooling_mode_cls_token": false,
|
| 4 |
+
"pooling_mode_mean_tokens": true,
|
| 5 |
+
"pooling_mode_max_tokens": false,
|
| 6 |
+
"pooling_mode_mean_sqrt_len_tokens": false
|
| 7 |
+
}
|
README.md
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
tags:
|
| 4 |
+
- setfit
|
| 5 |
+
- sentence-transformers
|
| 6 |
+
- text-classification
|
| 7 |
+
pipeline_tag: text-classification
|
| 8 |
+
---
|
| 9 |
+
|
| 10 |
+
# njprogrammer/setfit-goemotions-multilabel-classification
|
| 11 |
+
|
| 12 |
+
This is a [SetFit model](https://github.com/huggingface/setfit) that can be used for text classification. The model has been trained using an efficient few-shot learning technique that involves:
|
| 13 |
+
|
| 14 |
+
1. Fine-tuning a [Sentence Transformer](https://www.sbert.net) with contrastive learning.
|
| 15 |
+
2. Training a classification head with features from the fine-tuned Sentence Transformer.
|
| 16 |
+
|
| 17 |
+
## Usage
|
| 18 |
+
|
| 19 |
+
To use this model for inference, first install the SetFit library:
|
| 20 |
+
|
| 21 |
+
```bash
|
| 22 |
+
python -m pip install setfit
|
| 23 |
+
```
|
| 24 |
+
|
| 25 |
+
You can then run inference as follows:
|
| 26 |
+
|
| 27 |
+
```python
|
| 28 |
+
from setfit import SetFitModel
|
| 29 |
+
|
| 30 |
+
# Download from Hub and run inference
|
| 31 |
+
model = SetFitModel.from_pretrained("njprogrammer/setfit-goemotions-multilabel-classification")
|
| 32 |
+
# Run inference
|
| 33 |
+
preds = model(["i loved the spiderman movie!", "pineapple on pizza is the worst 🤮"])
|
| 34 |
+
```
|
| 35 |
+
|
| 36 |
+
## BibTeX entry and citation info
|
| 37 |
+
|
| 38 |
+
```bibtex
|
| 39 |
+
@article{https://doi.org/10.48550/arxiv.2209.11055,
|
| 40 |
+
doi = {10.48550/ARXIV.2209.11055},
|
| 41 |
+
url = {https://arxiv.org/abs/2209.11055},
|
| 42 |
+
author = {Tunstall, Lewis and Reimers, Nils and Jo, Unso Eun Seo and Bates, Luke and Korat, Daniel and Wasserblat, Moshe and Pereg, Oren},
|
| 43 |
+
keywords = {Computation and Language (cs.CL), FOS: Computer and information sciences, FOS: Computer and information sciences},
|
| 44 |
+
title = {Efficient Few-Shot Learning Without Prompts},
|
| 45 |
+
publisher = {arXiv},
|
| 46 |
+
year = {2022},
|
| 47 |
+
copyright = {Creative Commons Attribution 4.0 International}
|
| 48 |
+
}
|
| 49 |
+
```
|
config.json
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_name_or_path": "C:\\Users\\njpark/.cache\\torch\\sentence_transformers\\jkhan447_sentiment-model-sample-27go-emotion",
|
| 3 |
+
"architectures": [
|
| 4 |
+
"BertModel"
|
| 5 |
+
],
|
| 6 |
+
"attention_probs_dropout_prob": 0.1,
|
| 7 |
+
"classifier_dropout": null,
|
| 8 |
+
"gradient_checkpointing": false,
|
| 9 |
+
"hidden_act": "gelu",
|
| 10 |
+
"hidden_dropout_prob": 0.1,
|
| 11 |
+
"hidden_size": 768,
|
| 12 |
+
"id2label": {
|
| 13 |
+
"0": "LABEL_0",
|
| 14 |
+
"1": "LABEL_1",
|
| 15 |
+
"2": "LABEL_2",
|
| 16 |
+
"3": "LABEL_3",
|
| 17 |
+
"4": "LABEL_4",
|
| 18 |
+
"5": "LABEL_5",
|
| 19 |
+
"6": "LABEL_6",
|
| 20 |
+
"7": "LABEL_7",
|
| 21 |
+
"8": "LABEL_8",
|
| 22 |
+
"9": "LABEL_9",
|
| 23 |
+
"10": "LABEL_10",
|
| 24 |
+
"11": "LABEL_11",
|
| 25 |
+
"12": "LABEL_12",
|
| 26 |
+
"13": "LABEL_13",
|
| 27 |
+
"14": "LABEL_14",
|
| 28 |
+
"15": "LABEL_15",
|
| 29 |
+
"16": "LABEL_16",
|
| 30 |
+
"17": "LABEL_17",
|
| 31 |
+
"18": "LABEL_18",
|
| 32 |
+
"19": "LABEL_19",
|
| 33 |
+
"20": "LABEL_20",
|
| 34 |
+
"21": "LABEL_21",
|
| 35 |
+
"22": "LABEL_22",
|
| 36 |
+
"23": "LABEL_23",
|
| 37 |
+
"24": "LABEL_24",
|
| 38 |
+
"25": "LABEL_25",
|
| 39 |
+
"26": "LABEL_26",
|
| 40 |
+
"27": "LABEL_27"
|
| 41 |
+
},
|
| 42 |
+
"initializer_range": 0.02,
|
| 43 |
+
"intermediate_size": 3072,
|
| 44 |
+
"label2id": {
|
| 45 |
+
"LABEL_0": 0,
|
| 46 |
+
"LABEL_1": 1,
|
| 47 |
+
"LABEL_10": 10,
|
| 48 |
+
"LABEL_11": 11,
|
| 49 |
+
"LABEL_12": 12,
|
| 50 |
+
"LABEL_13": 13,
|
| 51 |
+
"LABEL_14": 14,
|
| 52 |
+
"LABEL_15": 15,
|
| 53 |
+
"LABEL_16": 16,
|
| 54 |
+
"LABEL_17": 17,
|
| 55 |
+
"LABEL_18": 18,
|
| 56 |
+
"LABEL_19": 19,
|
| 57 |
+
"LABEL_2": 2,
|
| 58 |
+
"LABEL_20": 20,
|
| 59 |
+
"LABEL_21": 21,
|
| 60 |
+
"LABEL_22": 22,
|
| 61 |
+
"LABEL_23": 23,
|
| 62 |
+
"LABEL_24": 24,
|
| 63 |
+
"LABEL_25": 25,
|
| 64 |
+
"LABEL_26": 26,
|
| 65 |
+
"LABEL_27": 27,
|
| 66 |
+
"LABEL_3": 3,
|
| 67 |
+
"LABEL_4": 4,
|
| 68 |
+
"LABEL_5": 5,
|
| 69 |
+
"LABEL_6": 6,
|
| 70 |
+
"LABEL_7": 7,
|
| 71 |
+
"LABEL_8": 8,
|
| 72 |
+
"LABEL_9": 9
|
| 73 |
+
},
|
| 74 |
+
"layer_norm_eps": 1e-12,
|
| 75 |
+
"max_position_embeddings": 512,
|
| 76 |
+
"model_type": "bert",
|
| 77 |
+
"num_attention_heads": 12,
|
| 78 |
+
"num_hidden_layers": 12,
|
| 79 |
+
"pad_token_id": 0,
|
| 80 |
+
"position_embedding_type": "absolute",
|
| 81 |
+
"problem_type": "single_label_classification",
|
| 82 |
+
"torch_dtype": "float32",
|
| 83 |
+
"transformers_version": "4.30.2",
|
| 84 |
+
"type_vocab_size": 2,
|
| 85 |
+
"use_cache": true,
|
| 86 |
+
"vocab_size": 30522
|
| 87 |
+
}
|
config_sentence_transformers.json
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"__version__": {
|
| 3 |
+
"sentence_transformers": "2.2.2",
|
| 4 |
+
"transformers": "4.30.2",
|
| 5 |
+
"pytorch": "1.8.1+cu111"
|
| 6 |
+
}
|
| 7 |
+
}
|
model_head.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5ef2abc83463c001064f9dbf0bf5c949c20bbd8acfd9b1a18204b62806112a6a
|
| 3 |
+
size 87446
|
modules.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"idx": 0,
|
| 4 |
+
"name": "0",
|
| 5 |
+
"path": "",
|
| 6 |
+
"type": "sentence_transformers.models.Transformer"
|
| 7 |
+
},
|
| 8 |
+
{
|
| 9 |
+
"idx": 1,
|
| 10 |
+
"name": "1",
|
| 11 |
+
"path": "1_Pooling",
|
| 12 |
+
"type": "sentence_transformers.models.Pooling"
|
| 13 |
+
}
|
| 14 |
+
]
|
pytorch_model.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:84b44cb5a12bf132170a7f39ecc8f9585ff5c579ff5bccf0a90f99dd6c6c45bc
|
| 3 |
+
size 438003183
|
sentence_bert_config.json
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"max_seq_length": 512,
|
| 3 |
+
"do_lower_case": false
|
| 4 |
+
}
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"cls_token": "[CLS]",
|
| 3 |
+
"mask_token": "[MASK]",
|
| 4 |
+
"pad_token": "[PAD]",
|
| 5 |
+
"sep_token": "[SEP]",
|
| 6 |
+
"unk_token": "[UNK]"
|
| 7 |
+
}
|
tokenizer.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"clean_up_tokenization_spaces": true,
|
| 3 |
+
"cls_token": "[CLS]",
|
| 4 |
+
"do_lower_case": true,
|
| 5 |
+
"mask_token": "[MASK]",
|
| 6 |
+
"model_max_length": 512,
|
| 7 |
+
"pad_token": "[PAD]",
|
| 8 |
+
"sep_token": "[SEP]",
|
| 9 |
+
"strip_accents": null,
|
| 10 |
+
"tokenize_chinese_chars": true,
|
| 11 |
+
"tokenizer_class": "BertTokenizer",
|
| 12 |
+
"unk_token": "[UNK]"
|
| 13 |
+
}
|
vocab.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|