bobox's picture
Training in progress, epoch 1, checkpoint
20060e2 verified
|
raw
history blame
No virus
128 kB
metadata
language:
  - en
library_name: sentence-transformers
tags:
  - sentence-transformers
  - sentence-similarity
  - feature-extraction
  - generated_from_trainer
  - dataset_size:131566
  - loss:GISTEmbedLoss
  - loss:CoSENTLoss
  - loss:OnlineContrastiveLoss
  - loss:MultipleNegativesSymmetricRankingLoss
base_model: microsoft/deberta-v3-small
datasets:
  - sentence-transformers/all-nli
  - sentence-transformers/stsb
  - tals/vitaminc
  - nyu-mll/glue
  - allenai/scitail
  - sentence-transformers/xsum
  - sentence-transformers/sentence-compression
  - allenai/sciq
  - allenai/qasc
  - allenai/openbookqa
  - sentence-transformers/msmarco-msmarco-distilbert-base-v3
  - sentence-transformers/natural-questions
  - sentence-transformers/trivia-qa
  - sentence-transformers/quora-duplicates
  - sentence-transformers/gooaq
widget:
  - source_sentence: >-
      A man in a Santa Claus costume is sitting on a wooden chair holding a
      microphone and a stringed instrument.
    sentences:
      - The man is is near the ball.
      - The man is wearing a costume.
      - People are having a picnic.
  - source_sentence: A street vendor selling his art.
    sentences:
      - A man is selling things on the street.
      - A woman is walking outside.
      - A clown is talking into a microphone.
  - source_sentence: A boy looks surly as his father looks at the camera.
    sentences:
      - a boy looks at his farther
      - >-
        A dark-haired girl in a spotted shirt is pointing at the picture while
        sitting next to a boy wearing a purple shirt and jeans.
      - Man and woman stop and chat with each other.
  - source_sentence: >-
      Which company provided streetcar connections between downtown and the
      hospital?
    sentences:
      - >-
        In 1914 developers Billings & Meyering acquired the tract, completed
        street development, provided the last of the necessary municipal
        improvements including water service, and began marketing the property
        with fervor.
      - >-
        The war was fought primarily along the frontiers between New France and
        the British colonies, from Virginia in the South to Nova Scotia in the
        North.
      - >-
        On the basis of CST, Burnet developed a theory of how an immune response
        is triggered according to the self/nonself distinction: "self"
        constituents (constituents of the body) do not trigger destructive
        immune responses, while "nonself" entities (pathogens, an allograft)
        trigger a destructive immune response.
  - source_sentence: What language did Tesla study while in school?
    sentences:
      - >-
        Because of the complexity of medications including specific indications,
        effectiveness of treatment regimens, safety of medications (i.e., drug
        interactions) and patient compliance issues (in the hospital and at
        home) many pharmacists practicing in hospitals gain more education and
        training after pharmacy school through a pharmacy practice residency and
        sometimes followed by another residency in a specific area.
      - >-
        Rev. Jimmy Creech was defrocked after a highly publicized church trial
        in 1999 on account of his participation in same-sex union ceremonies.
      - Tesla was the fourth of five children.
pipeline_tag: sentence-similarity

SentenceTransformer based on microsoft/deberta-v3-small

This is a sentence-transformers model finetuned from microsoft/deberta-v3-small on the nli-pairs, sts-label, vitaminc-pairs, qnli-contrastive, scitail-pairs-qa, scitail-pairs-pos, xsum-pairs, compression-pairs, sciq_pairs, qasc_pairs, openbookqa_pairs, msmarco_pairs, nq_pairs, trivia_pairs, quora_pairs and gooaq_pairs datasets. It maps sentences & paragraphs to a 768-dimensional dense vector space and can be used for semantic textual similarity, semantic search, paraphrase mining, text classification, clustering, and more.

Model Details

Model Description

Model Sources

Full Model Architecture

