larshubacher commited on
Commit
499245c
·
verified ·
1 Parent(s): f489d9f

Add SetFit model

Browse files
1_Pooling/config.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
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
+ "pooling_mode_weightedmean_tokens": false,
8
+ "pooling_mode_lasttoken": false,
9
+ "include_prompt": true
10
+ }
README.md ADDED
@@ -0,0 +1,192 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: deepset/gelectra-base
3
+ library_name: setfit
4
+ metrics:
5
+ - accuracy
6
+ pipeline_tag: text-classification
7
+ tags:
8
+ - setfit
9
+ - sentence-transformers
10
+ - text-classification
11
+ - generated_from_setfit_trainer
12
+ widget:
13
+ - text: Bedienung Yllka sehr unhöflich. Hatte das gefühl sie hält sich für erwas besseres.
14
+ - text: Das Personal ist sehr hilfsbereit. Fragen Sie Amelle, sie ist die Expertin!
15
+ - text: Gute Beratung, war zufrieden mit dem Gespräch
16
+ - text: Unglaublich lange Wartezeiten. Das Personal muss bei Geschäftanschlüssen mehrfach
17
+ telefonieren.
18
+ - text: Schnelle Abholung, schneller Service
19
+ inference: false
20
+ model-index:
21
+ - name: SetFit with deepset/gelectra-base
22
+ results:
23
+ - task:
24
+ type: text-classification
25
+ name: Text Classification
26
+ dataset:
27
+ name: Unknown
28
+ type: unknown
29
+ split: test
30
+ metrics:
31
+ - type: accuracy
32
+ value: 0.02040816326530612
33
+ name: Accuracy
34
+ ---
35
+
36
+ # SetFit with deepset/gelectra-base
37
+
38
+ This is a [SetFit](https://github.com/huggingface/setfit) model that can be used for Text Classification. This SetFit model uses [deepset/gelectra-base](https://huggingface.co/deepset/gelectra-base) as the Sentence Transformer embedding model. A OneVsRestClassifier instance is used for classification.
39
+
40
+ The model has been trained using an efficient few-shot learning technique that involves:
41
+
42
+ 1. Fine-tuning a [Sentence Transformer](https://www.sbert.net) with contrastive learning.
43
+ 2. Training a classification head with features from the fine-tuned Sentence Transformer.
44
+
45
+ ## Model Details
46
+
47
+ ### Model Description
48
+ - **Model Type:** SetFit
49
+ - **Sentence Transformer body:** [deepset/gelectra-base](https://huggingface.co/deepset/gelectra-base)
50
+ - **Classification head:** a OneVsRestClassifier instance
51
+ - **Maximum Sequence Length:** 512 tokens
52
+ <!-- - **Number of Classes:** Unknown -->
53
+ <!-- - **Training Dataset:** [Unknown](https://huggingface.co/datasets/unknown) -->
54
+ <!-- - **Language:** Unknown -->
55
+ <!-- - **License:** Unknown -->
56
+
57
+ ### Model Sources
58
+
59
+ - **Repository:** [SetFit on GitHub](https://github.com/huggingface/setfit)
60
+ - **Paper:** [Efficient Few-Shot Learning Without Prompts](https://arxiv.org/abs/2209.11055)
61
+ - **Blogpost:** [SetFit: Efficient Few-Shot Learning Without Prompts](https://huggingface.co/blog/setfit)
62
+
63
+ ## Evaluation
64
+
65
+ ### Metrics
66
+ | Label | Accuracy |
67
+ |:--------|:---------|
68
+ | **all** | 0.0204 |
69
+
70
+ ## Uses
71
+
72
+ ### Direct Use for Inference
73
+
74
+ First install the SetFit library:
75
+
76
+ ```bash
77
+ pip install setfit
78
+ ```
79
+
80
+ Then you can load this model and run inference.
81
+
82
+ ```python
83
+ from setfit import SetFitModel
84
+
85
+ # Download from the 🤗 Hub
86
+ model = SetFitModel.from_pretrained("larshubacher/setfitdeepset_gelectra-base")
87
+ # Run inference
88
+ preds = model("Schnelle Abholung, schneller Service")
89
+ ```
90
+
91
+ <!--
92
+ ### Downstream Use
93
+
94
+ *List how someone could finetune this model on their own dataset.*
95
+ -->
96
+
97
+ <!--
98
+ ### Out-of-Scope Use
99
+
100
+ *List how the model may foreseeably be misused and address what users ought not to do with the model.*
101
+ -->
102
+
103
+ <!--
104
+ ## Bias, Risks and Limitations
105
+
106
+ *What are the known or foreseeable issues stemming from this model? You could also flag here known failure cases or weaknesses of the model.*
107
+ -->
108
+
109
+ <!--
110
+ ### Recommendations
111
+
112
+ *What are recommendations with respect to the foreseeable issues? For example, filtering explicit content.*
113
+ -->
114
+
115
+ ## Training Details
116
+
117
+ ### Training Set Metrics
118
+ | Training set | Min | Median | Max |
119
+ |:-------------|:----|:--------|:----|
120
+ | Word count | 4 | 48.4609 | 266 |
121
+
122
+ ### Training Hyperparameters
123
+ - batch_size: (16, 16)
124
+ - num_epochs: (1, 1)
125
+ - max_steps: -1
126
+ - sampling_strategy: oversampling
127
+ - num_iterations: 20
128
+ - body_learning_rate: (2e-05, 2e-05)
129
+ - head_learning_rate: 2e-05
130
+ - loss: CosineSimilarityLoss
131
+ - distance_metric: cosine_distance
132
+ - margin: 0.25
133
+ - end_to_end: False
134
+ - use_amp: False
135
+ - warmup_proportion: 0.1
136
+ - seed: 42
137
+ - eval_max_steps: -1
138
+ - load_best_model_at_end: False
139
+
140
+ ### Training Results
141
+ | Epoch | Step | Training Loss | Validation Loss |
142
+ |:------:|:----:|:-------------:|:---------------:|
143
+ | 0.0031 | 1 | 0.4836 | - |
144
+ | 0.1562 | 50 | 0.1578 | - |
145
+ | 0.3125 | 100 | 0.1568 | - |
146
+ | 0.4688 | 150 | 0.1142 | - |
147
+ | 0.625 | 200 | 0.2745 | - |
148
+ | 0.7812 | 250 | 0.2167 | - |
149
+ | 0.9375 | 300 | 0.149 | - |
150
+
151
+ ### Framework Versions
152
+ - Python: 3.11.11
153
+ - SetFit: 1.0.3
154
+ - Sentence Transformers: 3.0.1
155
+ - Transformers: 4.40.2
156
+ - PyTorch: 2.5.1+cu121
157
+ - Datasets: 2.21.0
158
+ - Tokenizers: 0.19.1
159
+
160
+ ## Citation
161
+
162
+ ### BibTeX
163
+ ```bibtex
164
+ @article{https://doi.org/10.48550/arxiv.2209.11055,
165
+ doi = {10.48550/ARXIV.2209.11055},
166
+ url = {https://arxiv.org/abs/2209.11055},
167
+ author = {Tunstall, Lewis and Reimers, Nils and Jo, Unso Eun Seo and Bates, Luke and Korat, Daniel and Wasserblat, Moshe and Pereg, Oren},
168
+ keywords = {Computation and Language (cs.CL), FOS: Computer and information sciences, FOS: Computer and information sciences},
169
+ title = {Efficient Few-Shot Learning Without Prompts},
170
+ publisher = {arXiv},
171
+ year = {2022},
172
+ copyright = {Creative Commons Attribution 4.0 International}
173
+ }
174
+ ```
175
+
176
+ <!--
177
+ ## Glossary
178
+
179
+ *Clearly define terms in order to be accessible across audiences.*
180
+ -->
181
+
182
+ <!--
183
+ ## Model Card Authors
184
+
185
+ *Lists the people who create the model card, providing recognition and accountability for the detailed work that goes into its construction.*
186
+ -->
187
+
188
+ <!--
189
+ ## Model Card Contact
190
+
191
+ *Provides a way for people who have updates to the Model Card, suggestions, or questions, to contact the Model Card authors.*
192
+ -->
config.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "deepset/gelectra-base",
3
+ "architectures": [
4
+ "ElectraModel"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "classifier_dropout": null,
8
+ "embedding_size": 768,
9
+ "hidden_act": "gelu",
10
+ "hidden_dropout_prob": 0.1,
11
+ "hidden_size": 768,
12
+ "initializer_range": 0.02,
13
+ "intermediate_size": 3072,
14
+ "layer_norm_eps": 1e-12,
15
+ "max_position_embeddings": 512,
16
+ "model_type": "electra",
17
+ "num_attention_heads": 12,
18
+ "num_hidden_layers": 12,
19
+ "pad_token_id": 0,
20
+ "position_embedding_type": "absolute",
21
+ "summary_activation": "gelu",
22
+ "summary_last_dropout": 0.1,
23
+ "summary_type": "first",
24
+ "summary_use_proj": true,
25
+ "torch_dtype": "float32",
26
+ "transformers_version": "4.40.2",
27
+ "type_vocab_size": 2,
28
+ "use_cache": true,
29
+ "vocab_size": 31102
30
+ }
config_sentence_transformers.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "__version__": {
3
+ "sentence_transformers": "3.0.1",
4
+ "transformers": "4.40.2",
5
+ "pytorch": "2.5.1+cu121"
6
+ },
7
+ "prompts": {},
8
+ "default_prompt_name": null,
9
+ "similarity_fn_name": null
10
+ }
config_setfit.json ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ {
2
+ "labels": null,
3
+ "normalize_embeddings": false
4
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a460af4280dedecee45ae6a4c98788d0478b48b1e4c43227a38aea20e5c65181
3
+ size 437370536
model_head.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8910d393eac3a4132d4c859ea63118cd41dbd3148cc1d5815717782c5748a40d
3
+ size 104692
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
+ ]
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,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "added_tokens_decoder": {
3
+ "0": {
4
+ "content": "[PAD]",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false,
9
+ "special": true
10
+ },
11
+ "101": {
12
+ "content": "[UNK]",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "102": {
20
+ "content": "[CLS]",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ },
27
+ "103": {
28
+ "content": "[SEP]",
29
+ "lstrip": false,
30
+ "normalized": false,
31
+ "rstrip": false,
32
+ "single_word": false,
33
+ "special": true
34
+ },
35
+ "104": {
36
+ "content": "[MASK]",
37
+ "lstrip": false,
38
+ "normalized": false,
39
+ "rstrip": false,
40
+ "single_word": false,
41
+ "special": true
42
+ }
43
+ },
44
+ "clean_up_tokenization_spaces": true,
45
+ "cls_token": "[CLS]",
46
+ "do_basic_tokenize": true,
47
+ "do_lower_case": false,
48
+ "mask_token": "[MASK]",
49
+ "max_len": 512,
50
+ "model_max_length": 512,
51
+ "never_split": null,
52
+ "pad_token": "[PAD]",
53
+ "sep_token": "[SEP]",
54
+ "strip_accents": false,
55
+ "tokenize_chinese_chars": true,
56
+ "tokenizer_class": "ElectraTokenizer",
57
+ "unk_token": "[UNK]"
58
+ }
vocab.txt ADDED
The diff for this file is too large to render. See raw diff