Views
No views yet
SentenceTransformer(
(0): Transformer({'max_seq_length': 256, 'do_lower_case': False, 'architecture': 'BertModel'})
(1): Pooling({'word_embedding_dimension': 384, 'pooling_mode_cls_token': False, 'pooling_mode_mean_tokens': True, 'pooling_mode_max_tokens': False, 'pooling_mode_mean_sqrt_len_tokens': False, 'pooling_mode_weightedmean_tokens': False, 'pooling_mode_lasttoken': False, 'include_prompt': True})
(2): Normalize()
)pip install -U sentence-transformers1from sentence_transformers import SentenceTransformer
2
3# Download from the 🤗 Hub
4model = SentenceTransformer("AryehRotberg/ToS-Sentence-Transformers-V4")
5# Run inference
6sentences = [
7 'The Services may contain links or connections to third party websites or services that are not owned or controlled by Guilded. When you access third party websites or use third party services, you accept that there are risks in doing so, and that Guilded is not responsible for such risks.',
8 'This service assumes no responsibility and liability for the contents of links to other websites',
9 'Copyright license limited for the purposes of that same service but transferable and sublicenseable',
10]
11embeddings = model.encode(sentences)
12print(embeddings.shape)
13# [3, 384]
14
15# Get the similarity scores for the embeddings
16similarities = model.similarity(embeddings, embeddings)
17print(similarities)
18# tensor([[ 1.0000, 0.6397, -0.0500],
19# [ 0.6397, 1.0000, 0.0874],
20# [-0.0500, 0.0874, 1.0000]])all-nli-devTripletEvaluator| Metric | Value |
|---|---|
| cosine_accuracy | 0.9993 |
anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
| anchor | positive | negative |
|---|---|---|
If you ever decide to stop using Snapchat, you can just ask us to delete your account. | You have the right to leave this service at any time | Your personal information is used for many different purposes |
you forever waive and agree not to claim or assert any entitlement to any and all moral rights of an author in any of the User Content. | You waive your moral rights | You aren’t allowed to remove or edit user-generated content |
You agree and shall indemnify and hold Dailymotion- harmless from and against any liability, loss, damages (including punitive damages), claim, settlement payment, cost and expense, interest, award, judgment, diminution in value, fine, fee (including reasonable attorneys’ fees), and penalty, or other charge (including reasonable attorneys’ fees and all other cost of investigating, defending or asserting any claim for indemnification under these Terms) arising from or relating to (i) Your Content, (ii) Your violation of the Terms or any other policy of Dailymotion. (iii) Your use of the Dailymotion Service. and (iv) Your violation of any third party rights, including without limitation any copyright, property, publicity or privacy rights. | You agree to defend, indemnify, and hold the service harmless in case of a claim related to your use of the service | User-generated content can be blocked or censored for any reason |
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 20.0,
3 "similarity_fct": "cos_sim",
4 "gather_across_devices": false
5}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
| anchor | positive | negative |
|---|---|---|
YOU AGREE THAT USE OF THE WEB SITE AND THE SERVICES IS AT YOUR SOLE RISK. | The service is provided 'as is' and to be used at your sole risk | The court of law governing the terms is in a jurisdiction that is friendlier to user privacy protection. |
If you continue to use our services after the changes have taken effect, it means that you agree to the changes. | Terms may be changed at any time | The service is only available in some countries approved by its government |
We may revise these Terms of Use or any of the other Terms from time to time. You are ,expected to check this page and our Terms from time to time to take notice of any changes | Terms may be changed at any time | Voice data is collected and shared with third-parties |
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 20.0,
3 "similarity_fct": "cos_sim",
4 "gather_across_devices": false
5}eval_strategy: stepsper_device_train_batch_size: 16per_device_eval_batch_size: 16learning_rate: 2e-05num_train_epochs: 1warmup_ratio: 0.1fp16: Truebatch_sampler: no_duplicatesoverwrite_output_dir: Falsedo_predict: Falseeval_strategy: stepsprediction_loss_only: Trueper_device_train_batch_size: 16per_device_eval_batch_size: 16per_gpu_train_batch_size: Noneper_gpu_eval_batch_size: Nonegradient_accumulation_steps: 1eval_accumulation_steps: Nonetorch_empty_cache_steps: Nonelearning_rate: 2e-05weight_decay: 0.0adam_beta1: 0.9adam_beta2: 0.999adam_epsilon: 1e-08max_grad_norm: 1.0num_train_epochs: 1max_steps: -1lr_scheduler_type: linearlr_scheduler_kwargs: {}warmup_ratio: 0.1warmup_steps: 0log_level: passivelog_level_replica: warninglog_on_each_node: Truelogging_nan_inf_filter: Truesave_safetensors: Truesave_on_each_node: Falsesave_only_model: Falserestore_callback_states_from_checkpoint: Falseno_cuda: Falseuse_cpu: Falseuse_mps_device: Falseseed: 42data_seed: Nonejit_mode_eval: Falsebf16: Falsefp16: Truefp16_opt_level: O1half_precision_backend: autobf16_full_eval: Falsefp16_full_eval: Falsetf32: Nonelocal_rank: 0ddp_backend: Nonetpu_num_cores: Nonetpu_metrics_debug: Falsedebug: []dataloader_drop_last: Falsedataloader_num_workers: 0dataloader_prefetch_factor: Nonepast_index: -1disable_tqdm: Falseremove_unused_columns: Truelabel_names: Noneload_best_model_at_end: Falseignore_data_skip: Falsefsdp: []fsdp_min_num_params: 0fsdp_config: {'min_num_params': 0, 'xla': False, 'xla_fsdp_v2': False, 'xla_fsdp_grad_ckpt': False}fsdp_transformer_layer_cls_to_wrap: Noneaccelerator_config: {'split_batches': False, 'dispatch_batches': None, 'even_batches': True, 'use_seedable_sampler': True, 'non_blocking': False, 'gradient_accumulation_kwargs': None}parallelism_config: Nonedeepspeed: Nonelabel_smoothing_factor: 0.0optim: adamw_torch_fusedoptim_args: Noneadafactor: Falsegroup_by_length: Falselength_column_name: lengthproject: huggingfacetrackio_space_id: trackioddp_find_unused_parameters: Noneddp_bucket_cap_mb: Noneddp_broadcast_buffers: Falsedataloader_pin_memory: Truedataloader_persistent_workers: Falseskip_memory_metrics: Trueuse_legacy_prediction_loop: Falsepush_to_hub: Falseresume_from_checkpoint: Nonehub_model_id: Nonehub_strategy: every_savehub_private_repo: Nonehub_always_push: Falsehub_revision: Nonegradient_checkpointing: Falsegradient_checkpointing_kwargs: Noneinclude_inputs_for_metrics: Falseinclude_for_metrics: []eval_do_concat_batches: Truefp16_backend: autopush_to_hub_model_id: Nonepush_to_hub_organization: Nonemp_parameters:auto_find_batch_size: Falsefull_determinism: Falsetorchdynamo: Noneray_scope: lastddp_timeout: 1800torch_compile: Falsetorch_compile_backend: Nonetorch_compile_mode: Noneinclude_tokens_per_second: Falseinclude_num_input_tokens_seen: noneftune_noise_alpha: Noneoptim_target_modules: Nonebatch_eval_metrics: Falseeval_on_start: Falseuse_liger_kernel: Falseliger_kernel_config: Noneeval_use_gather_object: Falseaverage_tokens_across_devices: Trueprompts: Nonebatch_sampler: no_duplicatesmulti_dataset_batch_sampler: proportionalrouter_mapping: {}learning_rate_mapping: {}| Epoch | Step | Training Loss | Validation Loss | all-nli-dev_cosine_accuracy |
|---|---|---|---|---|
| -1 | -1 | - | - | 0.9426 |
| 0.0130 | 100 | 1.4227 | 1.1709 | 0.9595 |
| 0.0260 | 200 | 1.1178 | 0.9104 | 0.9727 |
| 0.0391 | 300 | 0.9473 | 0.7546 | 0.9799 |
| 0.0521 | 400 | 0.7559 | 0.6471 | 0.9853 |
| 0.0651 | 500 | 0.6617 | 0.5684 | 0.9880 |
| 0.0781 | 600 | 0.5857 | 0.5047 | 0.9899 |
| 0.0912 | 700 | 0.5768 | 0.4578 | 0.9910 |
| 0.1042 | 800 | 0.493 | 0.4281 | 0.9921 |
| 0.1172 | 900 | 0.4877 | 0.3899 | 0.9931 |
| 0.1302 | 1000 | 0.4315 | 0.3593 | 0.9939 |
| 0.1432 | 1100 | 0.3894 | 0.3458 | 0.9940 |
| 0.1563 | 1200 | 0.3681 | 0.3215 | 0.9945 |
| 0.1693 | 1300 | 0.3533 | 0.3151 | 0.9951 |
| 0.1823 | 1400 | 0.3242 | 0.3093 | 0.9949 |
| 0.1953 | 1500 | 0.346 | 0.2820 | 0.9955 |
| 0.2084 | 1600 | 0.3212 | 0.2637 | 0.9960 |
| 0.2214 | 1700 | 0.2889 | 0.2601 | 0.9960 |
| 0.2344 | 1800 | 0.2855 | 0.2423 | 0.9960 |
| 0.2474 | 1900 | 0.2621 | 0.2396 | 0.9964 |
| 0.2605 | 2000 | 0.265 | 0.2299 | 0.9968 |
| 0.2735 | 2100 | 0.2401 | 0.2191 | 0.9969 |
| 0.2865 | 2200 | 0.254 | 0.2166 | 0.9966 |
| 0.2995 | 2300 | 0.2543 | 0.2036 | 0.9971 |
| 0.3125 | 2400 | 0.2667 | 0.1958 | 0.9973 |
| 0.3256 | 2500 | 0.2236 | 0.1937 | 0.9972 |
| 0.3386 | 2600 | 0.232 | 0.1875 | 0.9974 |
| 0.3516 | 2700 | 0.2021 | 0.1806 | 0.9977 |
| 0.3646 | 2800 | 0.2147 | 0.1787 | 0.9974 |
| 0.3777 | 2900 | 0.1929 | 0.1727 | 0.9975 |
| 0.3907 | 3000 | 0.1778 | 0.1721 | 0.9977 |
| 0.4037 | 3100 | 0.2031 | 0.1678 | 0.9974 |
| 0.4167 | 3200 | 0.1784 | 0.1645 | 0.9978 |
| 0.4297 | 3300 | 0.183 | 0.1593 | 0.9977 |
| 0.4428 | 3400 | 0.1878 | 0.1508 | 0.9979 |
| 0.4558 | 3500 | 0.1915 | 0.1478 | 0.9980 |
| 0.4688 | 3600 | 0.1611 | 0.1448 | 0.9983 |
| 0.4818 | 3700 | 0.1606 | 0.1385 | 0.9983 |
| 0.4949 | 3800 | 0.1604 | 0.1408 | 0.9984 |
| 0.5079 | 3900 | 0.1733 | 0.1327 | 0.9983 |
| 0.5209 | 4000 | 0.159 | 0.1277 | 0.9986 |
| 0.5339 | 4100 | 0.1554 | 0.1255 | 0.9987 |
| 0.5469 | 4200 | 0.1546 | 0.1225 | 0.9985 |
| 0.5600 | 4300 | 0.1536 | 0.1222 | 0.9984 |
| 0.5730 | 4400 | 0.1253 | 0.1174 | 0.9987 |
| 0.5860 | 4500 | 0.151 | 0.1137 | 0.9986 |
| 0.5990 | 4600 | 0.1293 | 0.1116 | 0.9988 |
| 0.6121 | 4700 | 0.1272 | 0.1093 | 0.9986 |
| 0.6251 | 4800 | 0.1326 | 0.1074 | 0.9985 |
| 0.6381 | 4900 | 0.135 | 0.1044 | 0.9987 |
| 0.6511 | 5000 | 0.1253 | 0.1013 | 0.9989 |
| 0.6641 | 5100 | 0.1466 | 0.0995 | 0.9989 |
| 0.6772 | 5200 | 0.1378 | 0.0993 | 0.9991 |
| 0.6902 | 5300 | 0.1245 | 0.0959 | 0.9989 |
| 0.7032 | 5400 | 0.1124 | 0.0946 | 0.9989 |
| 0.7162 | 5500 | 0.0937 | 0.0926 | 0.9988 |
| 0.7293 | 5600 | 0.1378 | 0.0907 | 0.9990 |
| 0.7423 | 5700 | 0.1234 | 0.0889 | 0.9991 |
| 0.7553 | 5800 | 0.1153 | 0.0876 | 0.9991 |
| 0.7683 | 5900 | 0.1172 | 0.0865 | 0.9990 |
| 0.7814 | 6000 | 0.1135 | 0.0855 | 0.9992 |
| 0.7944 | 6100 | 0.1178 | 0.0834 | 0.9991 |
| 0.8074 | 6200 | 0.1195 | 0.0812 | 0.9991 |
| 0.8204 | 6300 | 0.1068 | 0.0795 | 0.9991 |
| 0.8334 | 6400 | 0.0824 | 0.0791 | 0.9992 |
| 0.8465 | 6500 | 0.1173 | 0.0768 | 0.9992 |
| 0.8595 | 6600 | 0.1166 | 0.0757 | 0.9992 |
| 0.8725 | 6700 | 0.1119 | 0.0755 | 0.9992 |
| 0.8855 | 6800 | 0.1017 | 0.0750 | 0.9993 |
| 0.8986 | 6900 | 0.1148 | 0.0745 | 0.9993 |
| 0.9116 | 7000 | 0.0976 | 0.0736 | 0.9993 |
| 0.9246 | 7100 | 0.0973 | 0.0728 | 0.9993 |
| 0.9376 | 7200 | 0.0984 | 0.0726 | 0.9993 |
| 0.9506 | 7300 | 0.0943 | 0.0723 | 0.9993 |
| 0.9637 | 7400 | 0.0825 | 0.0719 | 0.9993 |
| 0.9767 | 7500 | 0.0961 | 0.0716 | 0.9993 |
| 0.9897 | 7600 | 0.0893 | 0.0715 | 0.9993 |
1@inproceedings{reimers-2019-sentence-bert,
2 title = "Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks",
3 author = "Reimers, Nils and Gurevych, Iryna",
4 booktitle = "Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing",
5 month = "11",
6 year = "2019",
7 publisher = "Association for Computational Linguistics",
8 url = "https://arxiv.org/abs/1908.10084",
9}1@misc{henderson2017efficient,
2 title={Efficient Natural Language Response Suggestion for Smart Reply},
3 author={Matthew Henderson and Rami Al-Rfou and Brian Strope and Yun-hsuan Sung and Laszlo Lukacs and Ruiqi Guo and Sanjiv Kumar and Balint Miklos and Ray Kurzweil},
4 year={2017},
5 eprint={1705.00652},
6 archivePrefix={arXiv},
7 primaryClass={cs.CL}
8}