Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks
Paper • 1908.10084 • Published • 16
How to use shaurya23102/insurance-embedding-model with sentence-transformers:
from sentence_transformers import SentenceTransformer
model = SentenceTransformer("shaurya23102/insurance-embedding-model")
sentences = [
"What items are to be subsumed into Procedure Charges?",
"iii Any other Medical Expenses as a result of the harvesting from the organ donor iv Costs directly or indirectly associated with the acquisition of the donor s organ v Transplant of any organ tissue where the transplant is experimental or investigational vi Expenses related to organ transportation or preservation vii Expenses incurred by an Insured Person as a donor viii Any other medical treatment or complication in respect of the donor consequent to harvesting 11 Domiciliary Hospitalization We will cover the Medical Expenses incurred in respect of the Domiciliary Hospitalization of the Insured Person during the Policy Period provided that i The Domiciliary Hospitalization continues for at least 3 consecutive days in which case we will make payment under this Cover in respect of Medical Expenses incurred from the first day of Domiciliary Hospitalization We shall not be liable to pay for any claim under this Cover which arises directly or indirectly from or in connection with any of the following a Asthma bronchitis tonsillitis and upper respiratory tract infection including laryngitis and pharyngitis cough and cold influenza b Arthritis gout and rheumatism c Ailments of spine disc d Chronic nephritis and nephritic syndrome e Any liver disease f",
"any admission primarily for diagnostics and evaluation purposes only are excluded b Any diagnostic expenses which are not related or not incidental to the current diagnosis and treatment are excluded ii Code Excl05 Exclusion Name Rest Cure rehabilitation and respite care a Expenses related to any admission primarily for enforced bed rest and not for receiving treatment This also includes I Custodial care either at home or in a nursing facility for personal care such as help with activities of daily living such as bathing dressing moving around either by skilled nurses or assistant or non skilled persons II Any services for people who are terminally ill to address physical social emotional and spiritual needs iii Code Excl06 Obesity Weight Control Expenses related to the surgical treatment of obesity that does not fulfil all the below conditions 1 Surgery to be conducted is upon the advice of the Doctor 2 The surgery Procedure conducted should be supported by clinical protocols 3 The member has to be 18 years of age or older and 4 Body Mass Index BMI 5 greater than or equal to 40 or 6 greater than or equal to 35 in conjunction with any of the following",
"EXPENSESRELATEDTOPRESCRIPTIONONDISCHARGE 34 FILEOPENINGCHARGES 35 INCIDENTALEXPENSES MISC CHARGES NOTEXPLAINED 36 PATIENTIDENTIFICATIONBAND NAMETAG 37 PULSEOXYMETERCHARGES List III Items that are to be subsumed into Procedure Charges SINo Item 1 HAIRREMOVALCREAM 2 DISPOSABLESRAZORSCHARGES forsitepreparations 3 EYEPAD 4 EYESHEILD 5 CAMERACOVER 6 DVD CDCHARGES 7 GAUSESOFT 8 GAUZE 9 WARDANDTHEATREBOOKINGCHARGES 10 ARTHROSCOPYANDENDOSCOPYINSTRUMENTS 11 MICROSCOPECOVER 12 SURGICALBLADES HARMONICSCALPEL SHAVER 13 SURGICALDRILL 14 EYEKIT 15 EYEDRAPE 16 X RAYFILM 17 BOYLESAPPARATUSCHARGES 18 COTTON 19 COTTONBANDAGE 20 SURGICALTAPE 21 APRON 22 TORNIQUET 23 ORTHOBUNDLE GYNAECBUNDLE List IV Items that are to be subsumed into costs of treatment SINo Item 1 ADMISSION REGISTRATIONCHARGES 2 HOSPITALISATIONFOREVALUATION DIAGNOSTICPURPOSE 3 URINECONTAINER 4 BLOODRESERVATIONCHARGESANDANTENATALBOOKINGCHARGES 5 BIPAPMACHINE 6 CPAP CAPDEQUIPMENTS 7 INFUSIONPUMP COST 8 HYDROGENPEROXIDE SPIRITSDISINFECTANTSETC 9 NUTRITIONPLANNINGCHARGES DIETICIANCHARGES DIETCHARGES 10 HIVKIT 11 ANTISEPTICMOUTHWASH 12 LOZENGES 13 MOUTHPAINT 14 VACCINATIONCHARGES 15 ALCOHOLSWABES 16 SCRUBSOLUTION STERILLIUM 17 Glucometer Strips 18 URINEBAG g Other Terms and Conditions I CLAIM ADMINISTRATION The fulfillment of the terms and conditions of this Policy including payment of premium by the due dates mentioned in the Policy Schedule insofar as they relate to anything to be done or complied with by each of You shall be conditions precedent to admission of Our liability You are requested to go through our"
]
embeddings = model.encode(sentences)
similarities = model.similarity(embeddings, embeddings)
print(similarities.shape)
# [4, 4]This is a sentence-transformers model finetuned from sentence-transformers/all-mpnet-base-v2 on the json dataset. It maps sentences & paragraphs to a 768-dimensional dense vector space and can be used for retrieval.
SentenceTransformer(
(0): Transformer({'transformer_task': 'feature-extraction', 'modality_config': {'text': {'method': 'forward', 'method_output_name': 'last_hidden_state'}}, 'module_output_name': 'token_embeddings', 'architecture': 'MPNetModel'})
(1): Pooling({'embedding_dimension': 768, 'pooling_mode': 'mean', 'include_prompt': True})
(2): Normalize({})
)
First install the Sentence Transformers library:
pip install -U sentence-transformers
Then you can load this model and run inference.
from sentence_transformers import SentenceTransformer
# Download from the 🤗 Hub
model = SentenceTransformer("sentence_transformers_model_id")
# Run inference
sentences = [
'What does the insurer consider as fraud for the purpose of this policy?',
'in accordance with the terms and conditions of the chosen policy 6 Fraud If any claim made by the insured person is in any respect fraudulent or if any false statement or declaration is made or used in support thereof or if any fraudulent means or devices are used by the insured person or anyone acting on his her behalf to obtain any benefit under this policy all benefits under this policy and the premium paid shall be forfeited Any amount already paid against claims made under this policy but which are found fraudulent later shall be repaid by all recipient s policyholder s who has made that particular claim who shall be jointly and severally liable for such repayment to the insurer For the purpose of this clause the expression fraud means any of the following acts committed by the Insured Person or by his agent or the hospital doctor any other party acting on behalf of the insured person with intent to deceive the insurer or to induce the insurer to issue an insurance Policy a the suggestion as a fact of that which is not true and which the Insured Person does not believe to be true',
'activity The Insured Person agrees that choosing to utilize any of the wellness services or any information or advise rendered by Our Health Service Providers or Network Providers or the Company will be solely at the Insured Person s discretion and own risk and should not be used to diagnose or identify treatment for a medical or mental health condition The Wellness Points earned by the Insured person through the Wellness Program can be carried forward for a maximum of 3 years and shall have to be redeemed at the end of the 3rd Policy Year In case the Insured Person does not wish to redeem the wellness points earned the same will be forfeited In case of expiry of Policy the accrued wellness points may be carried forward for a period not exceeding three months There shall not be any cash reimbursement or redemption available against the wellness points accumulated by an Insured Person We or Our Health Service Providers or Our Network Providers do not warrant the validity accuracy completeness safety quality or applicability of the content or anything said or written or any suggestions provided in the course of providing the wellness services We or our affiliates',
]
embeddings = model.encode(sentences)
print(embeddings.shape)
# [3, 768]
# Get the similarity scores for the embeddings
similarities = model.similarity(embeddings, embeddings)
print(similarities)
# tensor([[1.0000, 0.6955, 0.1400],
# [0.6955, 1.0000, 0.2254],
# [0.1400, 0.2254, 1.0000]])
anchor, positive, negative_1, and negative_2| anchor | positive | negative_1 | negative_2 | |
|---|---|---|---|---|
| type | string | string | string | string |
| modality | text | text | text | text |
| details |
|
|
|
|
| anchor | positive | negative_1 | negative_2 |
|---|---|---|---|
What is the maximum number of wellness points an Insured Person can earn under the 'Tele consultations' activity? |
Policy Start Date the Insured Person can earn a maximum of 400 wellness points under this activity 2 Advisory on Preventive Health Check up The reports of the Preventive Health Check up of the Insured Person if referred to our tele consultation platform example IL Hello Doctor for medical advisory and opinion shall reward the Insured Person with a maximum of 300 wellness points 3 Medical Vault The Insured Person has to save relevant medical records diagnostic reports prescriptions preventive health check up reports in the medical vault on the mobile application This activity shall reward the Insured Person a maximum of 300 wellness points 4 First usage of Chat with Health Expert Health Coach Service The Insured Person shall be rewarded 100 wellness points on the first time usage of the chat functionality on our mobile application The Insured Person can virtually chat with health experts like physiotherapists counsellors dieticians etc under this service 5 Tele consultations The Insured... |
conditions This Cover can be availed only on Cashless basis and is limited to once per Policy Year per Insured Person Maximum of 2 Preventive Health Check up coupons shall be provided per Policy Year for a floater Policy This Cover can be availed through our mobile application or via utilization of Health Check up coupons provided with the Policy kit by calling at our Toll free number 1800 2666 The Network Provider Health Service Provider shall be assigned by Us post receiving Insured Person s request to avail a Health Check up under this Cover Utilization of this Preventive Health Check up will not impact the Annual Sum Insured or eligibility for Guaranteed Cumulative Bonus and or Super No Claim Bonus if opted and available Un utilised Health Check up package will not be carried forward to the next Policy Year and it will be the Insured Person s choice and responsibility to utilise the same with in the designated Policy Period We shall not be liable to provide any reminders or notific... |
services shall be provided through our Empaneled Health Service Provider subject to availability at the time of appointment This Optional Cover shall also include e consultation given by a General Medical Practitioner or Specialist or Super Specialist Medical Practitioner or AYUSH Medical Practitioner through a virtual mode of communication such as but not limited to chat email video online portal or mobile application Physiotherapy sessions and counselling availed for psychiatric ailments or mental health issues shall be excluded from the scope of this Optional Cover as the same are covered under optional cover 7 iv Physiotherapy sessions and optional cover 7 v e counselling respectively ii Routine Diagnostic and Minor Procedure Cover We shall cover medical expenses incurred for outpatient diagnostic tests recommended by Medical Practitioner under our cashless network available in the mobile application in relation to any Illness contracted or Injury suffered by the Insured Person dur... |
What wellness points will I be awarded for viewing my E card and verifying the details on the same? |
above the wellness points to be awarded shall be doubled provided that both the Insured Persons complete their respective wellness activities Detailed explanation of Table A has been mentioned below A Onboarding 1 Addition of Policy Details The Insured Person shall be awarded 500 welcome wellness points on downloading our mobile application and registering the policy details 2 E card Verification The insured person shall be awarded 300 wellness points to view the E card verify the details mentioned on the same and confirm to the Company about the same The wellness points awarded for onboarding i e for addition of Policy details and E card verification shall only be onetime for the first year of the Policy and not for any subsequent renewals thereof B Health Assessment 1 Health Risk Assessment HRA The Health Risk Assessment HRA questionnaire is a tool for evaluation of the Insured Person s health and quality of life by reviewing the personal lifestyle practices affecting the Insured Per... |
required by Us or Our In house claim processing team to investigate the Claim or Our obligation to make payment for it The relevant documents can be sent to ICICI Lombard Health Care ICICI Bank Tower Plot no 12 Financial district Nanakramguda Gachibowli Hyderabad 5000032 3 CLAIM SERVICE GUARANTEE We provide You Claim Service Guarantee as follows a For Reimbursement Claims We shall make the payment of admissible claim as per terms amp conditions of Policy OR communicate non admissibility of claim within 14 days after You submit complete set of documents amp information in respect of the claim In case We fail to make the payment of admissible claim or to communicate non admissibility of claim within this time period We shall pay 2 interest over and above the rate defined as per IRDA Protection of Policyholder s Interest Regulations 2017 b For Cashless Claims If You notify pre authorization request for cashless facility through any of Our empanelled network hospitals along with complete s... |
the disability j Any other document as may be required by the Us If You are covered under any health and accident insurance policy of other insurance company and become entitled to Claim under such policy then You can submit to Us the copies of the above listed documents medical records provided they are duly certified by such insurance company or any hospital where You are getting treated as applicable Note The cover under this extension shall terminate in the event of Your Claim becoming admissible hereunder In consequence thereof no benefit shall be payable under this extension of the policy thereafter 7 BeFit All benefits under the BeFit cover can be availed only on cashless basis via our mobile application and are subject to the terms conditions and exclusions and the availability of Sum Insured under the Cover BeFit cover can only be opted by Insured Person s up to the age of 65 years All services shall be provided through our Empaneled Health Service Provider subject to availabi... |
What is the time frame within which I need to provide information to the claim processing team after hospitalisation for reimbursement settlement? |
ordinate with Our claim team to provide cashless facility We will consider Your request after having obtained accurate and complete information for the Illness or Injury for which cashless Hospitalisation facility is sought by You and We will confirm Your request in writing B For Reimbursement Settlement i You shall give notice to Us or Our In house claim processing team by calling the toll free number 1800 2666 or emailing us at customersupport icicilombard com as specified in the Policy provided to You and also in writing at Our address with particulars as below Policy number Your Name Your relationship with the Proposer Nature of Illness or Injury Name and address of the attending Medical Practitioner and the Hospital Any other information that may be relevant to the Illness Injury Hospitalisation The above information needs to be provided to Us or Our In house claim processing team immediately and in any event within 10 days of Hospitalisation failing which We will have the right t... |
the disability j Any other document as may be required by the Us If You are covered under any health and accident insurance policy of other insurance company and become entitled to Claim under such policy then You can submit to Us the copies of the above listed documents medical records provided they are duly certified by such insurance company or any hospital where You are getting treated as applicable Note The cover under this extension shall terminate in the event of Your Claim becoming admissible hereunder In consequence thereof no benefit shall be payable under this extension of the policy thereafter 7 BeFit All benefits under the BeFit cover can be availed only on cashless basis via our mobile application and are subject to the terms conditions and exclusions and the availability of Sum Insured under the Cover BeFit cover can only be opted by Insured Person s up to the age of 65 years All services shall be provided through our Empaneled Health Service Provider subject to availabi... |
under this extension shall terminate in the event of Your Claim becoming admissible hereunder In consequence thereof no benefit shall be payable to You under this Optional Cover of the Policy thereafter 6 Personal Accident We will pay You or Your Nominee legal heir as the case may be the Sum Insured as specified against this Optional Cover in the Policy Schedule on occurrence of any Insured Event as specifically described hereunder arising due to an Injury sustained by You during the Policy Year Insured Event Accidental Death We will pay Your Nominee legal heir as the case may be the Sum Insured as specified against this Optional Cover in the Policy Schedule on the unfortunate event of Your death provided such death results solely and directly from an Injury sustained within a period of twelve months from the date of Accident resulting in such Injury Provided that the date of occurrence of the Accident falls within the Policy Year Insured Event Permanent Total Disablement PTD resulting... |
MultipleNegativesRankingLoss with these parameters:{
"scale": 20.0,
"similarity_fct": "cos_sim",
"gather_across_devices": false,
"directions": [
"query_to_doc"
],
"partition_mode": "joint",
"hardness_mode": null,
"hardness_strength": 0.0
}
anchor, positive, negative_1, and negative_2| anchor | positive | negative_1 | negative_2 | |
|---|---|---|---|---|
| type | string | string | string | string |
| modality | text | text | text | text |
| details |
|
|
|
|
| anchor | positive | negative_1 | negative_2 |
|---|---|---|---|
What is the maximum period for New Born Baby Cover? |
will not be covered under this Cover c This Cover is available only under a family floater Policy d This Cover is available for You or Your spouse provided You and Your spouse both are covered under the same family floater Policy e We will not cover ectopic pregnancy under this Cover the same shall be covered under In patient Treatment 10 New Born Baby Cover We will cover the Medical Expenses incurred by You on Hospitalization of a New born Baby during each Policy Year of Policy Period subject to the limits as specified in the Policy Schedule This Optional Cover will be provided only if Maternity Cover is applicable to You This Optional Cover will cover Medical Expenses incurred on the New born Baby during Hospitalization for a minimum period of consecutive 24 hours for a maximum period up to 90 days from the date of birth of the baby 11 Voluntary Co Payment The Insured Person has the choice to opt for Voluntary Co payment and avail subsequent discount on premium In case Voluntary Co p... |
forming part thereof The Policy contains details of the extent of cover available to You what is excluded from the cover and the terms amp conditions on which the Policy is issued to You Proposer Policyholder means the person s or the entity named in the Policy Schedule who executed the Policy Schedule and is are responsible for payment of premium s Policy Period means the period commencing from the Policy Period Start Date Time and ending at the Policy Period End Date Time of the Policy and as specifically appearing in the Policy Schedule Policy Year means a period of twelve months beginning from the Policy Period Start Date and ending on the last day of such twelve month period For the purpose of subsequent years Policy Year shall mean a period of twelve months beginning from the end of the previous Policy Year and lapsing on the last day of such twelve month period till the Policy Period End Date as specified in the Policy Schedule Single Private Room means an air conditioned room i... |
BENEFITS COVERED UNDER THE POLICY The coverage mentioned below differs between the various plan offerings and the wordings of only the relevant covers opted by the Insured Person and as mentioned in the Policy schedule will be applicable The Company hereby agrees subject to the terms conditions and exclusions herein contained or otherwise expressed for the period and to the extent of the Sum Insured as specified in the Schedule to this Policy The Policy covers Reasonable and Customary Charges incurred towards medical treatment taken during the Policy Period for an Illness Accident or condition described below if this is contracted or sustained by an Insured Person during the Policy Period and subject always to the Sum Insured any subsidiary limit specified in the schedule of Benefits the terms conditions limitations and exclusions mentioned in the Policy and eligibility as per the insurance plan opted by Insured and stated in the Schedule A Basic Cover The payment under this Basic Cove... |
What services cannot be provided on an outpatient basis? |
basis subject to availability of our empaneled Service Provider s Kindly visit our website for cities locations where such services are available f Treatment availed is not categorized under AYUSH or any form of non allopathic treatment g Such treatment cannot be provided on outpatient basis However in case of unavailability of our empaneled Service Provider in the Insured Person s location in case the Insured Person intends to avail the services of Non network Provider and claims for reimbursement a prior approval from Company needs to be taken before availing such services In case the Insured Person breaches the conditions of approval or fails to take the prior written approval from Company we are not liable to settle any claim under this section For the purpose of this Cover Home Care Treatment shall include a Diagnostic tests underwent at home as advised by Medical Practitioner b Medicines prescribed in writing by a Medical Practitioner c Consultation charges of the Medical Practit... |
the disability j Any other document as may be required by the Us If You are covered under any health and accident insurance policy of other insurance company and become entitled to Claim under such policy then You can submit to Us the copies of the above listed documents medical records provided they are duly certified by such insurance company or any hospital where You are getting treated as applicable Note The cover under this extension shall terminate in the event of Your Claim becoming admissible hereunder In consequence thereof no benefit shall be payable under this extension of the policy thereafter 7 BeFit All benefits under the BeFit cover can be availed only on cashless basis via our mobile application and are subject to the terms conditions and exclusions and the availability of Sum Insured under the Cover BeFit cover can only be opted by Insured Person s up to the age of 65 years All services shall be provided through our Empaneled Health Service Provider subject to availabi... |
by each of You shall be conditions precedent to admission of Our liability You are requested to go through our list of de listed excluded providers which is available on our website As the list is dynamic please refer to the latest list The claim pay out would be adjudicated in following sequence i If a room accommodation has been opted for where the room rent or category is higher than the eligible limit as applicable for the Insured Person then the associated medical expenses payable shall be pro rated as per applicable limits a Associated medical expenses means those expenses as listed below which vary in accordance with the room rent or room category or ICU Charges in a Hospital i Room boarding nursing and operation theatre expenses as charged by the Hospital where the Insured Person availed treatment ii Fees charged by surgeon anesthetist Medical Practitioner iii Investigation expenses ii Zone based Co payment shall be applicable in all cases where treatment is taken in a zone hig... |
What does the insurer consider as fraud for the purpose of this policy? |
in accordance with the terms and conditions of the chosen policy 6 Fraud If any claim made by the insured person is in any respect fraudulent or if any false statement or declaration is made or used in support thereof or if any fraudulent means or devices are used by the insured person or anyone acting on his her behalf to obtain any benefit under this policy all benefits under this policy and the premium paid shall be forfeited Any amount already paid against claims made under this policy but which are found fraudulent later shall be repaid by all recipient s policyholder s who has made that particular claim who shall be jointly and severally liable for such repayment to the insurer For the purpose of this clause the expression fraud means any of the following acts committed by the Insured Person or by his agent or the hospital doctor any other party acting on behalf of the insured person with intent to deceive the insurer or to induce the insurer to issue an insurance Policy a the su... |
activity The Insured Person agrees that choosing to utilize any of the wellness services or any information or advise rendered by Our Health Service Providers or Network Providers or the Company will be solely at the Insured Person s discretion and own risk and should not be used to diagnose or identify treatment for a medical or mental health condition The Wellness Points earned by the Insured person through the Wellness Program can be carried forward for a maximum of 3 years and shall have to be redeemed at the end of the 3rd Policy Year In case the Insured Person does not wish to redeem the wellness points earned the same will be forfeited In case of expiry of Policy the accrued wellness points may be carried forward for a period not exceeding three months There shall not be any cash reimbursement or redemption available against the wellness points accumulated by an Insured Person We or Our Health Service Providers or Our Network Providers do not warrant the validity accuracy comple... |
relevant information sought by the company in the proposal form and other connected documents to enable it to take informed decision in the context of underwriting the risk 2 Condition Precedent to Admission of Liability The terms and conditions of the policy must be fulfilled by the insured person for the Company to make any payment for claim s arising under the policy 3 Claim Settlement provision for Penal lnterest I The Company shall settle or reject a claim as the case may be within 30 days from the date of receipt of last necessary document II ln the case of delay in the payment of a claim the Company shall be liable to pay interest to the policyholder from the date of receipt of last necessary document to the date of payment of claim at a rate 2 above the bank rate III However where the circumstances of a claim warrant an investigation in the opinion of the Company it shall initiate and complete such investigation at the earliest in any case not later than 30 days from the date o... |
MultipleNegativesRankingLoss with these parameters:{
"scale": 20.0,
"similarity_fct": "cos_sim",
"gather_across_devices": false,
"directions": [
"query_to_doc"
],
"partition_mode": "joint",
"hardness_mode": null,
"hardness_strength": 0.0
}
learning_rate: 2e-05warmup_steps: 0.1weight_decay: 0.01load_best_model_at_end: Trueper_device_train_batch_size: 8num_train_epochs: 3max_steps: -1learning_rate: 2e-05lr_scheduler_type: linearlr_scheduler_kwargs: Nonewarmup_steps: 0.1optim: adamw_torch_fusedoptim_args: Noneweight_decay: 0.01adam_beta1: 0.9adam_beta2: 0.999adam_epsilon: 1e-08optim_target_modules: Nonegradient_accumulation_steps: 1average_tokens_across_devices: Truemax_grad_norm: 1.0label_smoothing_factor: 0.0bf16: Falsefp16: Falsebf16_full_eval: Falsefp16_full_eval: Falsetf32: Nonegradient_checkpointing: Falsegradient_checkpointing_kwargs: Nonetorch_compile: Falsetorch_compile_backend: Nonetorch_compile_mode: Noneuse_liger_kernel: Falseliger_kernel_config: Noneuse_cache: Falseneftune_noise_alpha: Nonetorch_empty_cache_steps: Noneauto_find_batch_size: Falselog_on_each_node: Truelogging_nan_inf_filter: Trueinclude_num_input_tokens_seen: nolog_level: passivelog_level_replica: warningdisable_tqdm: Falseproject: huggingfacetrackio_space_id: Nonetrackio_bucket_id: Nonetrackio_static_space_id: Noneper_device_eval_batch_size: 8prediction_loss_only: Trueeval_on_start: Falseeval_do_concat_batches: Trueeval_use_gather_object: Falseeval_accumulation_steps: Noneinclude_for_metrics: []batch_eval_metrics: Falsesave_only_model: Falsesave_on_each_node: Falseenable_jit_checkpoint: Falsepush_to_hub: Falsehub_private_repo: Nonehub_model_id: Nonehub_strategy: every_savehub_always_push: Falsehub_revision: Noneload_best_model_at_end: Trueignore_data_skip: Falserestore_callback_states_from_checkpoint: Falsefull_determinism: Falseseed: 42data_seed: Noneuse_cpu: Falseaccelerator_config: {'split_batches': False, 'dispatch_batches': None, 'even_batches': True, 'use_seedable_sampler': True, 'non_blocking': False, 'gradient_accumulation_kwargs': None}parallelism_config: Nonedataloader_drop_last: Falsedataloader_num_workers: 0dataloader_pin_memory: Truedataloader_persistent_workers: Falsedataloader_prefetch_factor: Noneremove_unused_columns: Truelabel_names: Nonetrain_sampling_strategy: randomlength_column_name: lengthddp_find_unused_parameters: Noneddp_bucket_cap_mb: Noneddp_broadcast_buffers: Falseddp_static_graph: Noneddp_backend: Noneddp_timeout: 1800fsdp: Nonefsdp_config: Nonedeepspeed: Nonedebug: []skip_memory_metrics: Truedo_predict: Falseresume_from_checkpoint: Nonewarmup_ratio: Nonelocal_rank: -1prompts: Nonebatch_sampler: batch_samplermulti_dataset_batch_sampler: proportionalrouter_mapping: {}learning_rate_mapping: {}| Epoch | Step | Training Loss | Validation Loss |
|---|---|---|---|
| 0.8333 | 10 | 0.6838 | - |
| 1.0 | 12 | - | 0.4639 |
| 1.6667 | 20 | 0.1799 | - |
| 2.0 | 24 | - | 0.3426 |
| 2.5 | 30 | 0.2323 | - |
| 3.0 | 36 | - | 0.3644 |
@inproceedings{reimers-2019-sentence-bert,
title = "Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks",
author = "Reimers, Nils and Gurevych, Iryna",
booktitle = "Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing",
month = "11",
year = "2019",
publisher = "Association for Computational Linguistics",
url = "https://arxiv.org/abs/1908.10084",
}
@misc{oord2019representationlearningcontrastivepredictive,
title={Representation Learning with Contrastive Predictive Coding},
author={Aaron van den Oord and Yazhe Li and Oriol Vinyals},
year={2019},
eprint={1807.03748},
archivePrefix={arXiv},
primaryClass={cs.LG},
url={https://arxiv.org/abs/1807.03748},
}
Base model
sentence-transformers/all-mpnet-base-v2