Shankhdhar
commited on
Commit
•
7c817a7
1
Parent(s):
3b067b8
Add SetFit model
Browse files- 1_Pooling/config.json +10 -0
- README.md +286 -0
- config.json +24 -0
- config_sentence_transformers.json +10 -0
- config_setfit.json +11 -0
- model.safetensors +3 -0
- model_head.pkl +3 -0
- modules.json +14 -0
- sentence_bert_config.json +4 -0
- special_tokens_map.json +51 -0
- tokenizer.json +0 -0
- tokenizer_config.json +59 -0
- vocab.txt +0 -0
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,286 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
base_model: sentence-transformers/paraphrase-mpnet-base-v2
|
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: cookie boxes with dividers
|
14 |
+
- text: I placed an order for Bakeware Set with order number 78965, can you update
|
15 |
+
me on the delivery status?
|
16 |
+
- text: What is the price of the organic honey?
|
17 |
+
- text: Variety of cookie boxes
|
18 |
+
- text: Is the Popcorn Box available in a pack of 50?
|
19 |
+
inference: true
|
20 |
+
model-index:
|
21 |
+
- name: SetFit with sentence-transformers/paraphrase-mpnet-base-v2
|
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.88
|
33 |
+
name: Accuracy
|
34 |
+
---
|
35 |
+
|
36 |
+
# SetFit with sentence-transformers/paraphrase-mpnet-base-v2
|
37 |
+
|
38 |
+
This is a [SetFit](https://github.com/huggingface/setfit) model that can be used for Text Classification. This SetFit model uses [sentence-transformers/paraphrase-mpnet-base-v2](https://huggingface.co/sentence-transformers/paraphrase-mpnet-base-v2) as the Sentence Transformer embedding model. A [LogisticRegression](https://scikit-learn.org/stable/modules/generated/sklearn.linear_model.LogisticRegression.html) 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:** [sentence-transformers/paraphrase-mpnet-base-v2](https://huggingface.co/sentence-transformers/paraphrase-mpnet-base-v2)
|
50 |
+
- **Classification head:** a [LogisticRegression](https://scikit-learn.org/stable/modules/generated/sklearn.linear_model.LogisticRegression.html) instance
|
51 |
+
- **Maximum Sequence Length:** 512 tokens
|
52 |
+
- **Number of Classes:** 6 classes
|
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 |
+
### Model Labels
|
64 |
+
| Label | Examples |
|
65 |
+
|:------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
66 |
+
| product faq | <ul><li>'Does the Meenakari jal jangla -Rani saree have meenakari?'</li><li>'Is the Nike Dunk Low Premium Bacon available in size 7?'</li><li>'What is the best way to recycle the packaging boxes for wholesale orders for wholesale orders?'</li></ul> |
|
67 |
+
| order tracking | <ul><li>'I ordered the Cake Boards 7 days ago with order no 43210 how long will it take to deliver?'</li><li>'I want to deliver bags to Pune, how many days will it take to deliver?'</li><li>'I want to deliver packaging to Surat, how many days will it take to deliver?'</li></ul> |
|
68 |
+
| product policy | <ul><li>'What is the procedure for returning a product that was part of a special promotion occasion?'</li><li>'Can I return an item if it was damaged during delivery preparation?'</li><li>'What is the procedure for returning a product that was part of a special occasion promotion?'</li></ul> |
|
69 |
+
| general faq | <ul><li>'What is the optimal brewing time for green tea to ensure the highest health benefits?'</li><li>'Can you suggest some effective workouts for weight loss that take into account different age groups and health conditions?'</li><li>'Can you provide more details on how Green Tea boosts immunity and its overall health benefits?'</li></ul> |
|
70 |
+
| product discoverability | <ul><li>'Can you show me sarees in bright colors suitable for weddings?'</li><li>'Do you have adidas Superstar shoes?'</li><li>'Do you have any bestseller teas available?'</li></ul> |
|
71 |
+
| general_faq | <ul><li>'How to identify mashru silk'</li><li>'How to check purity of katan silk'</li><li>'How do the traditional hand-woven Banarasi sarees from HKV Benaras differ from those made by machine-driven industries?'</li></ul> |
|
72 |
+
|
73 |
+
## Evaluation
|
74 |
+
|
75 |
+
### Metrics
|
76 |
+
| Label | Accuracy |
|
77 |
+
|:--------|:---------|
|
78 |
+
| **all** | 0.88 |
|
79 |
+
|
80 |
+
## Uses
|
81 |
+
|
82 |
+
### Direct Use for Inference
|
83 |
+
|
84 |
+
First install the SetFit library:
|
85 |
+
|
86 |
+
```bash
|
87 |
+
pip install setfit
|
88 |
+
```
|
89 |
+
|
90 |
+
Then you can load this model and run inference.
|
91 |
+
|
92 |
+
```python
|
93 |
+
from setfit import SetFitModel
|
94 |
+
|
95 |
+
# Download from the 🤗 Hub
|
96 |
+
model = SetFitModel.from_pretrained("Shankhdhar/classifier_woog_firstbud")
|
97 |
+
# Run inference
|
98 |
+
preds = model("Variety of cookie boxes")
|
99 |
+
```
|
100 |
+
|
101 |
+
<!--
|
102 |
+
### Downstream Use
|
103 |
+
|
104 |
+
*List how someone could finetune this model on their own dataset.*
|
105 |
+
-->
|
106 |
+
|
107 |
+
<!--
|
108 |
+
### Out-of-Scope Use
|
109 |
+
|
110 |
+
*List how the model may foreseeably be misused and address what users ought not to do with the model.*
|
111 |
+
-->
|
112 |
+
|
113 |
+
<!--
|
114 |
+
## Bias, Risks and Limitations
|
115 |
+
|
116 |
+
*What are the known or foreseeable issues stemming from this model? You could also flag here known failure cases or weaknesses of the model.*
|
117 |
+
-->
|
118 |
+
|
119 |
+
<!--
|
120 |
+
### Recommendations
|
121 |
+
|
122 |
+
*What are recommendations with respect to the foreseeable issues? For example, filtering explicit content.*
|
123 |
+
-->
|
124 |
+
|
125 |
+
## Training Details
|
126 |
+
|
127 |
+
### Training Set Metrics
|
128 |
+
| Training set | Min | Median | Max |
|
129 |
+
|:-------------|:----|:--------|:----|
|
130 |
+
| Word count | 4 | 12.1961 | 28 |
|
131 |
+
|
132 |
+
| Label | Training Sample Count |
|
133 |
+
|:------------------------|:----------------------|
|
134 |
+
| general faq | 16 |
|
135 |
+
| general_faq | 8 |
|
136 |
+
| order tracking | 32 |
|
137 |
+
| product discoverability | 50 |
|
138 |
+
| product faq | 50 |
|
139 |
+
| product policy | 48 |
|
140 |
+
|
141 |
+
### Training Hyperparameters
|
142 |
+
- batch_size: (16, 16)
|
143 |
+
- num_epochs: (2, 2)
|
144 |
+
- max_steps: -1
|
145 |
+
- sampling_strategy: oversampling
|
146 |
+
- body_learning_rate: (2e-05, 1e-05)
|
147 |
+
- head_learning_rate: 0.01
|
148 |
+
- loss: CosineSimilarityLoss
|
149 |
+
- distance_metric: cosine_distance
|
150 |
+
- margin: 0.25
|
151 |
+
- end_to_end: False
|
152 |
+
- use_amp: False
|
153 |
+
- warmup_proportion: 0.1
|
154 |
+
- seed: 42
|
155 |
+
- eval_max_steps: -1
|
156 |
+
- load_best_model_at_end: True
|
157 |
+
|
158 |
+
### Training Results
|
159 |
+
| Epoch | Step | Training Loss | Validation Loss |
|
160 |
+
|:------:|:----:|:-------------:|:---------------:|
|
161 |
+
| 0.0005 | 1 | 0.2315 | - |
|
162 |
+
| 0.0243 | 50 | 0.2246 | - |
|
163 |
+
| 0.0485 | 100 | 0.1522 | - |
|
164 |
+
| 0.0728 | 150 | 0.0998 | - |
|
165 |
+
| 0.0970 | 200 | 0.0175 | - |
|
166 |
+
| 0.1213 | 250 | 0.0123 | - |
|
167 |
+
| 0.1456 | 300 | 0.0118 | - |
|
168 |
+
| 0.1698 | 350 | 0.0013 | - |
|
169 |
+
| 0.1941 | 400 | 0.0005 | - |
|
170 |
+
| 0.2183 | 450 | 0.0008 | - |
|
171 |
+
| 0.2426 | 500 | 0.0006 | - |
|
172 |
+
| 0.2669 | 550 | 0.0002 | - |
|
173 |
+
| 0.2911 | 600 | 0.0003 | - |
|
174 |
+
| 0.3154 | 650 | 0.0066 | - |
|
175 |
+
| 0.3396 | 700 | 0.0004 | - |
|
176 |
+
| 0.3639 | 750 | 0.0002 | - |
|
177 |
+
| 0.3882 | 800 | 0.0002 | - |
|
178 |
+
| 0.4124 | 850 | 0.0003 | - |
|
179 |
+
| 0.4367 | 900 | 0.0002 | - |
|
180 |
+
| 0.4609 | 950 | 0.0001 | - |
|
181 |
+
| 0.4852 | 1000 | 0.0001 | - |
|
182 |
+
| 0.5095 | 1050 | 0.0001 | - |
|
183 |
+
| 0.5337 | 1100 | 0.0001 | - |
|
184 |
+
| 0.5580 | 1150 | 0.0002 | - |
|
185 |
+
| 0.5822 | 1200 | 0.0002 | - |
|
186 |
+
| 0.6065 | 1250 | 0.0001 | - |
|
187 |
+
| 0.6308 | 1300 | 0.0001 | - |
|
188 |
+
| 0.6550 | 1350 | 0.0001 | - |
|
189 |
+
| 0.6793 | 1400 | 0.0002 | - |
|
190 |
+
| 0.7035 | 1450 | 0.0001 | - |
|
191 |
+
| 0.7278 | 1500 | 0.0001 | - |
|
192 |
+
| 0.7521 | 1550 | 0.0001 | - |
|
193 |
+
| 0.7763 | 1600 | 0.0001 | - |
|
194 |
+
| 0.8006 | 1650 | 0.0001 | - |
|
195 |
+
| 0.8248 | 1700 | 0.0001 | - |
|
196 |
+
| 0.8491 | 1750 | 0.0001 | - |
|
197 |
+
| 0.8734 | 1800 | 0.0001 | - |
|
198 |
+
| 0.8976 | 1850 | 0.0001 | - |
|
199 |
+
| 0.9219 | 1900 | 0.0001 | - |
|
200 |
+
| 0.9461 | 1950 | 0.0001 | - |
|
201 |
+
| 0.9704 | 2000 | 0.0001 | - |
|
202 |
+
| 0.9947 | 2050 | 0.0001 | - |
|
203 |
+
| 1.0189 | 2100 | 0.0001 | - |
|
204 |
+
| 1.0432 | 2150 | 0.0001 | - |
|
205 |
+
| 1.0674 | 2200 | 0.0001 | - |
|
206 |
+
| 1.0917 | 2250 | 0.0001 | - |
|
207 |
+
| 1.1160 | 2300 | 0.0619 | - |
|
208 |
+
| 1.1402 | 2350 | 0.0001 | - |
|
209 |
+
| 1.1645 | 2400 | 0.0 | - |
|
210 |
+
| 1.1887 | 2450 | 0.0001 | - |
|
211 |
+
| 1.2130 | 2500 | 0.0001 | - |
|
212 |
+
| 1.2373 | 2550 | 0.0001 | - |
|
213 |
+
| 1.2615 | 2600 | 0.0001 | - |
|
214 |
+
| 1.2858 | 2650 | 0.0001 | - |
|
215 |
+
| 1.3100 | 2700 | 0.0 | - |
|
216 |
+
| 1.3343 | 2750 | 0.0001 | - |
|
217 |
+
| 1.3586 | 2800 | 0.0001 | - |
|
218 |
+
| 1.3828 | 2850 | 0.0001 | - |
|
219 |
+
| 1.4071 | 2900 | 0.0001 | - |
|
220 |
+
| 1.4313 | 2950 | 0.0001 | - |
|
221 |
+
| 1.4556 | 3000 | 0.0 | - |
|
222 |
+
| 1.4799 | 3050 | 0.0001 | - |
|
223 |
+
| 1.5041 | 3100 | 0.0001 | - |
|
224 |
+
| 1.5284 | 3150 | 0.0001 | - |
|
225 |
+
| 1.5526 | 3200 | 0.0001 | - |
|
226 |
+
| 1.5769 | 3250 | 0.0001 | - |
|
227 |
+
| 1.6012 | 3300 | 0.0001 | - |
|
228 |
+
| 1.6254 | 3350 | 0.0001 | - |
|
229 |
+
| 1.6497 | 3400 | 0.0001 | - |
|
230 |
+
| 1.6739 | 3450 | 0.0001 | - |
|
231 |
+
| 1.6982 | 3500 | 0.0001 | - |
|
232 |
+
| 1.7225 | 3550 | 0.0001 | - |
|
233 |
+
| 1.7467 | 3600 | 0.0 | - |
|
234 |
+
| 1.7710 | 3650 | 0.0001 | - |
|
235 |
+
| 1.7952 | 3700 | 0.0 | - |
|
236 |
+
| 1.8195 | 3750 | 0.0001 | - |
|
237 |
+
| 1.8438 | 3800 | 0.0001 | - |
|
238 |
+
| 1.8680 | 3850 | 0.0001 | - |
|
239 |
+
| 1.8923 | 3900 | 0.0001 | - |
|
240 |
+
| 1.9165 | 3950 | 0.0001 | - |
|
241 |
+
| 1.9408 | 4000 | 0.0001 | - |
|
242 |
+
| 1.9651 | 4050 | 0.0 | - |
|
243 |
+
| 1.9893 | 4100 | 0.0001 | - |
|
244 |
+
|
245 |
+
### Framework Versions
|
246 |
+
- Python: 3.10.12
|
247 |
+
- SetFit: 1.0.3
|
248 |
+
- Sentence Transformers: 3.0.1
|
249 |
+
- Transformers: 4.39.0
|
250 |
+
- PyTorch: 2.2.2+cu121
|
251 |
+
- Datasets: 2.20.0
|
252 |
+
- Tokenizers: 0.15.2
|
253 |
+
|
254 |
+
## Citation
|
255 |
+
|
256 |
+
### BibTeX
|
257 |
+
```bibtex
|
258 |
+
@article{https://doi.org/10.48550/arxiv.2209.11055,
|
259 |
+
doi = {10.48550/ARXIV.2209.11055},
|
260 |
+
url = {https://arxiv.org/abs/2209.11055},
|
261 |
+
author = {Tunstall, Lewis and Reimers, Nils and Jo, Unso Eun Seo and Bates, Luke and Korat, Daniel and Wasserblat, Moshe and Pereg, Oren},
|
262 |
+
keywords = {Computation and Language (cs.CL), FOS: Computer and information sciences, FOS: Computer and information sciences},
|
263 |
+
title = {Efficient Few-Shot Learning Without Prompts},
|
264 |
+
publisher = {arXiv},
|
265 |
+
year = {2022},
|
266 |
+
copyright = {Creative Commons Attribution 4.0 International}
|
267 |
+
}
|
268 |
+
```
|
269 |
+
|
270 |
+
<!--
|
271 |
+
## Glossary
|
272 |
+
|
273 |
+
*Clearly define terms in order to be accessible across audiences.*
|
274 |
+
-->
|
275 |
+
|
276 |
+
<!--
|
277 |
+
## Model Card Authors
|
278 |
+
|
279 |
+
*Lists the people who create the model card, providing recognition and accountability for the detailed work that goes into its construction.*
|
280 |
+
-->
|
281 |
+
|
282 |
+
<!--
|
283 |
+
## Model Card Contact
|
284 |
+
|
285 |
+
*Provides a way for people who have updates to the Model Card, suggestions, or questions, to contact the Model Card authors.*
|
286 |
+
-->
|
config.json
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "sentence-transformers/paraphrase-mpnet-base-v2",
|
3 |
+
"architectures": [
|
4 |
+
"MPNetModel"
|
5 |
+
],
|
6 |
+
"attention_probs_dropout_prob": 0.1,
|
7 |
+
"bos_token_id": 0,
|
8 |
+
"eos_token_id": 2,
|
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-05,
|
15 |
+
"max_position_embeddings": 514,
|
16 |
+
"model_type": "mpnet",
|
17 |
+
"num_attention_heads": 12,
|
18 |
+
"num_hidden_layers": 12,
|
19 |
+
"pad_token_id": 1,
|
20 |
+
"relative_attention_num_buckets": 32,
|
21 |
+
"torch_dtype": "float32",
|
22 |
+
"transformers_version": "4.39.0",
|
23 |
+
"vocab_size": 30527
|
24 |
+
}
|
config_sentence_transformers.json
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"__version__": {
|
3 |
+
"sentence_transformers": "3.0.1",
|
4 |
+
"transformers": "4.39.0",
|
5 |
+
"pytorch": "2.2.2+cu121"
|
6 |
+
},
|
7 |
+
"prompts": {},
|
8 |
+
"default_prompt_name": null,
|
9 |
+
"similarity_fn_name": null
|
10 |
+
}
|
config_setfit.json
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"labels": [
|
3 |
+
"general faq",
|
4 |
+
"general_faq",
|
5 |
+
"order tracking",
|
6 |
+
"product discoverability",
|
7 |
+
"product faq",
|
8 |
+
"product policy"
|
9 |
+
],
|
10 |
+
"normalize_embeddings": false
|
11 |
+
}
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d55dca07668f333d89688f8a1e220febaa8210b1a6de0a2ef447579fece7dd66
|
3 |
+
size 437967672
|
model_head.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cff074a7404e80552f87bce99cb0009737e245b3b7217e8e15f4271d3f3d4664
|
3 |
+
size 38311
|
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,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bos_token": {
|
3 |
+
"content": "<s>",
|
4 |
+
"lstrip": false,
|
5 |
+
"normalized": false,
|
6 |
+
"rstrip": false,
|
7 |
+
"single_word": false
|
8 |
+
},
|
9 |
+
"cls_token": {
|
10 |
+
"content": "<s>",
|
11 |
+
"lstrip": false,
|
12 |
+
"normalized": false,
|
13 |
+
"rstrip": false,
|
14 |
+
"single_word": false
|
15 |
+
},
|
16 |
+
"eos_token": {
|
17 |
+
"content": "</s>",
|
18 |
+
"lstrip": false,
|
19 |
+
"normalized": false,
|
20 |
+
"rstrip": false,
|
21 |
+
"single_word": false
|
22 |
+
},
|
23 |
+
"mask_token": {
|
24 |
+
"content": "<mask>",
|
25 |
+
"lstrip": true,
|
26 |
+
"normalized": false,
|
27 |
+
"rstrip": false,
|
28 |
+
"single_word": false
|
29 |
+
},
|
30 |
+
"pad_token": {
|
31 |
+
"content": "<pad>",
|
32 |
+
"lstrip": false,
|
33 |
+
"normalized": false,
|
34 |
+
"rstrip": false,
|
35 |
+
"single_word": false
|
36 |
+
},
|
37 |
+
"sep_token": {
|
38 |
+
"content": "</s>",
|
39 |
+
"lstrip": false,
|
40 |
+
"normalized": false,
|
41 |
+
"rstrip": false,
|
42 |
+
"single_word": false
|
43 |
+
},
|
44 |
+
"unk_token": {
|
45 |
+
"content": "[UNK]",
|
46 |
+
"lstrip": false,
|
47 |
+
"normalized": false,
|
48 |
+
"rstrip": false,
|
49 |
+
"single_word": false
|
50 |
+
}
|
51 |
+
}
|
tokenizer.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
tokenizer_config.json
ADDED
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"added_tokens_decoder": {
|
3 |
+
"0": {
|
4 |
+
"content": "<s>",
|
5 |
+
"lstrip": false,
|
6 |
+
"normalized": false,
|
7 |
+
"rstrip": false,
|
8 |
+
"single_word": false,
|
9 |
+
"special": true
|
10 |
+
},
|
11 |
+
"1": {
|
12 |
+
"content": "<pad>",
|
13 |
+
"lstrip": false,
|
14 |
+
"normalized": false,
|
15 |
+
"rstrip": false,
|
16 |
+
"single_word": false,
|
17 |
+
"special": true
|
18 |
+
},
|
19 |
+
"2": {
|
20 |
+
"content": "</s>",
|
21 |
+
"lstrip": false,
|
22 |
+
"normalized": false,
|
23 |
+
"rstrip": false,
|
24 |
+
"single_word": false,
|
25 |
+
"special": true
|
26 |
+
},
|
27 |
+
"104": {
|
28 |
+
"content": "[UNK]",
|
29 |
+
"lstrip": false,
|
30 |
+
"normalized": false,
|
31 |
+
"rstrip": false,
|
32 |
+
"single_word": false,
|
33 |
+
"special": true
|
34 |
+
},
|
35 |
+
"30526": {
|
36 |
+
"content": "<mask>",
|
37 |
+
"lstrip": true,
|
38 |
+
"normalized": false,
|
39 |
+
"rstrip": false,
|
40 |
+
"single_word": false,
|
41 |
+
"special": true
|
42 |
+
}
|
43 |
+
},
|
44 |
+
"bos_token": "<s>",
|
45 |
+
"clean_up_tokenization_spaces": true,
|
46 |
+
"cls_token": "<s>",
|
47 |
+
"do_basic_tokenize": true,
|
48 |
+
"do_lower_case": true,
|
49 |
+
"eos_token": "</s>",
|
50 |
+
"mask_token": "<mask>",
|
51 |
+
"model_max_length": 512,
|
52 |
+
"never_split": null,
|
53 |
+
"pad_token": "<pad>",
|
54 |
+
"sep_token": "</s>",
|
55 |
+
"strip_accents": null,
|
56 |
+
"tokenize_chinese_chars": true,
|
57 |
+
"tokenizer_class": "MPNetTokenizer",
|
58 |
+
"unk_token": "[UNK]"
|
59 |
+
}
|
vocab.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|