SentenceTransformer(
  (0): Transformer({'max_seq_length': 512, 'do_lower_case': False}) with Transformer model: DebertaV2Model 
  (1): Pooling({'word_embedding_dimension': 768, '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})
)

Usage

Direct Usage (Sentence Transformers)

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("bobox/DeBERTaV3-small-GeneralSentenceTransformer-v2-1-checkpoints-tmp")
# Run inference
sentences = [
    'What language did Tesla study while in school?',
    'Tesla was the fourth of five children.',
    'Rev. Jimmy Creech was defrocked after a highly publicized church trial in 1999 on account of his participation in same-sex union ceremonies.',
]
embeddings = model.encode(sentences)
print(embeddings.shape)
# [3, 768]

# Get the similarity scores for the embeddings
similarities = model.similarity(embeddings, embeddings)
print(similarities.shape)
# [3, 3]

Training Details

Training Datasets

nli-pairs

  • Dataset: nli-pairs at d482672
  • Size: 10,000 training samples
  • Columns: sentence1 and sentence2
  • Approximate statistics based on the first 1000 samples:
    sentence1 sentence2
    type string string
    details
    • min: 5 tokens
    • mean: 16.62 tokens
    • max: 62 tokens
    • min: 4 tokens
    • mean: 9.46 tokens
    • max: 29 tokens
  • Samples:
    sentence1 sentence2
    A person on a horse jumps over a broken down airplane. A person is outdoors, on a horse.
    Children smiling and waving at camera There are children present
    A boy is jumping on skateboard in the middle of a red bridge. The boy does a skateboarding trick.
  • Loss: GISTEmbedLoss with these parameters:
    {'guide': SentenceTransformer(
      (0): Transformer({'max_seq_length': 512, 'do_lower_case': True}) with Transformer model: BertModel 
      (1): Pooling({'word_embedding_dimension': 384, 'pooling_mode_cls_token': True, 'pooling_mode_mean_tokens': False, '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()
    ), 'temperature': 0.05}
    

sts-label

  • Dataset: sts-label at ab7a5ac
  • Size: 5,749 training samples
  • Columns: sentence1, sentence2, and score
  • Approximate statistics based on the first 1000 samples:
    sentence1 sentence2 score
    type string string float
    details
    • min: 6 tokens
    • mean: 9.81 tokens
    • max: 27 tokens
    • min: 5 tokens
    • mean: 9.74 tokens
    • max: 25 tokens
    • min: 0.0
    • mean: 0.54
    • max: 1.0
  • Samples:
    sentence1 sentence2 score
    A plane is taking off. An air plane is taking off. 1.0
    A man is playing a large flute. A man is playing a flute. 0.76
    A man is spreading shreded cheese on a pizza. A man is spreading shredded cheese on an uncooked pizza. 0.76
  • Loss: CoSENTLoss with these parameters:
    {
        "scale": 20.0,
        "similarity_fct": "pairwise_cos_sim"
    }
    

vitaminc-pairs

  • Dataset: vitaminc-pairs at be6febb
  • Size: 4,943 training samples
  • Columns: label, sentence1, and sentence2
  • Approximate statistics based on the first 1000 samples:
    label sentence1 sentence2
    type int string string
    details
    • 1: 100.00%
    • min: 6 tokens
    • mean: 16.05 tokens
    • max: 93 tokens
    • min: 8 tokens
    • mean: 37.61 tokens
    • max: 502 tokens
  • Samples:
    label sentence1 sentence2
    1 Google used Motorola as a contract manufacturer . As such , unlike the Nexus device marketed as being a Google product ; although the company used Motorola as a contract manufacturer , Google has stated that the Pixel is not based on any existing HTC device .
    1 Based on 91 reviews , the film scored above 39 % . On Rotten Tomatoes , the film has a rating of 40 % , based on 91 reviews , with an average rating of 4.8/10 .
    1 Based on more than 26 reviews , the movie scored more than 24.5 % On Rotten Tomatoes , the film has a rating of 25 % , based on 28 reviews , with an average rating of 3.9/10 .
  • Loss: GISTEmbedLoss with these parameters:
    {'guide': SentenceTransformer(
      (0): Transformer({'max_seq_length': 512, 'do_lower_case': True}) with Transformer model: BertModel 
      (1): Pooling({'word_embedding_dimension': 384, 'pooling_mode_cls_token': True, 'pooling_mode_mean_tokens': False, '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()
    ), 'temperature': 0.05}
    

qnli-contrastive

  • Dataset: qnli-contrastive at bcdcba7
  • Size: 10,000 training samples
  • Columns: sentence1, sentence2, and label
  • Approximate statistics based on the first 1000 samples:
    sentence1 sentence2 label
    type string string int
    details
    • min: 6 tokens
    • mean: 13.82 tokens
    • max: 31 tokens
    • min: 6 tokens
    • mean: 35.06 tokens
    • max: 201 tokens
    • 0: 100.00%
  • Samples:
    sentence1 sentence2 label
    What does LE stand for? Life expectancy at birth 0
    For how long was the interest rate of Sumerian loans consistent? They were denominated in barley or other crops and the interest rate was typically much higher than for commercial loans and could amount to 1/3 to 1/2 of the loan principal. 0
    What was John's nickname? During John's early years, Henry attempted to resolve the question of his succession. 0
  • Loss: OnlineContrastiveLoss

scitail-pairs-qa

  • Dataset: scitail-pairs-qa at 0cc4353
  • Size: 6,595 training samples
  • Columns: sentence2 and sentence1
  • Approximate statistics based on the first 1000 samples:
    sentence2 sentence1
    type string string
    details
    • min: 7 tokens
    • mean: 15.84 tokens
    • max: 41 tokens
    • min: 7 tokens
    • mean: 14.79 tokens
    • max: 41 tokens
  • Samples:
    sentence2 sentence1
    Light with the longest wavelengths is called infrared light. Light with the longest wavelengths is called what?
    Four valence electrons can be found in a carbon atom. How many valence electrons can be found in a carbon atom?
    The spines of a cactus help it survive because spines protect the cactus from animals. How do the spines of a cactus help it survive?
  • Loss: GISTEmbedLoss with these parameters:
    {'guide': SentenceTransformer(
      (0): Transformer({'max_seq_length': 512, 'do_lower_case': True}) with Transformer model: BertModel 
      (1): Pooling({'word_embedding_dimension': 384, 'pooling_mode_cls_token': True, 'pooling_mode_mean_tokens': False, '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()
    ), 'temperature': 0.05}
    

scitail-pairs-pos

  • Dataset: scitail-pairs-pos at 0cc4353
  • Size: 3,405 training samples
  • Columns: sentence1 and sentence2
  • Approximate statistics based on the first 1000 samples:
    sentence1 sentence2
    type string string
    details
    • min: 8 tokens
    • mean: 23.95 tokens
    • max: 61 tokens
    • min: 7 tokens
    • mean: 15.25 tokens
    • max: 36 tokens
  • Samples:
    sentence1 sentence2
    The cell cycle is composed of four stages. Cells have four cycles.
    Plants exhale Oxygen gas in order for animals to breathe. Oxygen gas is given off by plants.
    S-phase (synthesis phase) is the part of the cell cycle in which DNA is replicated, occurring between G1 phase and G2 phase. During the synthesis phase in the cell cycle, dna replication occurs.
  • Loss: GISTEmbedLoss with these parameters:
    {'guide': SentenceTransformer(
      (0): Transformer({'max_seq_length': 512, 'do_lower_case': True}) with Transformer model: BertModel 
      (1): Pooling({'word_embedding_dimension': 384, 'pooling_mode_cls_token': True, 'pooling_mode_mean_tokens': False, '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()
    ), 'temperature': 0.05}
    

xsum-pairs

  • Dataset: xsum-pairs at 788ddaf
  • Size: 10,000 training samples
  • Columns: sentence1 and sentence2
  • Approximate statistics based on the first 1000 samples:
    sentence1 sentence2
    type string string
    details
    • min: 38 tokens
    • mean: 356.45 tokens
    • max: 512 tokens
    • min: 7 tokens
    • mean: 27.24 tokens
    • max: 73 tokens
  • Samples:
    sentence1 sentence2
    London Mayor Sadiq Khan said the Central and Victoria lines will start on 19 August, with the Piccadilly, Jubilee and Northern lines following in the autumn.
    The service will run through the night on Fridays and Saturdays.
    It was due to start last September but was delayed due to disputes with unions.
    Last year union members went on strike over the introduction of the all-night service, as well as their pay and conditions.
    The service will run:
    Maintenance workers belonging to the RMT union are still in dispute with Transport for London. The union agreed a deal for its drivers in March, but said the deal for maintenance staff was "inferior".
    About 200 part-time drivers are currently taking part in a 14-week training programme for the new service.
    RMT general secretary Mick Cash said there were "major" unresolved issues to do with conditions and pensions, and that it still had major concerns over safety.
    "Against a background of massive cuts overshadowing TfL budgets all parties have to be clear that Night Tube, a development that RMT supports, cannot be delivered on the cheap," he said.
    The mayor said: "The Night Tube is absolutely vital to my plans to support and grow London's night-time economy - creating more jobs and opportunities for all Londoners.
    "The constant delays under the previous mayor let Londoners down badly. I have made getting the Night Tube up and running a priority."
    London's transport commissioner, Mike Brown, said: "More than half a million people use the Tube after 10pm on Fridays and Saturdays, and the introduction of the Night Tube, which will support London's businesses and jobs, is a historic step in our modernisation of the Underground and our work to support London's economic growth."
    Of all of the previous mayor Boris Johnson's schemes, the Night Tube was the most problematic to get off the ground.
    I once called it a zombie policy - half dead wandering around, causing nothing but trouble.
    It was meant to start in September 2015 but the transport unions were not happy about pay and changes to their work life balance.
    The eventual solution - as well as bonuses - was to hire in part-time night drivers.
    Now we have a start date (again) but crucially it is only for the Central and Victoria lines. That's because there are still unresolved issues with RMT staff who work mainly on the other planned night lines - the Jubilee, the Northern and the Piccadilly.
    By going ahead with a start anyway there is a risk that antagonises the unions. It could be the first big test for the new mayor's relationship with London's transport unions.
    Until it's running on five lines, there are probably more twists to come.
    A date has been set for the launch of the Night Tube service - almost a year after it was first scheduled to begin.
    Police knew that the suspect, Jose Jorge Balderas Garza, was in a relationship with a Colombian model.
    Reports say when a Facebook profile in her name listed a Mexico City area as her location, officers moved in.
    Mr Balderas denies he carried out the shooting.
    He blames one of his associates for the attack last January on Cabanas, who played for Paraguay and Mexico's Club America.
    The football star was shot in the head in the bathroom of a bar in Mexico City on 25 January last year. He survived, but a bullet remains lodged in his head.
    Police also accuse Mr Balderas of running a drug-trafficking ring.
    Officers say that during their inquiries about Mr Balderas, they became aware of his romantic link to the Colombian model and participant in the Miss Antioquia 2008 competition, Juliana Sossa.
    A profile page in Ms Sossa's name on Facebook gave her current location as Lomas de Chapultepec, Mexico City.
    On Tuesday, police moved into the area and found Ms Sossa, 25, and Mr Balderas in the house they shared. They arrested the couple, along with five other suspects.
    Media in Mexico say a post on the social networking site Facebook helped lead police to the main suspect in the shooting of the Paraguayan footballer Salvador Cabanas.
    The Home Affairs Select Committee was told about "apparent corruption right at the heart of New Scotland Yard".
    Officers investigating Nigerian fraudster James Ibori were accused of taking cash payments for information.
    The former inspector has denied any wrong-doing and the two serving officers have declined to comment.
    The allegations surfaced during a parliamentary hearing on the role of private detectives.
    During evidence from lawyer Mike Schwarz from solicitors Bindmans, MPs were told of documents which allege that private investigation firm, Risc Management Ltd, was involved in "wining and dining and paying" officers working on the James Ibori case.
    Ibori was the former state governor of the oil-rich Delta region in Nigeria, a corrupt official who stole hundreds of millions of pounds from his homeland. He was sentenced to 13 years imprisonment last month after pleading guilty to laundering millions of pounds in the UK.
    Mr Schwarz, representing Ibori's London lawyer who was jailed as part of the case, said: "The key culprits appear to be the key players who are the senior investigating officer, DI Gary Walters, and two of the key investigators who are DC John McDonald and DC (Peter) Clark."
    How a thief almost became Nigeria's president
    Ex-governor jailed for £50m fraud
    Mr Schwarz told the committee there were records that "show about half a dozen payments totalling £20,000 over eight or nine months."
    The allegations were originally made in an anonymous bundle of documents sent to former Metropolitan Police Commissioner Sir Paul Stephenson and the Independent Police Complaints Commission (IPCC) last summer.
    In October last year, the IPCC instructed the Metropolitan Police's Directorate of Professional Standards (DPS) to conduct an internal investigation.
    The paperwork included what purported to be detailed invoices and expense ledgers from Risc Management Ltd, headed at the time by two former Scotland Yard detectives, Keith Hunter and Cliff Knuckey.
    Among the entries in the documents are details of what were said to be payments made to sources for confidential information about the on-going police investigation into Ibori.
    One entry, dated shortly before police were due to interview James Ibori's London solicitor, reads: "Engaged with source in eliciting information re: forthcoming interviewing strategy to de (sic) deployed by police."
    Immediately below, the entry states: "Cash payment made to above source for information provided. £5,000.00."
    The DPS has said it has "an open mind" as to whether the documents are genuine or an elaborate forgery designed to pervert the course of justice.
    Mr Schwarz criticised the internal inquiry into the corruption allegations as having "huge failings".
    "Two of the key officers are still on duty on the same case and one has retired and joined Risc Management," he told the committee.
    In a statement the Metropolitan Police said: "The MPS is investigating an allegation that illegal payments were made to police officers for information by a private investigation agency.
    "The DPS referred the matter to the IPCC in October 2011 which agreed to supervise a DPS investigation into the allegations.
    "This is an ongoing investigation and it would be inappropriate to comment further at this stage whilst the investigation is under way."
    The BBC has confirmed that in the seven months since the DPS inquiry was launched, neither Risc Management, nor the law firm who hired them on behalf of James Ibori, have been contacted. No police officer has been asked about the allegations.
    Already under fire for not properly investigating allegations of phone hacking, and with officers facing allegations they accepted cash from News International journalists, the new claims heap further pressure on the Metropolitan Police.
    It is not possible to be certain whether the documents at the heart of the corruption allegations are genuine or elaborate fakes nor whether corrupt payments were actually made.
    Risc Management denies it has ever paid money to any police officer.
    Two Scotland Yard detective constables and a former detective inspector have been named as "key culprits" in bribery allegations revealed to MPs.
  • Loss: MultipleNegativesSymmetricRankingLoss with these parameters:
    {
        "scale": 20.0,
        "similarity_fct": "cos_sim"
    }
    

compression-pairs

  • Dataset: compression-pairs at 605bc91
  • Size: 10,000 training samples
  • Columns: sentence1 and sentence2
  • Approximate statistics based on the first 1000 samples:
    sentence1 sentence2
    type string string
    details
    • min: 10 tokens
    • mean: 31.89 tokens
    • max: 125 tokens
    • min: 5 tokens
    • mean: 10.21 tokens
    • max: 28 tokens
  • Samples:
    sentence1 sentence2
    The USHL completed an expansion draft on Monday as 10 players who were on the rosters of USHL teams during the 2009-10 season were selected by the League's two newest entries, the Muskegon Lumberjacks and Dubuque Fighting Saints. USHL completes expansion draft
    Major League Baseball Commissioner Bud Selig will be speaking at St. Norbert College next month. Bud Selig to speak at St. Norbert College
    It's fresh cherry time in Michigan and the best time to enjoy this delicious and nutritious fruit. It's cherry time
  • Loss: MultipleNegativesSymmetricRankingLoss with these parameters:
    {
        "scale": 20.0,
        "similarity_fct": "cos_sim"
    }
    

sciq_pairs

  • Dataset: sciq_pairs at 2c94ad3
  • Size: 10,000 training samples
  • Columns: sentence1 and sentence2
  • Approximate statistics based on the first 1000 samples:
    sentence1 sentence2
    type string string
    details
    • min: 7 tokens
    • mean: 17.26 tokens
    • max: 60 tokens
    • min: 2 tokens
    • mean: 84.37 tokens
    • max: 512 tokens
  • Samples:
    sentence1 sentence2
    What type of organism is commonly used in preparation of foods such as cheese and yogurt? Mesophiles grow best in moderate temperature, typically between 25°C and 40°C (77°F and 104°F). Mesophiles are often found living in or on the bodies of humans or other animals. The optimal growth temperature of many pathogenic mesophiles is 37°C (98°F), the normal human body temperature. Mesophilic organisms have important uses in food preparation, including cheese, yogurt, beer and wine.
    What phenomenon makes global winds blow northeast to southwest or the reverse in the northern hemisphere and northwest to southeast or the reverse in the southern hemisphere? Without Coriolis Effect the global winds would blow north to south or south to north. But Coriolis makes them blow northeast to southwest or the reverse in the Northern Hemisphere. The winds blow northwest to southeast or the reverse in the southern hemisphere.
    Changes from a less-ordered state to a more-ordered state (such as a liquid to a solid) are always what? Summary Changes of state are examples of phase changes, or phase transitions. All phase changes are accompanied by changes in the energy of a system. Changes from a more-ordered state to a less-ordered state (such as a liquid to a gas) areendothermic. Changes from a less-ordered state to a more-ordered state (such as a liquid to a solid) are always exothermic. The conversion of a solid to a liquid is called fusion (or melting). The energy required to melt 1 mol of a substance is its enthalpy of fusion (ΔHfus). The energy change required to vaporize 1 mol of a substance is the enthalpy of vaporization (ΔHvap). The direct conversion of a solid to a gas is sublimation. The amount of energy needed to sublime 1 mol of a substance is its enthalpy of sublimation (ΔHsub) and is the sum of the enthalpies of fusion and vaporization. Plots of the temperature of a substance versus heat added or versus heating time at a constant rate of heating are calledheating curves. Heating curves relate temperature changes to phase transitions. A superheated liquid, a liquid at a temperature and pressure at which it should be a gas, is not stable. A cooling curve is not exactly the reverse of the heating curve because many liquids do not freeze at the expected temperature. Instead, they form a supercooled liquid, a metastable liquid phase that exists below the normal melting point. Supercooled liquids usually crystallize on standing, or adding a seed crystal of the same or another substance can induce crystallization.
  • Loss: GISTEmbedLoss with these parameters:
    {'guide': SentenceTransformer(
      (0): Transformer({'max_seq_length': 512, 'do_lower_case': True}) with Transformer model: BertModel 
      (1): Pooling({'word_embedding_dimension': 384, 'pooling_mode_cls_token': True, 'pooling_mode_mean_tokens': False, '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()
    ), 'temperature': 0.05}
    

qasc_pairs

  • Dataset: qasc_pairs at a34ba20
  • Size: 8,134 training samples
  • Columns: id, sentence1, and sentence2
  • Approximate statistics based on the first 1000 samples:
    id sentence1 sentence2
    type string string string
    details
    • min: 17 tokens
    • mean: 21.35 tokens
    • max: 27 tokens
    • min: 5 tokens
    • mean: 11.47 tokens
    • max: 25 tokens
    • min: 14 tokens
    • mean: 35.55 tokens
    • max: 66 tokens
  • Samples:
    id sentence1 sentence2
    3E7TUJ2EGCLQNOV1WEAJ2NN9ROPD9K What type of water formation is formed by clouds? beads of water are formed by water vapor condensing. Clouds are made of water vapor.. Beads of water can be formed by clouds.
    3LS2AMNW5FPNJK3C3PZLZCPX562OQO Where do beads of water come from? beads of water are formed by water vapor condensing. Condensation is the change of water vapor to a liquid.. Vapor turning into a liquid leaves behind beads of water
    3TMFV4NEP8DPIPCI8H9VUFHJG8V8W3 What forms beads of water? beads of water are formed by water vapor condensing. An example of water vapor is steam.. Steam forms beads of water.
  • Loss: GISTEmbedLoss with these parameters:
    {'guide': SentenceTransformer(
      (0): Transformer({'max_seq_length': 512, 'do_lower_case': True}) with Transformer model: BertModel 
      (1): Pooling({'word_embedding_dimension': 384, 'pooling_mode_cls_token': True, 'pooling_mode_mean_tokens': False, '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()
    ), 'temperature': 0.05}
    

openbookqa_pairs

  • Dataset: openbookqa_pairs at 388097e
  • Size: 2,740 training samples
  • Columns: sentence1 and sentence2
  • Approximate statistics based on the first 1000 samples:
    sentence1 sentence2
    type string string
    details
    • min: 3 tokens
    • mean: 13.83 tokens
    • max: 78 tokens
    • min: 4 tokens
    • mean: 11.37 tokens
    • max: 30 tokens
  • Samples:
    sentence1 sentence2
    The sun is responsible for the sun is the source of energy for physical cycles on Earth
    When food is reduced in the stomach digestion is when stomach acid breaks down food
    Stars are a star is made of gases
  • Loss: GISTEmbedLoss with these parameters:
    {'guide': SentenceTransformer(
      (0): Transformer({'max_seq_length': 512, 'do_lower_case': True}) with Transformer model: BertModel 
      (1): Pooling({'word_embedding_dimension': 384, 'pooling_mode_cls_token': True, 'pooling_mode_mean_tokens': False, '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()
    ), 'temperature': 0.05}
    

msmarco_pairs

  • Dataset: msmarco_pairs at 28ff31e
  • Size: 10,000 training samples
  • Columns: sentence1 and sentence2
  • Approximate statistics based on the first 1000 samples:
    sentence1 sentence2
    type string string
    details
    • min: 4 tokens
    • mean: 8.61 tokens
    • max: 27 tokens
    • min: 18 tokens
    • mean: 75.09 tokens
    • max: 206 tokens
  • Samples:
    sentence1 sentence2
    what are the liberal arts? liberal arts. 1. the academic course of instruction at a college intended to provide general knowledge and comprising the arts, humanities, natural sciences, and social sciences, as opposed to professional or technical subjects.
    what is the mechanism of action of fibrinolytic or thrombolytic drugs? Baillière's Clinical Haematology. 6 Mechanism of action of the thrombolytic agents. 6 Mechanism of action of the thrombolytic agents JEFFREY I. WEITZ Fibrin formed during the haemostatic, inflammatory or tissue repair process serves a temporary role, and must be degraded to restore normal tissue function and structure.
    what is normal plat count 78 Followers. A. Platelets are the tiny blood cells that help stop bleeding by binding together to form a clump or plug at sites of injury inside blood vessels. A normal platelet count is between 150,000 and 450,000 platelets per microliter (one-millionth of a liter, abbreviated mcL).The average platelet count is 237,000 per mcL in men and 266,000 per mcL in women.8 Followers. A. Platelets are the tiny blood cells that help stop bleeding by binding together to form a clump or plug at sites of injury inside blood vessels. A normal platelet count is between 150,000 and 450,000 platelets per microliter (one-millionth of a liter, abbreviated mcL).
  • Loss: GISTEmbedLoss with these parameters:
    {'guide': SentenceTransformer(
      (0): Transformer({'max_seq_length': 512, 'do_lower_case': True}) with Transformer model: BertModel 
      (1): Pooling({'word_embedding_dimension': 384, 'pooling_mode_cls_token': True, 'pooling_mode_mean_tokens': False, '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()
    ), 'temperature': 0.05}
    

nq_pairs

  • Dataset: nq_pairs at f9e894e
  • Size: 10,000 training samples
  • Columns: sentence1 and sentence2
  • Approximate statistics based on the first 1000 samples:
    sentence1 sentence2
    type string string
    details
    • min: 10 tokens
    • mean: 11.77 tokens
    • max: 21 tokens
    • min: 16 tokens
    • mean: 131.57 tokens
    • max: 512 tokens
  • Samples:
    sentence1 sentence2
    when did richmond last play in a preliminary final Richmond Football Club Richmond began 2017 with 5 straight wins, a feat it had not achieved since 1995. A series of close losses hampered the Tigers throughout the middle of the season, including a 5-point loss to the Western Bulldogs, 2-point loss to Fremantle, and a 3-point loss to the Giants. Richmond ended the season strongly with convincing victories over Fremantle and St Kilda in the final two rounds, elevating the club to 3rd on the ladder. Richmond's first final of the season against the Cats at the MCG attracted a record qualifying final crowd of 95,028; the Tigers won by 51 points. Having advanced to the first preliminary finals for the first time since 2001, Richmond defeated Greater Western Sydney by 36 points in front of a crowd of 94,258 to progress to the Grand Final against Adelaide, their first Grand Final appearance since 1982. The attendance was 100,021, the largest crowd to a grand final since 1986. The Crows led at quarter time and led by as many as 13, but the Tigers took over the game as it progressed and scored seven straight goals at one point. They eventually would win by 48 points – 16.12 (108) to Adelaide's 8.12 (60) – to end their 37-year flag drought.[22] Dustin Martin also became the first player to win a Premiership medal, the Brownlow Medal and the Norm Smith Medal in the same season, while Damien Hardwick was named AFL Coaches Association Coach of the Year. Richmond's jump from 13th to premiers also marked the biggest jump from one AFL season to the next.
    who sang what in the world's come over you Jack Scott (singer) At the beginning of 1960, Scott again changed record labels, this time to Top Rank Records.[1] He then recorded four Billboard Hot 100 hits – "What in the World's Come Over You" (#5), "Burning Bridges" (#3) b/w "Oh Little One" (#34), and "It Only Happened Yesterday" (#38).[1] "What in the World's Come Over You" was Scott's second gold disc winner.[6] Scott continued to record and perform during the 1960s and 1970s.[1] His song "You're Just Gettin' Better" reached the country charts in 1974.[1] In May 1977, Scott recorded a Peel session for BBC Radio 1 disc jockey, John Peel.
    who produces the most wool in the world Wool Global wool production is about 2 million tonnes per year, of which 60% goes into apparel. Wool comprises ca 3% of the global textile market, but its value is higher owing to dying and other modifications of the material.[1] Australia is a leading producer of wool which is mostly from Merino sheep but has been eclipsed by China in terms of total weight.[30] New Zealand (2016) is the third-largest producer of wool, and the largest producer of crossbred wool. Breeds such as Lincoln, Romney, Drysdale, and Elliotdale produce coarser fibers, and wool from these sheep is usually used for making carpets.
  • Loss: GISTEmbedLoss with these parameters:
    {'guide': SentenceTransformer(
      (0): Transformer({'max_seq_length': 512, 'do_lower_case': True}) with Transformer model: BertModel 
      (1): Pooling({'word_embedding_dimension': 384, 'pooling_mode_cls_token': True, 'pooling_mode_mean_tokens': False, '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()
    ), 'temperature': 0.05}
    

trivia_pairs

  • Dataset: trivia_pairs at a7c36e3
  • Size: 10,000 training samples
  • Columns: sentence1 and sentence2
  • Approximate statistics based on the first 1000 samples:
    sentence1 sentence2
    type string string
    details
    • min: 8 tokens
    • mean: 15.16 tokens
    • max: 48 tokens
    • min: 19 tokens
    • mean: 456.87 tokens
    • max: 512 tokens
  • Samples:
    sentence1 sentence2
    Which American-born Sinclair won the Nobel Prize for Literature in 1930? The Nobel Prize in Literature 1930 The Nobel Prize in Literature 1930 Sinclair Lewis The Nobel Prize in Literature 1930 Sinclair Lewis Prize share: 1/1 The Nobel Prize in Literature 1930 was awarded to Sinclair Lewis "for his vigorous and graphic art of description and his ability to create, with wit and humour, new types of characters". Photos: Copyright © The Nobel Foundation Share this: To cite this page MLA style: "The Nobel Prize in Literature 1930". Nobelprize.org. Nobel Media AB 2014. Web. 18 Jan 2017. http://www.nobelprize.org/nobel_prizes/literature/laureates/1930/
    Where in England was Dame Judi Dench born? Judi Dench - IMDb IMDb Actress
    In which decade did Billboard magazine first publish and American hit chart? The US Billboard song chart The US Billboard song chart Search this site with Google Song chart US Billboard The Billboard magazine has published various music charts starting (with sheet music) in 1894, the first "Music Hit Parade" was published in 1936 , the first "Music Popularity Chart" was calculated in 1940 . These charts became less irregular until the weekly "Hot 100" was started in 1958 . The current chart combines sales, airplay and downloads. A music collector that calls himself Bullfrog has been consolidating the complete chart from 1894 to the present day. he has published this information in a comprehenive spreadsheet (which can be obtained at bullfrogspond.com/ ). The Bullfrog data assigns each song a unique identifier, something like "1968_076" (which just happens to be the Bee Gees song "I've Gotta Get A Message To You"). This "Whitburn Number" is provided to match with the books of Joel Whitburn and consists of the year and a ranking within the year. A song that first entered the charts in December and has a long run is listed the following year. This numbering scheme means that songs which are still in the charts cannot be assigned a final id, because their ranking might change. So the definitive listing for a year cannot be final until about April. In our listing we only use songs with finalised IDs, this means that every year we have to wait until last year's entries are finalised before using them. (Source bullfrogspond.com/ , the original version used here was 20090808 with extra data from: the 2009 data from 20091219 the 2010 data from 20110305 the 2011 data from 20120929 the 2012 data from 20130330 the 2013 data from 20150328 The 20150328 data was the last one produced before the Billboard company forced the data to be withdrawn. As far as we know there are no more recent data sets available. This pattern of obtaining the data for a particular year in the middle of the following one comes from the way that the Bullfrog project generates the identifier for a song (what they call the "Prefix" in the spreadsheet). Recent entries are identified with keys like "2015-008" while older ones have keys like "2013_177". In the second case the underscore is significant, it indicates that this was the 177th biggest song released in 2013. Now, of course, during the year no one knows where a particular song will rank, so the underscore names can't be assigned until every song from a particular year has dropped out of the charts, so recent records are temporarily assigned a name with a dash. In about May of the following year the rankings are calculated and the final identifiers are assigned. That is why we at the Turret can only grab this data retrospectively. Attributes The original spreadsheet has a number of attributes, we have limited our attention to just a few of them: 134 9 The songs with the most entries on the chart were White Christmas (with 33 versions and a total of 110 weeks) and Stardust (with 19 and a total of 106 weeks). position The peak position that songs reached in the charts should show an smooth curve from number one down to the lowest position. This chart has more songs in the lower peak positions than one would expect. Before 1991 the profile of peak positions was exactly as you would expect, that year Billboard introduced the concept of "Recurrent" tracks, that is they removed any track from the chart which had spent more than twenty weeks in the chart and had fallen to the lower positions. weeks The effect of the "Recurrent" process, by which tracks are removed if they have spent at least twenty weeks in the chart and have fallen to the lower reaches, can clearly be seen in the strange spike in this attribute. This "adjustment" was intended to promote newer songs and ensure the chart does not become "stale". In fact since it was introduced in 1991 the length of long chart runs has increased, this might reflect the more conscious efforts of record companies to "game" the charts by controlling release times and promotions, or it coul
  • Loss: GISTEmbedLoss with these parameters:
    {'guide': SentenceTransformer(
      (0): Transformer({'max_seq_length': 512, 'do_lower_case': True}) with Transformer model: BertModel 
      (1): Pooling({'word_embedding_dimension': 384, 'pooling_mode_cls_token': True, 'pooling_mode_mean_tokens': False, '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()
    ), 'temperature': 0.05}
    

quora_pairs

  • Dataset: quora_pairs at 451a485
  • Size: 10,000 training samples
  • Columns: sentence1 and sentence2
  • Approximate statistics based on the first 1000 samples:
    sentence1 sentence2
    type string string
    details
    • min: 6 tokens
    • mean: 13.53 tokens
    • max: 42 tokens
    • min: 6 tokens
    • mean: 13.68 tokens
    • max: 43 tokens
  • Samples:
    sentence1 sentence2
    Astrology: I am a Capricorn Sun Cap moon and cap rising...what does that say about me? I'm a triple Capricorn (Sun, Moon and ascendant in Capricorn) What does this say about me?
    How can I be a good geologist? What should I do to be a great geologist?
    How do I read and find my YouTube comments? How can I see all my Youtube comments?
  • Loss: MultipleNegativesSymmetricRankingLoss with these parameters:
    {
        "scale": 20.0,
        "similarity_fct": "cos_sim"
    }
    

gooaq_pairs

  • Dataset: gooaq_pairs at b089f72
  • Size: 10,000 training samples
  • Columns: sentence1 and sentence2
  • Approximate statistics based on the first 1000 samples:
    sentence1 sentence2
    type string string
    details
    • min: 8 tokens
    • mean: 11.6 tokens
    • max: 21 tokens
    • min: 13 tokens
    • mean: 57.74 tokens
    • max: 127 tokens
  • Samples:
    sentence1 sentence2
    is toprol xl the same as metoprolol? Metoprolol succinate is also known by the brand name Toprol XL. It is the extended-release form of metoprolol. Metoprolol succinate is approved to treat high blood pressure, chronic chest pain, and congestive heart failure.
    are you experienced cd steve hoffman? The Are You Experienced album was apparently mastered from the original stereo UK master tapes (according to Steve Hoffman - one of the very few who has heard both the master tapes and the CDs produced over the years). ... The CD booklets were a little sparse, but at least they stayed true to the album's original design.
    how are babushka dolls made? Matryoshka dolls are made of wood from lime, balsa, alder, aspen, and birch trees; lime is probably the most common wood type. ... After cutting, the trees are stripped of most of their bark, although a few inner rings of bark are left to bind the wood and keep it from splitting.
  • Loss: GISTEmbedLoss with these parameters:
    {'guide': SentenceTransformer(
      (0): Transformer({'max_seq_length': 512, 'do_lower_case': True}) with Transformer model: BertModel 
      (1): Pooling({'word_embedding_dimension': 384, 'pooling_mode_cls_token': True, 'pooling_mode_mean_tokens': False, '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()
    ), 'temperature': 0.05}
    

Evaluation Datasets

nli-pairs

  • Dataset: nli-pairs at d482672
  • Size: 6,808 evaluation samples
  • Columns: anchor and positive
  • Approximate statistics based on the first 1000 samples:
    anchor positive
    type string string
    details
    • min: 5 tokens
    • mean: 17.64 tokens
    • max: 63 tokens
    • min: 4 tokens
    • mean: 9.67 tokens
    • max: 29 tokens
  • Samples:
    anchor positive
    Two women are embracing while holding to go packages. Two woman are holding packages.
    Two young children in blue jerseys, one with the number 9 and one with the number 2 are standing on wooden steps in a bathroom and washing their hands in a sink. Two kids in numbered jerseys wash their hands.
    A man selling donuts to a customer during a world exhibition event held in the city of Angeles A man selling donuts to a customer.
  • Loss: GISTEmbedLoss with these parameters:
    {'guide': SentenceTransformer(
      (0): Transformer({'max_seq_length': 512, 'do_lower_case': True}) with Transformer model: BertModel 
      (1): Pooling({'word_embedding_dimension': 384, 'pooling_mode_cls_token': True, 'pooling_mode_mean_tokens': False, '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()
    ), 'temperature': 0.05}
    

scitail-pairs-pos

  • Dataset: scitail-pairs-pos at 0cc4353
  • Size: 1,304 evaluation samples
  • Columns: sentence1, sentence2, and label
  • Approximate statistics based on the first 1000 samples:
    sentence1 sentence2 label
    type string string int
    details
    • min: 5 tokens
    • mean: 22.52 tokens
    • max: 67 tokens
    • min: 8 tokens
    • mean: 15.34 tokens
    • max: 36 tokens
    • 0: ~47.50%
    • 1: ~52.50%
  • Samples:
    sentence1 sentence2 label
    An introduction to atoms and elements, compounds, atomic structure and bonding, the molecule and chemical reactions. Replace another in a molecule happens to atoms during a substitution reaction. 0
    Wavelength The distance between two consecutive points on a sinusoidal wave that are in phase; Wavelength is the distance between two corresponding points of adjacent waves called. 1
    humans normally have 23 pairs of chromosomes. Humans typically have 23 pairs pairs of chromosomes. 1
  • Loss: GISTEmbedLoss with these parameters:
    {'guide': SentenceTransformer(
      (0): Transformer({'max_seq_length': 512, 'do_lower_case': True}) with Transformer model: BertModel 
      (1): Pooling({'word_embedding_dimension': 384, 'pooling_mode_cls_token': True, 'pooling_mode_mean_tokens': False, '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()
    ), 'temperature': 0.05}
    

qnli-contrastive

  • Dataset: qnli-contrastive at bcdcba7
  • Size: 5,463 evaluation samples
  • Columns: sentence1, sentence2, and label
  • Approximate statistics based on the first 1000 samples:
    sentence1 sentence2 label
    type string string int
    details
    • min: 6 tokens
    • mean: 14.13 tokens
    • max: 36 tokens
    • min: 4 tokens
    • mean: 36.58 tokens
    • max: 225 tokens
    • 0: 100.00%
  • Samples:
    sentence1 sentence2 label
    What came into force after the new constitution was herald? As of that day, the new constitution heralding the Second Republic came into force. 0
    What is the first major city in the stream of the Rhine? The most important tributaries in this area are the Ill below of Strasbourg, the Neckar in Mannheim and the Main across from Mainz. 0
    What is the minimum required if you want to teach in Canada? In most provinces a second Bachelor's Degree such as a Bachelor of Education is required to become a qualified teacher. 0
  • Loss: OnlineContrastiveLoss

Training Hyperparameters

Non-Default Hyperparameters

  • eval_strategy: steps
  • per_device_train_batch_size: 28
  • per_device_eval_batch_size: 16
  • learning_rate: 2e-05
  • weight_decay: 1e-10
  • num_train_epochs: 2
  • lr_scheduler_type: cosine
  • warmup_ratio: 0.33
  • save_safetensors: False
  • fp16: True
  • push_to_hub: True
  • hub_model_id: bobox/DeBERTaV3-small-GeneralSentenceTransformer-v2-1-checkpoints-tmp
  • hub_strategy: checkpoint
  • batch_sampler: no_duplicates

All Hyperparameters

Click to expand
  • overwrite_output_dir: False
  • do_predict: False
  • eval_strategy: steps
  • prediction_loss_only: True
  • per_device_train_batch_size: 28
  • per_device_eval_batch_size: 16
  • per_gpu_train_batch_size: None
  • per_gpu_eval_batch_size: None
  • gradient_accumulation_steps: 1
  • eval_accumulation_steps: None
  • learning_rate: 2e-05
  • weight_decay: 1e-10
  • adam_beta1: 0.9
  • adam_beta2: 0.999
  • adam_epsilon: 1e-08
  • max_grad_norm: 1.0
  • num_train_epochs: 2
  • max_steps: -1
  • lr_scheduler_type: cosine
  • lr_scheduler_kwargs: {}
  • warmup_ratio: 0.33
  • warmup_steps: 0
  • log_level: passive
  • log_level_replica: warning
  • log_on_each_node: True
  • logging_nan_inf_filter: True
  • save_safetensors: False
  • save_on_each_node: False
  • save_only_model: False
  • restore_callback_states_from_checkpoint: False
  • no_cuda: False
  • use_cpu: False
  • use_mps_device: False
  • seed: 42
  • data_seed: None
  • jit_mode_eval: False
  • use_ipex: False
  • bf16: False
  • fp16: True
  • fp16_opt_level: O1
  • half_precision_backend: auto
  • bf16_full_eval: False
  • fp16_full_eval: False
  • tf32: None
  • local_rank: 0
  • ddp_backend: None
  • tpu_num_cores: None
  • tpu_metrics_debug: False
  • debug: []
  • dataloader_drop_last: False
  • dataloader_num_workers: 0
  • dataloader_prefetch_factor: None
  • past_index: -1
  • disable_tqdm: False
  • remove_unused_columns: True
  • label_names: None
  • load_best_model_at_end: False
  • ignore_data_skip: False
  • fsdp: []
  • fsdp_min_num_params: 0
  • fsdp_config: {'min_num_params': 0, 'xla': False, 'xla_fsdp_v2': False, 'xla_fsdp_grad_ckpt': False}
  • fsdp_transformer_layer_cls_to_wrap: None
  • accelerator_config: {'split_batches': False, 'dispatch_batches': None, 'even_batches': True, 'use_seedable_sampler': True, 'non_blocking': False, 'gradient_accumulation_kwargs': None}
  • deepspeed: None
  • label_smoothing_factor: 0.0
  • optim: adamw_torch
  • optim_args: None
  • adafactor: False
  • group_by_length: False
  • length_column_name: length
  • ddp_find_unused_parameters: None
  • ddp_bucket_cap_mb: None
  • ddp_broadcast_buffers: False
  • dataloader_pin_memory: True
  • dataloader_persistent_workers: False
  • skip_memory_metrics: True
  • use_legacy_prediction_loop: False
  • push_to_hub: True
  • resume_from_checkpoint: None
  • hub_model_id: bobox/DeBERTaV3-small-GeneralSentenceTransformer-v2-1-checkpoints-tmp
  • hub_strategy: checkpoint
  • hub_private_repo: False
  • hub_always_push: False
  • gradient_checkpointing: False
  • gradient_checkpointing_kwargs: None
  • include_inputs_for_metrics: False
  • eval_do_concat_batches: True
  • fp16_backend: auto
  • push_to_hub_model_id: None
  • push_to_hub_organization: None
  • mp_parameters:
  • auto_find_batch_size: False
  • full_determinism: False
  • torchdynamo: None
  • ray_scope: last
  • ddp_timeout: 1800
  • torch_compile: False
  • torch_compile_backend: None
  • torch_compile_mode: None
  • dispatch_batches: None
  • split_batches: None
  • include_tokens_per_second: False
  • include_num_input_tokens_seen: False
  • neftune_noise_alpha: None
  • optim_target_modules: None
  • batch_eval_metrics: False
  • batch_sampler: no_duplicates
  • multi_dataset_batch_sampler: proportional

Training Logs

Epoch Step Training Loss scitail-pairs-pos loss qnli-contrastive loss nli-pairs loss
None 0 - 3.4480 4.1500 4.2865
0.1 471 4.4848 2.4697 3.3142 3.2277
0.2 942 2.6358 0.9157 2.6632 1.5920
0.3 1413 1.7183 0.7445 2.1308 1.1537
0.4 1884 1.6114 0.6194 1.6952 0.8992
0.5 2355 1.5367 0.6661 0.8698 0.8112
0.6 2826 1.1657 0.5583 0.8415 0.7330
0.7 3297 1.2926 0.5284 0.5240 0.6883
0.8 3768 1.1523 0.4816 0.4342 0.6776
0.9 4239 1.0387 0.4603 0.3022 0.6213
1.0 4710 1.0356 0.5449 0.1294 0.6489

Framework Versions

  • Python: 3.10.13
  • Sentence Transformers: 3.0.1
  • Transformers: 4.41.2
  • PyTorch: 2.1.2
  • Accelerate: 0.30.1
  • Datasets: 2.19.2
  • Tokenizers: 0.19.1

Citation

BibTeX

Sentence Transformers

@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",
}

GISTEmbedLoss

@misc{solatorio2024gistembed,
    title={GISTEmbed: Guided In-sample Selection of Training Negatives for Text Embedding Fine-tuning}, 
    author={Aivin V. Solatorio},
    year={2024},
    eprint={2402.16829},
    archivePrefix={arXiv},
    primaryClass={cs.LG}
}

CoSENTLoss

@online{kexuefm-8847,
    title={CoSENT: A more efficient sentence vector scheme than Sentence-BERT},
    author={Su Jianlin},
    year={2022},
    month={Jan},
    url={https://kexue.fm/archives/8847},
}