SentenceTransformer based on BAAI/bge-m3

This is a sentence-transformers model finetuned from BAAI/bge-m3 on the NLI, natural-questions, vitaminc, xsum, paws and global_dataset datasets. It maps sentences & paragraphs to a 1024-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 Type: Sentence Transformer
  • Base model: BAAI/bge-m3
  • Maximum Sequence Length: 8192 tokens
  • Output Dimensionality: 1024 dimensions
  • Similarity Function: Cosine Similarity
  • Training Datasets:
  • Language: en

Model Sources

Full Model Architecture

SentenceTransformer(
  (0): Transformer({'max_seq_length': 8192, 'do_lower_case': False}) with Transformer model: XLMRobertaModel 
  (1): AdvancedWeightedPooling(
    (mha): MultiheadAttention(
      (out_proj): NonDynamicallyQuantizableLinear(in_features=1024, out_features=1024, bias=True)
    )
    (layernorm): LayerNorm((1024,), eps=1e-05, elementwise_affine=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/XLMRoBERTaM3-CustomPoolin-v1.01-2048d-s1")
# Run inference
sentences = [
    'Simyo belongs to the Dutch telecommunications group KPN , after acquisition of the remainder of E-Plus on March 14 .',
    'Following the acquisition of the remainder of E-Plus on 14 March , Simyo belongs to the Dutch telecommunications group KPN .',
    'In total , 28 US victims were killed , while Viet Cong losses were killed 345 and a further 192 estimated killed .',
]
embeddings = model.encode(sentences)
print(embeddings.shape)
# [3, 1024]

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

Evaluation

Metrics

Semantic Similarity

Metric Value
pearson_cosine 0.9057
spearman_cosine 0.9187

Binary Classification

Metric allNLI-dev Qnli-dev
cosine_accuracy 0.7656 0.7109
cosine_accuracy_threshold 0.7216 0.6857
cosine_f1 0.7091 0.7101
cosine_f1_threshold 0.6112 0.5354
cosine_precision 0.5821 0.6203
cosine_recall 0.907 0.8305
cosine_ap 0.66 0.717
cosine_mcc 0.5462 0.4058

Training Details

Training Datasets

NLI

NLI

  • Dataset: NLI at d43e6fe
  • Size: 750 training samples
  • Columns: anchor, entailment, and negative
  • Approximate statistics based on the first 750 samples:
    anchor entailment negative
    type string string string
    details
    • min: 4 tokens
    • mean: 25.11 tokens
    • max: 209 tokens
    • min: 5 tokens
    • mean: 16.61 tokens
    • max: 50 tokens
    • min: 5 tokens
    • mean: 16.79 tokens
    • max: 50 tokens
  • Samples:
    anchor entailment negative
    a child at a table preparing food A child mixing food in a bowl on a table. A child pouring food out of a bowl on a table.
    right exactly and then and then uh uh i'm i'm just not sure if i see you know if i see it going like i say to the right places i mean it'd be it'd be one thing if it were taking a bite out of your savings and then you were getting it all back when you got older The money needs to go to the right place because it not any you pay with your savings you might not get it all back when you get older. The money needs to go to the wrong place because it is not any you pay with your savings you might not get it all back when you get older.
    A bent over man is working on a toilet. a man kneeling by a toilet while holding onto a hammer a man kneeling by a toilet while holding onto a feather
  • Loss: CachedGISTEmbedLoss with these parameters:
    {'guide': SentenceTransformer(
      (0): Transformer({'max_seq_length': 512, 'do_lower_case': False}) 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.02}
    
natural-questions

natural-questions

  • Dataset: natural-questions at f9e894e
  • Size: 750 training samples
  • Columns: sentence1 and sentence2
  • Approximate statistics based on the first 750 samples:
    sentence1 sentence2
    type string string
    details
    • min: 10 tokens
    • mean: 13.29 tokens
    • max: 25 tokens
    • min: 7 tokens
    • mean: 149.14 tokens
    • max: 775 tokens
  • Samples:
    sentence1 sentence2
    what is g's name in ncis la G. Callen In season seven, Callen admits that he and Joelle are not suited and rowing a lot. They break up off screen but still spend Christmas together to avoid being lonely. In "Matryoshka, Part 2", Callen meets his father in Russia who reveals that his birth name is Grisha Alekandrovich Nikolaev but had to leave before he could find out any more information. Callen has since updated his personnel records and credentials with his full name.[1]
    who won the afl grand final in 1997 1997 AFL Grand Final The 1997 AFL Grand Final was an Australian rules football game contested between the Adelaide Football Club and the St Kilda Football Club, held at the Melbourne Cricket Ground in Melbourne on 27 September 1997. It was the 101st annual Grand Final of the Australian Football League (formerly the Victorian Football League), staged to determine the premiers for the 1997 AFL season. The match, attended by 99,645 spectators, was won by Adelaide by a margin of 31 points, marking that club's first premiership victory.
    what kind of ape is king louie in jungle book King Louie King Louie is a fictional character introduced in Walt Disney's 1967 animated musical film, The Jungle Book. Unlike the majority of the adapted characters in the film, Louie was not featured in Rudyard Kipling's original works. King Louie was portrayed as an orangutan who was the leader of the other jungle primates, and who attempted to gain knowledge of fire from Mowgli, in order to become more human.
  • Loss: CachedGISTEmbedLoss with these parameters:
    {'guide': SentenceTransformer(
      (0): Transformer({'max_seq_length': 512, 'do_lower_case': False}) 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.02}
    
vitaminc

vitaminc

  • Dataset: vitaminc at be6febb
  • Size: 370,653 training samples
  • Columns: claim and evidence
  • Approximate statistics based on the first 1000 samples:
    claim evidence
    type string string
    details
    • min: 9 tokens
    • mean: 20.27 tokens
    • max: 92 tokens
    • min: 9 tokens
    • mean: 44.98 tokens
    • max: 294 tokens
  • Samples:
    claim evidence
    XL Recordings was founded after 1989 . The label originated as a 1990 offshoot of Beggars Banquet Records .
    The Florida Project is a comedy-drama film . The Florida Project is a 2017 American comedy-drama film directed by Sean Baker , from a screenplay by Baker and Chris Bergoch .
    Neighbors 2 : Sorority Rising ( film ) was reviewed by more than 45 critics . On Rotten Tomatoes , the film has a rating of 67 % , based on 46 reviews , with an average rating of 6.2/10 .
  • Loss: CachedGISTEmbedLoss with these parameters:
    {'guide': SentenceTransformer(
      (0): Transformer({'max_seq_length': 512, 'do_lower_case': False}) 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.02}
    
xsum

xsum

  • Dataset: xsum at 044020f
  • Size: 131,779 training samples
  • Columns: summary and document
  • Approximate statistics based on the first 1000 samples:
    summary document
    type string string
    details
    • min: 15 tokens
    • mean: 30.64 tokens
    • max: 49 tokens
    • min: 60 tokens
    • mean: 313.48 tokens
    • max: 576 tokens
  • Samples:
    summary document
    A car has been shunted several feet down the track in a crash with a tram. The collision involving a Midland Metro tram happened at the station in Bilston Road in Ettingshall, Wolverhampton, at about 16:00 BST on Sunday.
    The car driver, a man in his 60s, was taken to hospital as a precaution.
    Midland Metro said: "The incident happened at the Priestfield tram stop car park. Emergency services were called and the full service was later resumed at around 17:30 BST."
    British Transport Police said it was treating the collision as an accident and no arrests had been made.
    The car was shunted about 10ft (3m) down the track in the crash.
    A West Midlands Ambulance Service spokesman said: "On arrival, crews found a car that had suffered significant damage to the passenger side having been shunted down the tracks."
    He said the driver of the car suffered chest pain from his seatbelt and was taken to New Cross Hospital in Wolverhampton.
    An audit has found that Nigeria's state oil company overpaid the government $750m (£490m), but also found it had not properly accounted for $1.48bn. The financial report follows allegations in 2013 by then-central bank chief Lamido Sanusi that the firm had failed to account for about $20bn.
    It caused a huge uproar in Nigeria, forcing President Goodluck Jonathan to order an independent audit.
    His office released the findings as he prepares to step down in a month.
    For the latest news, views and analysis see the BBC Africa Live page.
    Ex-military ruler Muhammadu Buhari will be inaugurated on 29 May after he defeated Mr Jonathan in elections last month.
    He has vowed to tackle corruption in Nigeria, Africa's main oil producer where most people live on less than $2 a day.
    The BBC's Chris Ewokor in the capital, Abuja, says the findings suggest that Mr Sanusi's claims were exaggerated.
    However, many Nigerians still believe that corruption in the oil sector runs deep, our correspondent adds.
    The audit into the accounts of the Nigerian National Petroleum Corporation (NNPC) was carried out by PwC, one of the world's leading accounting firms.
    ...
    Chilean President Michelle Bachelet has asked all her ministers to resign and says she will choose a new cabinet in the coming days. In an interview with broadcaster Canal 13, Ms Bachelet said changes were needed to promote reforms.
    Ms Bachelet's approval ratings have recently slumped amid a series of political scandals.
    In February her son resigned as head of a government charity over allegations of influence-peddling.
    The BBC's Gideon Long in Santiago says Ms Bachelet's dismissal of the entire cabinet is without precedent in recent Chilean history.
    The move gives some indication of the gravity of the crisis she faces, he says.
    "A few hours ago I requested the resignation of all the ministers, and I will take 72 hours to decide who will stay and who will go," Ms Bachelet said on Wednesday evening.
    "This is the time for a cabinet change."
    Ms Bachelet's son, Sebastian Davalos, was accused by the opposition of using his influence to get a $10m (£6.5m) bank loan for his wife.
    His wife's company used the money to buy plots of land in central Chile which her company then resold for profit.
    Although Chile's national bank...
  • Loss: CachedGISTEmbedLoss with these parameters:
    {'guide': SentenceTransformer(
      (0): Transformer({'max_seq_length': 512, 'do_lower_case': False}) 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.02}
    
paws

paws

  • Dataset: paws at 161ece9
  • Size: 49,401 training samples
  • Columns: sentence1 and sentence2
  • Approximate statistics based on the first 1000 samples:
    sentence1 sentence2
    type string string
    details
    • min: 11 tokens
    • mean: 31.42 tokens
    • max: 55 tokens
    • min: 11 tokens
    • mean: 31.27 tokens
    • max: 55 tokens
  • Samples:
    sentence1 sentence2
    Agathe knows Guillaume had a lover , but believes it was a young woman , Guillaume and Tom 's co-worker Sarah . Agathe knows that Guillaume had a lover , but believes that it was a young woman , Guillaume and Tom 's co-worker Sarah .
    It is available in areas including Phibsboro and Castleknock , Finglas , Cabra and Ballymun . It is available in areas including Phibsboro and Castleknock , Finglas , Cabra , Ballymun .
    More recently , the band Extra Life has combined aspects of early music with the modern genre of math rock . More recently , the band has combined Extra Life Aspects of Old Music with the modern genre of Math Rock .
  • Loss: CachedGISTEmbedLoss with these parameters:
    {'guide': SentenceTransformer(
      (0): Transformer({'max_seq_length': 512, 'do_lower_case': False}) 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.02}
    
global_dataset

global_dataset

  • Dataset: global_dataset
  • Size: 71,250 training samples
  • Columns: sentence1 and sentence2
  • Approximate statistics based on the first 1000 samples:
    sentence1 sentence2
    type string string
    details
    • min: 7 tokens
    • mean: 24.11 tokens
    • max: 88 tokens
    • min: 5 tokens
    • mean: 104.68 tokens
    • max: 536 tokens
  • Samples:
    sentence1 sentence2
    Audubon Park was founded in 1941 as a community within Audubon with the construction of 500 accommodation units for the employees of New York Shipbuilding in Camden , New Jersey . Audubon Park was established as a community within Audubon in 1941 with the construction of 500 housing units for employees of New York Shipbuilding in Camden , New Jersey .
    Highsmith is the father of the current former NFL player Ali Highsmith and the uncle of the former NFL player Alonzo Highsmith . Highsmith is the father of current former NFL player Ali Highsmith and uncle of former NFL player Alonzo Highsmith .
    Work has begun to construct Britain's first new permanent military base in the Middle East since 1971. Foreign Secretary Philip Hammond and naval personnel attended a ceremony to mark the start of construction of HMS Juffair at Mina Salman Port in Bahrain.
    The establishment is being developed to support Royal Navy deployments in the Gulf through the creation of a permanent and improved base.
    Mr Hammond said it showed the UK's commitment to the region.
    Mr Hammond said: "The presence of the Royal Navy in Bahrain is guaranteed into the future, ensuring Britain's sustained presence east of Suez.
    "The new facility will enable Britain to work with our allies to reinforce stability in the Gulf and beyond."
    Bahrain has been criticised over allegations of serious human rights abuses, but Mr Hammond said the UK was helping the Persian Gulf State to change.
    He said: "Bahrain is not perfect by any means, but it at least knows what it has to do and it is taking steps to do it.
    In some cases, he said, the state's authorities were "seeking our support to help them reform., for example, their police fo...
  • Loss: CachedGISTEmbedLoss with these parameters:
    {'guide': SentenceTransformer(
      (0): Transformer({'max_seq_length': 512, 'do_lower_case': False}) 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.02}
    

Evaluation Datasets

NLI

NLI

  • Dataset: NLI at d43e6fe
  • Size: 85 evaluation samples
  • Columns: anchor, entailment, and negative
  • Approximate statistics based on the first 85 samples:
    anchor entailment negative
    type string string string
    details
    • min: 8 tokens
    • mean: 17.14 tokens
    • max: 37 tokens
    • min: 6 tokens
    • mean: 13.35 tokens
    • max: 29 tokens
    • min: 6 tokens
    • mean: 13.65 tokens
    • max: 28 tokens
  • Samples:
    anchor entailment negative
    A tabby cat laying on a cat scratcher in front of a bicycle wheel. A cat is falling asleep on top of a scratching pad. A cat is wide awake on top of a scratching pad.
    Bruce Springsteen, with one arm outstretched, is singing in the spotlight in a dark concert hall. Bruce Springsteen is a singer. Bruce Springsteen is not a singer.
    A man and a woman cook in the kitchen. A married couple preparing food in a house kitchen. A married couple not preparing food in a house kitchen.
  • Loss: CachedGISTEmbedLoss with these parameters:
    {'guide': SentenceTransformer(
      (0): Transformer({'max_seq_length': 512, 'do_lower_case': False}) 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.02}
    
natural-questions

natural-questions

  • Dataset: natural-questions at f9e894e
  • Size: 113 evaluation samples
  • Columns: sentence1 and sentence2
  • Approximate statistics based on the first 113 samples:
    sentence1 sentence2
    type string string
    details
    • min: 10 tokens
    • mean: 13.14 tokens
    • max: 22 tokens
    • min: 34 tokens
    • mean: 151.35 tokens
    • max: 390 tokens
  • Samples:
    sentence1 sentence2
    what do the colors of germany flag mean Flag of Germany The colours of the modern flag are associated with the republican democracy first proposed in 1848, formed after World War I, and represent German unity and freedom.[3] During the Weimar Republic, the black-red-gold colours were the colours of the democratic, centrist, and republican political parties, as seen in the name of Reichsbanner Schwarz-Rot-Gold, formed by members of the Social Democratic, the Centre, and the Democratic parties to defend the republic against extremists on the right and left.
    where do goldfish come from in the wild Goldfish A relatively small member of the carp family (which also includes the Prussian carp and the crucian carp), the goldfish is native to east Asia. It was first selectively bred in China more than a thousand years ago, and several distinct breeds have since been developed. Goldfish breeds vary greatly in size, body shape, fin configuration and colouration (various combinations of white, yellow, orange, red, brown, and black are known).
    what was the name of punky brewsters dog Punky Brewster Penelope "Punky" Brewster (Soleil Moon Frye) is a warm, funny and bright child. Her father walked out on her family, then her mother abandoned her at a Chicago shopping center, leaving Punky alone with her dog Brandon. Afterwards, Punky discovered a vacant apartment in a local building.[3]
  • Loss: CachedGISTEmbedLoss with these parameters:
    {'guide': SentenceTransformer(
      (0): Transformer({'max_seq_length': 512, 'do_lower_case': False}) 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.02}
    
vitaminc

vitaminc

  • Dataset: vitaminc at be6febb
  • Size: 63,054 evaluation samples
  • Columns: claim and evidence
  • Approximate statistics based on the first 1000 samples:
    claim evidence
    type string string
    details
    • min: 10 tokens
    • mean: 22.49 tokens
    • max: 48 tokens
    • min: 11 tokens
    • mean: 38.29 tokens
    • max: 92 tokens
  • Samples:
    claim evidence
    Coronavirus has killed more than 7,050 people . more than 7,100 deaths have been attributed to COVID-19 .
    Less than 91,000 recoveries from coronavirus had been reported by 21 March . As of 21 March , more than 275,000 cases of COVID-19 have been reported in over 185 countries and territories , resulting in more than 11,300 deaths and 90,000 recoveries .
    More than 31,800 COVID-19 fatalities have been confirmed globally in 2019-20 . more than 680,000 cases of COVID-19 have been reported in over 190 countries and territories , resulting in approximately 31,900 deaths .
  • Loss: CachedGISTEmbedLoss with these parameters:
    {'guide': SentenceTransformer(
      (0): Transformer({'max_seq_length': 512, 'do_lower_case': False}) 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.02}
    
xsum

xsum

  • Dataset: xsum at 044020f
  • Size: 131,779 evaluation samples
  • Columns: summary and document
  • Approximate statistics based on the first 1000 samples:
    summary document
    type string string
    details
    • min: 12 tokens
    • mean: 29.78 tokens
    • max: 47 tokens
    • min: 41 tokens
    • mean: 304.01 tokens
    • max: 501 tokens
  • Samples:
    summary document
    Hibernian striker Anthony Stokes believes Easter Road boss Alan Stubbs has all the attributes to become a top manager. Stokes, on loan at Hibs from Celtic, refused to say whether he thought Stubbs would one day be Celtic boss.
    But the Irishman feels Stubbs would cope admirably with everything that comes with being an Old Firm manager.
    "From the managers I have seen there he would have no issue in coping with the Celtic job," said Stokes.
    "That is not me trying to put anything out there. You look at him and he is obviously not in the manager's job that long but he is like a manager that has been around for 10 or 15 years in how he handles the boys.
    "He has played the game himself and he understands how players react and how they handle themselves and adapt to situations."
    Stokes says it has taken him some time to recapture the sharpness he was looking for when he joined the club in January.
    He insists this is down to his lack of game time, having not featured for Celtic since a 3-1 win against Dundee United back in August.
    "It's just down to fitness and match sharpness," explained the Republic of Irelan...
    Scarlets have confirmed Cardiff Blues wing Harry Robinson is joining them ahead of the 2014-15 season. The move was revealed to BBC Radio Wales by joint Blues coach Dale McIntosh on 20 March.
    Robinson, 20, has made three Wales appearances - one against Barbarians and two against Japan, and has played for Wales Under-20.
    He has scored eight tries in 17 Blues appearances, having made his debut in the 2012-13 season.
    Caps against Barbarians in June 2013 and two more on tour in Japan followed.
    But he has not figured since for Wales and will hope to progress at Scarlets.
    Scarlets head coach Simon Easterby said: "We believe Harry will thrive in our young and ambitious environment but will also benefit from playing alongside a world-class and experienced player like [returning centre] Regan King.
    "He's an ambitious player who has great pace and the supporters can look forward to what he can bring next season in addition to existing Scarlets talent in the back three."
    McIntosh said: "A lot to do with it [Robinson's move] is the budget, the financial situation at the moment in Wales.
    "It's about...
    A knife attacker who lashed out at Tube passengers cutting the throat of one had images of murdered Lee Rigby on his phone, a jury has heard. Muhiddin Mire, 30, injured musician Lyle Zimmerman at Leytonstone station, the Old Bailey heard.
    As he was led away by police on 5 December he said "this is for Syria, for my Muslim brothers", the jury was told.
    Mr Mire admits attacking Mr Zimmerman, 56, but denies attempted murder.
    Mr Zimmerman suffered "a deep and ragged wound" to his neck and his windpipe was exposed, the court has heard.
    Images of murdered soldier Lee Rigby and British Islamic State executioner Jihadi John, were among extremist material found on Mr Mire's phone, prosecutors said.
    As he was led away by police Mr Mire explained his actions were in response to the bombings of hospitals in Syria, the jury heard.
    Prosecutor Jonathan Rees QC said: "The contents of the defendant's phone, when looked at alongside what he said during the course of the incident... provides an insight as to what motivated the defendant to do what he did and what he was seeking to do to Mr Zimmerman."
    Minutes after he attacked Mr Zimmerman, th...
  • Loss: CachedGISTEmbedLoss with these parameters:
    {'guide': SentenceTransformer(
      (0): Transformer({'max_seq_length': 512, 'do_lower_case': False}) 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.02}
    
paws

paws

  • Dataset: paws at 161ece9
  • Size: 8,000 evaluation samples
  • Columns: sentence1 and sentence2
  • Approximate statistics based on the first 1000 samples:
    sentence1 sentence2
    type string string
    details
    • min: 15 tokens
    • mean: 31.14 tokens
    • max: 56 tokens
    • min: 16 tokens
    • mean: 31.13 tokens
    • max: 54 tokens
  • Samples:
    sentence1 sentence2
    It was designed in 1983 by architects Philip Johnson ( alumnus of the University ) and John Burgee . It was designed by architects Philip Johnson ( alumnus of the University ) and John Burgee in 1983 .
    Mandarin - Chinese has specific terms and racial euphemisms for different races and ethnicities , and some discriminatory attacks against representatives of certain governments and backgrounds . Mandarin Chinese has specific terms and racial euphemisms for different races and ethnicities , and some discriminatory slurs against representatives from certain governments and backgrounds .
    Adam Surat ( `` Inner Strength '' ) is a documentary film directed by Sheikh Mohammed Sultan in 1989 about the Bangladeshi painter Tareque Masud . Adam Surat ( `` The Inner Strength '' ) is a 1989 Bangladeshi documentary film about the Bangladeshi painter Tareque Masud , directed by Sheikh Mohammed Sultan .
  • Loss: CachedGISTEmbedLoss with these parameters:
    {'guide': SentenceTransformer(
      (0): Transformer({'max_seq_length': 512, 'do_lower_case': False}) 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.02}
    
global_dataset

global_dataset

  • Dataset: global_dataset
  • Size: 256 evaluation samples
  • Columns: sentence1 and sentence2
  • Approximate statistics based on the first 256 samples:
    sentence1 sentence2
    type string string
    details
    • min: 10 tokens
    • mean: 23.88 tokens
    • max: 50 tokens
    • min: 7 tokens
    • mean: 117.77 tokens
    • max: 526 tokens
  • Samples:
    sentence1 sentence2
    Dominique Cottrez, the Frenchwoman who confessed in 2010 to killing eight of her own newborn babies, has been freed under supervision, French media report. She was released untagged by an appeals court in the northern town of Douai on condition she continued to receive psychological and psychiatric care.
    Mrs Cottrez had been in custody since July 2010, when remains were found in the garden of her parents' home.
    She was awaiting trial on eight charges of voluntary homicide.
    It was not immediately clear on what grounds she had been released.
    While she admitted killing her eight newborn babies between 1989 and 2006, in the village of Villers-au-Tertre near Lille, she said her husband had known nothing about them. He has not been charged.
    She told an examining magistrate she had been a victim of incest and feared that her own father, who died in 2007, had fathered the babies, Le Figaro newspaper reports.
    Mrs Cottrez, who is in her late forties, reportedly managed to conceal the pregnancies because of her obesity.
    Two sets of remains were found in the parents' house, wrapped in plastic bags.
    The other six bodies were found in the garage of a s...
    An empty bathroom with a shower next to a toilet. A small bathroom with a toilet and a bathtub with an open shower curtain.
    Lobethal Bierhaus is a German beer brewery , with regional style influences . Lobethal Bierhaus is a German brewery with regional influences of style .
  • Loss: CachedGISTEmbedLoss with these parameters:
    {'guide': SentenceTransformer(
      (0): Transformer({'max_seq_length': 512, 'do_lower_case': False}) 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.02}
    

Training Hyperparameters

Non-Default Hyperparameters

  • eval_strategy: steps
  • per_device_train_batch_size: 192
  • per_device_eval_batch_size: 256
  • learning_rate: 0.0001
  • weight_decay: 0.001
  • lr_scheduler_type: cosine_with_min_lr
  • lr_scheduler_kwargs: {'num_cycles': 0.5, 'min_lr': 3.3333333333333335e-05}
  • warmup_ratio: 0.15
  • save_safetensors: False
  • fp16: True
  • remove_unused_columns: False
  • push_to_hub: True
  • hub_model_id: bobox/XLMRoBERTaM3-CustomPoolin-v1.01-2048d-s1-checkpoints-tmp
  • hub_strategy: all_checkpoints
  • hub_private_repo: False
  • 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: 192
  • per_device_eval_batch_size: 256
  • per_gpu_train_batch_size: None
  • per_gpu_eval_batch_size: None
  • gradient_accumulation_steps: 1
  • eval_accumulation_steps: None
  • torch_empty_cache_steps: None
  • learning_rate: 0.0001
  • weight_decay: 0.001
  • adam_beta1: 0.9
  • adam_beta2: 0.999
  • adam_epsilon: 1e-08
  • max_grad_norm: 1.0
  • num_train_epochs: 3
  • max_steps: -1
  • lr_scheduler_type: cosine_with_min_lr
  • lr_scheduler_kwargs: {'num_cycles': 0.5, 'min_lr': 3.3333333333333335e-05}
  • warmup_ratio: 0.15
  • 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: False
  • 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}
  • tp_size: 0
  • 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/XLMRoBERTaM3-CustomPoolin-v1.01-2048d-s1-checkpoints-tmp
  • hub_strategy: all_checkpoints
  • hub_private_repo: False
  • hub_always_push: False
  • gradient_checkpointing: False
  • gradient_checkpointing_kwargs: None
  • include_inputs_for_metrics: False
  • include_for_metrics: []
  • 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
  • include_tokens_per_second: False
  • include_num_input_tokens_seen: False
  • neftune_noise_alpha: None
  • optim_target_modules: None
  • batch_eval_metrics: False
  • eval_on_start: False
  • use_liger_kernel: False
  • eval_use_gather_object: False
  • average_tokens_across_devices: False
  • prompts: None
  • batch_sampler: no_duplicates
  • multi_dataset_batch_sampler: proportional

Training Logs

Click to expand
Epoch Step Training Loss NLI loss natural-questions loss vitaminc loss xsum loss paws loss global dataset loss sts-test_spearman_cosine allNLI-dev_cosine_ap Qnli-dev_cosine_ap
0.0026 1 0.8688 - - - - - - - - -
0.0051 2 3.538 - - - - - - - - -
0.0077 3 0.6752 - - - - - - - - -
0.0102 4 0.8807 - - - - - - - - -
0.0128 5 0.6127 - - - - - - - - -
0.0153 6 0.9364 - - - - - - - - -
0.0179 7 0.6662 - - - - - - - - -
0.0204 8 0.8483 - - - - - - - - -
0.0230 9 1.0163 - - - - - - - - -
0.0255 10 0.7548 - - - - - - - - -
0.0281 11 0.8119 - - - - - - - - -
0.0306 12 0.9089 - - - - - - - - -
0.0332 13 0.8262 - - - - - - - - -
0.0357 14 0.7469 - - - - - - - - -
0.0383 15 0.7397 - - - - - - - - -
0.0408 16 0.532 - - - - - - - - -
0.0434 17 0.6666 - - - - - - - - -
0.0459 18 0.7882 - - - - - - - - -
0.0485 19 0.7006 - - - - - - - - -
0.0510 20 0.7633 - - - - - - - - -
0.0536 21 0.6789 - - - - - - - - -
0.0561 22 0.6284 - - - - - - - - -
0.0587 23 0.5713 - - - - - - - - -
0.0612 24 1.7645 - - - - - - - - -
0.0638 25 0.4332 - - - - - - - - -
0.0663 26 0.4666 - - - - - - - - -
0.0689 27 0.3851 - - - - - - - - -
0.0714 28 0.6867 - - - - - - - - -
0.0740 29 0.3746 - - - - - - - - -
0.0765 30 0.3221 - - - - - - - - -
0.0791 31 0.6967 - - - - - - - - -
0.0816 32 0.3859 - - - - - - - - -
0.0842 33 0.4324 - - - - - - - - -
0.0867 34 0.2536 - - - - - - - - -
0.0893 35 0.2255 - - - - - - - - -
0.0918 36 0.3757 - - - - - - - - -
0.0944 37 0.305 - - - - - - - - -
0.0969 38 0.2694 - - - - - - - - -
0.0995 39 0.3352 - - - - - - - - -
0.1020 40 0.2138 - - - - - - - - -
0.1046 41 0.1574 - - - - - - - - -
0.1071 42 0.3109 - - - - - - - - -
0.1097 43 0.2689 - - - - - - - - -
0.1122 44 0.198 - - - - - - - - -
0.1148 45 0.2007 - - - - - - - - -
0.1173 46 0.1973 - - - - - - - - -
0.1199 47 0.1172 - - - - - - - - -
0.1224 48 0.2643 - - - - - - - - -
0.125 49 0.1813 - - - - - - - - -
0.1276 50 0.095 - - - - - - - - -
0.1301 51 0.1818 - - - - - - - - -
0.1327 52 0.2118 - - - - - - - - -
0.1352 53 0.107 - - - - - - - - -
0.1378 54 0.1999 - - - - - - - - -
0.1403 55 0.1951 - - - - - - - - -
0.1429 56 0.2001 - - - - - - - - -
0.1454 57 0.2214 - - - - - - - - -
0.1480 58 0.1678 - - - - - - - - -
0.1505 59 0.0841 0.7537 0.3439 1.5805 0.2436 0.0212 0.5505 0.9131 0.6599 0.7294
0.1531 60 0.135 - - - - - - - - -
0.1556 61 0.0853 - - - - - - - - -
0.1582 62 0.3284 - - - - - - - - -
0.1607 63 0.2188 - - - - - - - - -
0.1633 64 0.1539 - - - - - - - - -
0.1658 65 0.1776 - - - - - - - - -
0.1684 66 0.2858 - - - - - - - - -
0.1709 67 0.3067 - - - - - - - - -
0.1735 68 0.0222 - - - - - - - - -
0.1760 69 0.1468 - - - - - - - - -
0.1786 70 0.2655 - - - - - - - - -
0.1811 71 0.1122 - - - - - - - - -
0.1837 72 0.0744 - - - - - - - - -
0.1862 73 0.1609 - - - - - - - - -
0.1888 74 0.1659 - - - - - - - - -
0.1913 75 0.186 - - - - - - - - -
0.1939 76 0.1391 - - - - - - - - -
0.1964 77 0.3234 - - - - - - - - -
0.1990 78 0.179 - - - - - - - - -
0.2015 79 0.191 - - - - - - - - -
0.2041 80 0.3031 - - - - - - - - -
0.2066 81 0.1225 - - - - - - - - -
0.2092 82 0.1261 - - - - - - - - -
0.2117 83 0.124 - - - - - - - - -
0.2143 84 0.1981 - - - - - - - - -
0.2168 85 0.0966 - - - - - - - - -
0.2194 86 0.1433 - - - - - - - - -
0.2219 87 0.1127 - - - - - - - - -
0.2245 88 0.0791 - - - - - - - - -
0.2270 89 0.1543 - - - - - - - - -
0.2296 90 0.1623 - - - - - - - - -
0.2321 91 0.1875 - - - - - - - - -
0.2347 92 0.2052 - - - - - - - - -
0.2372 93 0.1369 - - - - - - - - -
0.2398 94 0.1689 - - - - - - - - -
0.2423 95 0.0761 - - - - - - - - -
0.2449 96 0.0837 - - - - - - - - -
0.2474 97 0.1575 - - - - - - - - -
0.25 98 0.1799 - - - - - - - - -
0.2526 99 0.1809 - - - - - - - - -
0.2551 100 0.119 - - - - - - - - -
0.2577 101 0.1464 - - - - - - - - -
0.2602 102 0.041 - - - - - - - - -
0.2628 103 0.19 - - - - - - - - -
0.2653 104 0.1423 - - - - - - - - -
0.2679 105 0.4117 - - - - - - - - -
0.2704 106 0.1147 - - - - - - - - -
0.2730 107 0.1455 - - - - - - - - -
0.2755 108 0.1134 - - - - - - - - -
0.2781 109 0.114 - - - - - - - - -
0.2806 110 0.0946 - - - - - - - - -
0.2832 111 0.161 - - - - - - - - -
0.2857 112 0.1212 - - - - - - - - -
0.2883 113 0.1292 - - - - - - - - -
0.2908 114 0.1122 - - - - - - - - -
0.2934 115 0.1526 - - - - - - - - -
0.2959 116 0.1103 - - - - - - - - -
0.2985 117 0.1331 - - - - - - - - -
0.3010 118 0.0865 0.6081 0.2691 1.5269 0.1412 0.0212 0.5289 0.9173 0.6602 0.7240
0.3036 119 0.0885 - - - - - - - - -
0.3061 120 0.1277 - - - - - - - - -
0.3087 121 0.0942 - - - - - - - - -
0.3112 122 0.0684 - - - - - - - - -
0.3138 123 0.193 - - - - - - - - -
0.3163 124 0.1047 - - - - - - - - -
0.3189 125 0.1641 - - - - - - - - -
0.3214 126 0.0988 - - - - - - - - -
0.3240 127 0.1354 - - - - - - - - -
0.3265 128 0.1431 - - - - - - - - -
0.3291 129 0.135 - - - - - - - - -
0.3316 130 0.1668 - - - - - - - - -
0.3342 131 0.0339 - - - - - - - - -
0.3367 132 0.0782 - - - - - - - - -
0.3393 133 0.2163 - - - - - - - - -
0.3418 134 0.1736 - - - - - - - - -
0.3444 135 0.166 - - - - - - - - -
0.3469 136 0.0804 - - - - - - - - -
0.3495 137 0.0902 - - - - - - - - -
0.3520 138 0.0847 - - - - - - - - -
0.3546 139 0.2095 - - - - - - - - -
0.3571 140 0.0682 - - - - - - - - -
0.3597 141 0.0645 - - - - - - - - -
0.3622 142 0.2498 - - - - - - - - -
0.3648 143 0.2704 - - - - - - - - -
0.3673 144 0.2131 - - - - - - - - -
0.3699 145 0.1247 - - - - - - - - -
0.3724 146 0.1979 - - - - - - - - -
0.375 147 0.0845 - - - - - - - - -
0.3776 148 0.1752 - - - - - - - - -
0.3801 149 0.1824 - - - - - - - - -
0.3827 150 0.1249 - - - - - - - - -
0.3852 151 0.1261 - - - - - - - - -
0.3878 152 0.0839 - - - - - - - - -
0.3903 153 0.1659 - - - - - - - - -
0.3929 154 0.0955 - - - - - - - - -
0.3954 155 0.0917 - - - - - - - - -
0.3980 156 0.0496 - - - - - - - - -
0.4005 157 0.0665 - - - - - - - - -
0.4031 158 0.1232 - - - - - - - - -
0.4056 159 0.1529 - - - - - - - - -
0.4082 160 0.0806 - - - - - - - - -
0.4107 161 0.0901 - - - - - - - - -
0.4133 162 0.0882 - - - - - - - - -
0.4158 163 0.1155 - - - - - - - - -
0.4184 164 0.1194 - - - - - - - - -
0.4209 165 0.0513 - - - - - - - - -
0.4235 166 0.1288 - - - - - - - - -
0.4260 167 0.0825 - - - - - - - - -
0.4286 168 0.0897 - - - - - - - - -
0.4311 169 0.0669 - - - - - - - - -
0.4337 170 0.1707 - - - - - - - - -
0.4362 171 0.1525 - - - - - - - - -
0.4388 172 0.0807 - - - - - - - - -
0.4413 173 0.1249 - - - - - - - - -
0.4439 174 0.1338 - - - - - - - - -
0.4464 175 0.0788 - - - - - - - - -
0.4490 176 0.1216 - - - - - - - - -
0.4515 177 0.1544 0.6024 0.2676 1.5297 0.1515 0.0211 0.5435 0.9172 0.6573 0.7200
0.4541 178 0.1201 - - - - - - - - -
0.4566 179 0.1198 - - - - - - - - -
0.4592 180 0.1066 - - - - - - - - -
0.4617 181 0.1532 - - - - - - - - -
0.4643 182 0.1067 - - - - - - - - -
0.4668 183 0.1158 - - - - - - - - -
0.4694 184 0.0746 - - - - - - - - -
0.4719 185 0.1679 - - - - - - - - -
0.4745 186 0.1911 - - - - - - - - -
0.4770 187 0.0588 - - - - - - - - -
0.4796 188 0.5639 - - - - - - - - -
0.4821 189 0.1161 - - - - - - - - -
0.4847 190 0.062 - - - - - - - - -
0.4872 191 0.0967 - - - - - - - - -
0.4898 192 0.0205 - - - - - - - - -
0.4923 193 0.0973 - - - - - - - - -
0.4949 194 0.1513 - - - - - - - - -
0.4974 195 0.0979 - - - - - - - - -
0.5 196 0.1616 - - - - - - - - -
0.5026 197 0.1251 - - - - - - - - -
0.5051 198 0.1162 - - - - - - - - -
0.5077 199 0.1753 - - - - - - - - -
0.5102 200 0.13 - - - - - - - - -
0.5128 201 0.3647 - - - - - - - - -
0.5153 202 0.0376 - - - - - - - - -
0.5179 203 0.1723 - - - - - - - - -
0.5204 204 0.096 - - - - - - - - -
0.5230 205 0.2217 - - - - - - - - -
0.5255 206 0.1642 - - - - - - - - -
0.5281 207 0.1323 - - - - - - - - -
0.5306 208 0.0767 - - - - - - - - -
0.5332 209 0.1336 - - - - - - - - -
0.5357 210 0.1086 - - - - - - - - -
0.5383 211 0.066 - - - - - - - - -
0.5408 212 0.0711 - - - - - - - - -
0.5434 213 0.082 - - - - - - - - -
0.5459 214 0.1153 - - - - - - - - -
0.5485 215 0.0913 - - - - - - - - -
0.5510 216 0.1388 - - - - - - - - -
0.5536 217 0.1114 - - - - - - - - -
0.5561 218 0.2351 - - - - - - - - -
0.5587 219 0.1217 - - - - - - - - -
0.5612 220 0.1877 - - - - - - - - -
0.5638 221 0.0493 - - - - - - - - -
0.5663 222 0.1502 - - - - - - - - -
0.5689 223 0.087 - - - - - - - - -
0.5714 224 0.1624 - - - - - - - - -
0.5740 225 0.0801 - - - - - - - - -
0.5765 226 0.1095 - - - - - - - - -
0.5791 227 0.0882 - - - - - - - - -
0.5816 228 0.1208 - - - - - - - - -
0.5842 229 0.0614 - - - - - - - - -
0.5867 230 0.128 - - - - - - - - -
0.5893 231 0.0937 - - - - - - - - -
0.5918 232 0.0808 - - - - - - - - -
0.5944 233 0.1392 - - - - - - - - -
0.5969 234 0.0706 - - - - - - - - -
0.5995 235 0.194 - - - - - - - - -
0.6020 236 0.0998 0.5591 0.2272 1.4624 0.1305 0.0215 0.5477 0.9129 0.6618 0.7284
0.6046 237 0.1361 - - - - - - - - -
0.6071 238 0.1836 - - - - - - - - -
0.6097 239 0.0569 - - - - - - - - -
0.6122 240 0.0917 - - - - - - - - -
0.6148 241 0.1445 - - - - - - - - -
0.6173 242 0.0236 - - - - - - - - -
0.6199 243 0.0506 - - - - - - - - -
0.6224 244 0.0865 - - - - - - - - -
0.625 245 0.064 - - - - - - - - -
0.6276 246 0.1836 - - - - - - - - -
0.6301 247 0.0943 - - - - - - - - -
0.6327 248 0.1931 - - - - - - - - -
0.6352 249 0.106 - - - - - - - - -
0.6378 250 0.0916 - - - - - - - - -
0.6403 251 0.4604 - - - - - - - - -
0.6429 252 0.1859 - - - - - - - - -
0.6454 253 0.1444 - - - - - - - - -
0.6480 254 0.0855 - - - - - - - - -
0.6505 255 0.1305 - - - - - - - - -
0.6531 256 0.332 - - - - - - - - -
0.6556 257 0.0677 - - - - - - - - -
0.6582 258 0.1257 - - - - - - - - -
0.6607 259 0.0571 - - - - - - - - -
0.6633 260 0.1416 - - - - - - - - -
0.6658 261 0.6253 - - - - - - - - -
0.6684 262 0.1779 - - - - - - - - -
0.6709 263 0.06 - - - - - - - - -
0.6735 264 0.068 - - - - - - - - -
0.6760 265 0.1299 - - - - - - - - -
0.6786 266 0.1161 - - - - - - - - -
0.6811 267 0.1072 - - - - - - - - -
0.6837 268 0.0794 - - - - - - - - -
0.6862 269 0.1327 - - - - - - - - -
0.6888 270 0.1334 - - - - - - - - -
0.6913 271 0.078 - - - - - - - - -
0.6939 272 0.0434 - - - - - - - - -
0.6964 273 0.1064 - - - - - - - - -
0.6990 274 0.0519 - - - - - - - - -
0.7015 275 0.1192 - - - - - - - - -
0.7041 276 0.0916 - - - - - - - - -
0.7066 277 0.0672 - - - - - - - - -
0.7092 278 0.1746 - - - - - - - - -
0.7117 279 0.1003 - - - - - - - - -
0.7143 280 0.1753 - - - - - - - - -
0.7168 281 0.0776 - - - - - - - - -
0.7194 282 0.0937 - - - - - - - - -
0.7219 283 0.1156 - - - - - - - - -
0.7245 284 0.0723 - - - - - - - - -
0.7270 285 0.0601 - - - - - - - - -
0.7296 286 0.1134 - - - - - - - - -
0.7321 287 0.1848 - - - - - - - - -
0.7347 288 0.0919 - - - - - - - - -
0.7372 289 0.0575 - - - - - - - - -
0.7398 290 0.0554 - - - - - - - - -
0.7423 291 0.1319 - - - - - - - - -
0.7449 292 0.1565 - - - - - - - - -
0.7474 293 0.1305 - - - - - - - - -
0.75 294 0.1213 - - - - - - - - -
0.7526 295 0.0492 0.5623 0.2411 1.5459 0.1292 0.0216 0.5486 0.9166 0.6677 0.7186
0.7551 296 0.0457 - - - - - - - - -
0.7577 297 0.1398 - - - - - - - - -
0.7602 298 0.118 - - - - - - - - -
0.7628 299 0.0837 - - - - - - - - -
0.7653 300 0.1 - - - - - - - - -
0.7679 301 0.1138 - - - - - - - - -
0.7704 302 0.0662 - - - - - - - - -
0.7730 303 0.0188 - - - - - - - - -
0.7755 304 0.0823 - - - - - - - - -
0.7781 305 0.1523 - - - - - - - - -
0.7806 306 0.0634 - - - - - - - - -
0.7832 307 0.0943 - - - - - - - - -
0.7857 308 0.1354 - - - - - - - - -
0.7883 309 0.1867 - - - - - - - - -
0.7908 310 0.096 - - - - - - - - -
0.7934 311 0.1158 - - - - - - - - -
0.7959 312 0.0753 - - - - - - - - -
0.7985 313 0.1125 - - - - - - - - -
0.8010 314 0.1382 - - - - - - - - -
0.8036 315 0.0898 - - - - - - - - -
0.8061 316 0.0689 - - - - - - - - -
0.8087 317 0.0788 - - - - - - - - -
0.8112 318 0.0721 - - - - - - - - -
0.8138 319 0.069 - - - - - - - - -
0.8163 320 0.0905 - - - - - - - - -
0.8189 321 0.1115 - - - - - - - - -
0.8214 322 0.0719 - - - - - - - - -
0.8240 323 0.0696 - - - - - - - - -
0.8265 324 0.1179 - - - - - - - - -
0.8291 325 0.0516 - - - - - - - - -
0.8316 326 0.0878 - - - - - - - - -
0.8342 327 0.1021 - - - - - - - - -
0.8367 328 0.0652 - - - - - - - - -
0.8393 329 0.0763 - - - - - - - - -
0.8418 330 0.0708 - - - - - - - - -
0.8444 331 0.0917 - - - - - - - - -
0.8469 332 0.0863 - - - - - - - - -
0.8495 333 0.1086 - - - - - - - - -
0.8520 334 0.0689 - - - - - - - - -
0.8546 335 0.069 - - - - - - - - -
0.8571 336 0.0964 - - - - - - - - -
0.8597 337 0.0812 - - - - - - - - -
0.8622 338 0.0668 - - - - - - - - -
0.8648 339 0.0681 - - - - - - - - -
0.8673 340 0.1352 - - - - - - - - -
0.8699 341 0.2694 - - - - - - - - -
0.8724 342 0.0717 - - - - - - - - -
0.875 343 0.0744 - - - - - - - - -
0.8776 344 0.1061 - - - - - - - - -
0.8801 345 0.1022 - - - - - - - - -
0.8827 346 0.0868 - - - - - - - - -
0.8852 347 0.1093 - - - - - - - - -
0.8878 348 0.0082 - - - - - - - - -
0.8903 349 0.1522 - - - - - - - - -
0.8929 350 0.0622 - - - - - - - - -
0.8954 351 0.0862 - - - - - - - - -
0.8980 352 0.0487 - - - - - - - - -
0.9005 353 0.0962 - - - - - - - - -
0.9031 354 0.1236 0.5770 0.2623 1.5449 0.1174 0.0217 0.5860 0.9168 0.6620 0.7177
0.9056 355 0.0438 - - - - - - - - -
0.9082 356 0.0685 - - - - - - - - -
0.9107 357 0.1821 - - - - - - - - -
0.9133 358 0.0493 - - - - - - - - -
0.9158 359 0.1302 - - - - - - - - -
0.9184 360 0.0734 - - - - - - - - -
0.9209 361 0.0821 - - - - - - - - -
0.9235 362 0.13 - - - - - - - - -
0.9260 363 0.0924 - - - - - - - - -
0.9286 364 0.0662 - - - - - - - - -
0.9311 365 0.09 - - - - - - - - -
0.9337 366 0.0579 - - - - - - - - -
0.9362 367 0.1086 - - - - - - - - -
0.9388 368 0.0731 - - - - - - - - -
0.9413 369 0.0967 - - - - - - - - -
0.9439 370 0.1372 - - - - - - - - -
0.9464 371 0.0395 - - - - - - - - -
0.9490 372 0.0483 - - - - - - - - -
0.9515 373 0.0838 - - - - - - - - -
0.9541 374 0.1197 - - - - - - - - -
0.9566 375 0.1113 - - - - - - - - -
0.9592 376 0.0281 - - - - - - - - -
0.9617 377 0.0669 - - - - - - - - -
0.9643 378 0.1519 - - - - - - - - -
0.9668 379 0.1026 - - - - - - - - -
0.9694 380 0.116 - - - - - - - - -
0.9719 381 0.1505 - - - - - - - - -
0.9745 382 0.0853 - - - - - - - - -
0.9770 383 0.0319 - - - - - - - - -
0.9796 384 0.061 - - - - - - - - -
0.9821 385 0.1313 - - - - - - - - -
0.9847 386 0.0744 - - - - - - - - -
0.9872 387 0.0802 - - - - - - - - -
0.9898 388 0.0591 - - - - - - - - -
0.9923 389 0.1028 - - - - - - - - -
0.9949 390 0.0859 - - - - - - - - -
0.9974 391 0.1289 - - - - - - - - -
1.0 392 0.0001 - - - - - - - - -
1.0026 393 0.1039 - - - - - - - - -
1.0051 394 0.038 - - - - - - - - -
1.0077 395 0.0449 - - - - - - - - -
1.0102 396 0.053 - - - - - - - - -
1.0128 397 0.0505 - - - - - - - - -
1.0153 398 0.1323 - - - - - - - - -
1.0179 399 0.2285 - - - - - - - - -
1.0204 400 0.0454 - - - - - - - - -
1.0230 401 0.0578 - - - - - - - - -
1.0255 402 0.0644 - - - - - - - - -
1.0281 403 0.0788 - - - - - - - - -
1.0306 404 0.0828 - - - - - - - - -
1.0332 405 0.0177 - - - - - - - - -
1.0357 406 0.0287 - - - - - - - - -
1.0383 407 0.1511 - - - - - - - - -
1.0408 408 0.0426 - - - - - - - - -
1.0434 409 0.0356 - - - - - - - - -
1.0459 410 0.0306 - - - - - - - - -
1.0485 411 0.0387 - - - - - - - - -
1.0510 412 0.1195 - - - - - - - - -
1.0536 413 0.0857 0.5814 0.2668 1.5742 0.1667 0.0213 0.5629 0.9171 0.6630 0.7375
1.0561 414 0.0531 - - - - - - - - -
1.0587 415 0.1254 - - - - - - - - -
1.0612 416 0.061 - - - - - - - - -
1.0638 417 0.0661 - - - - - - - - -
1.0663 418 0.0534 - - - - - - - - -
1.0689 419 0.0567 - - - - - - - - -
1.0714 420 0.0653 - - - - - - - - -
1.0740 421 0.0593 - - - - - - - - -
1.0765 422 0.0 - - - - - - - - -
1.0791 423 0.0774 - - - - - - - - -
1.0816 424 0.0382 - - - - - - - - -
1.0842 425 0.0461 - - - - - - - - -
1.0867 426 0.1043 - - - - - - - - -
1.0893 427 0.0891 - - - - - - - - -
1.0918 428 0.1286 - - - - - - - - -
1.0944 429 0.0437 - - - - - - - - -
1.0969 430 0.0282 - - - - - - - - -
1.0995 431 0.1001 - - - - - - - - -
1.1020 432 0.0303 - - - - - - - - -
1.1046 433 0.0907 - - - - - - - - -
1.1071 434 0.0265 - - - - - - - - -
1.1097 435 0.0788 - - - - - - - - -
1.1122 436 0.1319 - - - - - - - - -
1.1148 437 0.0869 - - - - - - - - -
1.1173 438 0.0728 - - - - - - - - -
1.1199 439 0.1199 - - - - - - - - -
1.1224 440 0.0415 - - - - - - - - -
1.125 441 0.0656 - - - - - - - - -
1.1276 442 0.0487 - - - - - - - - -
1.1301 443 0.0429 - - - - - - - - -
1.1327 444 0.1154 - - - - - - - - -
1.1352 445 0.0361 - - - - - - - - -
1.1378 446 0.0302 - - - - - - - - -
1.1403 447 0.0468 - - - - - - - - -
1.1429 448 0.0416 - - - - - - - - -
1.1454 449 0.0428 - - - - - - - - -
1.1480 450 0.1053 - - - - - - - - -
1.1505 451 0.0583 - - - - - - - - -
1.1531 452 0.0272 - - - - - - - - -
1.1556 453 0.2214 - - - - - - - - -
1.1582 454 0.0441 - - - - - - - - -
1.1607 455 0.0315 - - - - - - - - -
1.1633 456 0.1044 - - - - - - - - -
1.1658 457 0.0312 - - - - - - - - -
1.1684 458 0.0155 - - - - - - - - -
1.1709 459 0.0608 - - - - - - - - -
1.1735 460 0.0798 - - - - - - - - -
1.1760 461 0.0236 - - - - - - - - -
1.1786 462 0.052 - - - - - - - - -
1.1811 463 0.0592 - - - - - - - - -
1.1837 464 0.061 - - - - - - - - -
1.1862 465 0.0428 - - - - - - - - -
1.1888 466 0.0165 - - - - - - - - -
1.1913 467 0.1316 - - - - - - - - -
1.1939 468 0.0739 - - - - - - - - -
1.1964 469 0.0303 - - - - - - - - -
1.1990 470 0.1183 - - - - - - - - -
1.2015 471 0.0237 - - - - - - - - -
1.2041 472 0.0617 0.5868 0.2743 1.6123 0.1428 0.0215 0.5916 0.9174 0.6601 0.7234
1.2066 473 0.0478 - - - - - - - - -
1.2092 474 0.062 - - - - - - - - -
1.2117 475 0.0901 - - - - - - - - -
1.2143 476 0.046 - - - - - - - - -
1.2168 477 0.0839 - - - - - - - - -
1.2194 478 0.05 - - - - - - - - -
1.2219 479 0.049 - - - - - - - - -
1.2245 480 0.0699 - - - - - - - - -
1.2270 481 0.068 - - - - - - - - -
1.2296 482 0.0403 - - - - - - - - -
1.2321 483 0.0358 - - - - - - - - -
1.2347 484 0.1575 - - - - - - - - -
1.2372 485 0.0286 - - - - - - - - -
1.2398 486 0.0572 - - - - - - - - -
1.2423 487 0.1345 - - - - - - - - -
1.2449 488 0.0761 - - - - - - - - -
1.2474 489 0.0493 - - - - - - - - -
1.25 490 0.0581 - - - - - - - - -
1.2526 491 0.0453 - - - - - - - - -
1.2551 492 0.054 - - - - - - - - -
1.2577 493 0.0906 - - - - - - - - -
1.2602 494 0.1043 - - - - - - - - -
1.2628 495 0.085 - - - - - - - - -
1.2653 496 0.0692 - - - - - - - - -
1.2679 497 0.0542 - - - - - - - - -
1.2704 498 0.0809 - - - - - - - - -
1.2730 499 0.0613 - - - - - - - - -
1.2755 500 0.0402 - - - - - - - - -
1.2781 501 0.096 - - - - - - - - -
1.2806 502 0.0822 - - - - - - - - -
1.2832 503 0.189 - - - - - - - - -
1.2857 504 0.2826 - - - - - - - - -
1.2883 505 0.086 - - - - - - - - -
1.2908 506 0.1162 - - - - - - - - -
1.2934 507 0.0797 - - - - - - - - -
1.2959 508 0.156 - - - - - - - - -
1.2985 509 0.0392 - - - - - - - - -
1.3010 510 0.0824 - - - - - - - - -
1.3036 511 0.042 - - - - - - - - -
1.3061 512 0.0998 - - - - - - - - -
1.3087 513 0.053 - - - - - - - - -
1.3112 514 0.0313 - - - - - - - - -
1.3138 515 0.0617 - - - - - - - - -
1.3163 516 0.1371 - - - - - - - - -
1.3189 517 0.0548 - - - - - - - - -
1.3214 518 0.041 - - - - - - - - -
1.3240 519 0.0733 - - - - - - - - -
1.3265 520 0.0967 - - - - - - - - -
1.3291 521 0.0673 - - - - - - - - -
1.3316 522 0.0992 - - - - - - - - -
1.3342 523 0.071 - - - - - - - - -
1.3367 524 0.0654 - - - - - - - - -
1.3393 525 0.0237 - - - - - - - - -
1.3418 526 0.0905 - - - - - - - - -
1.3444 527 0.0529 - - - - - - - - -
1.3469 528 0.0579 - - - - - - - - -
1.3495 529 0.0582 - - - - - - - - -
1.3520 530 0.0371 - - - - - - - - -
1.3546 531 0.0834 0.5686 0.2837 1.6341 0.1301 0.0212 0.6100 0.9179 0.6690 0.7258
1.3571 532 0.0808 - - - - - - - - -
1.3597 533 0.1407 - - - - - - - - -
1.3622 534 0.0404 - - - - - - - - -
1.3648 535 0.1029 - - - - - - - - -
1.3673 536 0.0661 - - - - - - - - -
1.3699 537 0.0492 - - - - - - - - -
1.3724 538 0.0766 - - - - - - - - -
1.375 539 0.1243 - - - - - - - - -
1.3776 540 0.039 - - - - - - - - -
1.3801 541 0.0488 - - - - - - - - -
1.3827 542 0.0314 - - - - - - - - -
1.3852 543 0.0735 - - - - - - - - -
1.3878 544 0.0399 - - - - - - - - -
1.3903 545 0.0705 - - - - - - - - -
1.3929 546 0.0143 - - - - - - - - -
1.3954 547 0.0845 - - - - - - - - -
1.3980 548 0.0969 - - - - - - - - -
1.4005 549 0.0557 - - - - - - - - -
1.4031 550 0.1206 - - - - - - - - -
1.4056 551 0.1152 - - - - - - - - -
1.4082 552 0.0239 - - - - - - - - -
1.4107 553 0.0455 - - - - - - - - -
1.4133 554 0.0748 - - - - - - - - -
1.4158 555 0.0393 - - - - - - - - -
1.4184 556 0.1241 - - - - - - - - -
1.4209 557 0.0473 - - - - - - - - -
1.4235 558 0.0462 - - - - - - - - -
1.4260 559 0.0613 - - - - - - - - -
1.4286 560 0.0655 - - - - - - - - -
1.4311 561 0.0409 - - - - - - - - -
1.4337 562 0.0547 - - - - - - - - -
1.4362 563 0.0409 - - - - - - - - -
1.4388 564 0.0851 - - - - - - - - -
1.4413 565 0.0168 - - - - - - - - -
1.4439 566 0.0765 - - - - - - - - -
1.4464 567 0.0505 - - - - - - - - -
1.4490 568 0.0431 - - - - - - - - -
1.4515 569 0.111 - - - - - - - - -
1.4541 570 0.0585 - - - - - - - - -
1.4566 571 0.0616 - - - - - - - - -
1.4592 572 0.0958 - - - - - - - - -
1.4617 573 0.0858 - - - - - - - - -
1.4643 574 0.0952 - - - - - - - - -
1.4668 575 0.0718 - - - - - - - - -
1.4694 576 0.0468 - - - - - - - - -
1.4719 577 0.0526 - - - - - - - - -
1.4745 578 0.0641 - - - - - - - - -
1.4770 579 0.371 - - - - - - - - -
1.4796 580 0.086 - - - - - - - - -
1.4821 581 0.054 - - - - - - - - -
1.4847 582 0.0845 - - - - - - - - -
1.4872 583 0.062 - - - - - - - - -
1.4898 584 0.0499 - - - - - - - - -
1.4923 585 0.0421 - - - - - - - - -
1.4949 586 0.0587 - - - - - - - - -
1.4974 587 0.3676 - - - - - - - - -
1.5 588 0.1212 - - - - - - - - -
1.5026 589 0.0777 - - - - - - - - -
1.5051 590 0.0467 0.5678 0.3112 1.6175 0.1081 0.0214 0.6624 0.9170 0.6656 0.7221
1.5077 591 0.0603 - - - - - - - - -
1.5102 592 0.0624 - - - - - - - - -
1.5128 593 0.0206 - - - - - - - - -
1.5153 594 0.0087 - - - - - - - - -
1.5179 595 0.0683 - - - - - - - - -
1.5204 596 0.0831 - - - - - - - - -
1.5230 597 0.0252 - - - - - - - - -
1.5255 598 0.0485 - - - - - - - - -
1.5281 599 0.0872 - - - - - - - - -
1.5306 600 0.0675 - - - - - - - - -
1.5332 601 0.0762 - - - - - - - - -
1.5357 602 0.1337 - - - - - - - - -
1.5383 603 0.0386 - - - - - - - - -
1.5408 604 0.094 - - - - - - - - -
1.5434 605 0.0931 - - - - - - - - -
1.5459 606 0.1023 - - - - - - - - -
1.5485 607 0.0308 - - - - - - - - -
1.5510 608 0.0837 - - - - - - - - -
1.5536 609 0.0817 - - - - - - - - -
1.5561 610 0.1532 - - - - - - - - -
1.5587 611 0.0573 - - - - - - - - -
1.5612 612 0.0673 - - - - - - - - -
1.5638 613 0.0285 - - - - - - - - -
1.5663 614 0.0843 - - - - - - - - -
1.5689 615 0.0608 - - - - - - - - -
1.5714 616 0.1389 - - - - - - - - -
1.5740 617 0.091 - - - - - - - - -
1.5765 618 0.1002 - - - - - - - - -
1.5791 619 0.0686 - - - - - - - - -
1.5816 620 0.1189 - - - - - - - - -
1.5842 621 0.0377 - - - - - - - - -
1.5867 622 0.0567 - - - - - - - - -
1.5893 623 0.0529 - - - - - - - - -
1.5918 624 0.0745 - - - - - - - - -
1.5944 625 0.0889 - - - - - - - - -
1.5969 626 0.0493 - - - - - - - - -
1.5995 627 0.0263 - - - - - - - - -
1.6020 628 0.0829 - - - - - - - - -
1.6046 629 0.0576 - - - - - - - - -
1.6071 630 0.0157 - - - - - - - - -
1.6097 631 0.0947 - - - - - - - - -
1.6122 632 0.1222 - - - - - - - - -
1.6148 633 0.0981 - - - - - - - - -
1.6173 634 0.0926 - - - - - - - - -
1.6199 635 0.1074 - - - - - - - - -
1.6224 636 0.1382 - - - - - - - - -
1.625 637 0.0362 - - - - - - - - -
1.6276 638 0.0351 - - - - - - - - -
1.6301 639 0.0922 - - - - - - - - -
1.6327 640 0.12 - - - - - - - - -
1.6352 641 0.0621 - - - - - - - - -
1.6378 642 0.0864 - - - - - - - - -
1.6403 643 0.0395 - - - - - - - - -
1.6429 644 0.0118 - - - - - - - - -
1.6454 645 0.0994 - - - - - - - - -
1.6480 646 0.0529 - - - - - - - - -
1.6505 647 0.0442 - - - - - - - - -
1.6531 648 0.0166 - - - - - - - - -
1.6556 649 0.0293 0.5630 0.3094 1.6934 0.1089 0.0216 0.5754 0.9188 0.6651 0.7117
1.6582 650 0.0135 - - - - - - - - -
1.6607 651 0.1291 - - - - - - - - -
1.6633 652 0.0715 - - - - - - - - -
1.6658 653 0.1007 - - - - - - - - -
1.6684 654 0.0212 - - - - - - - - -
1.6709 655 0.0849 - - - - - - - - -
1.6735 656 0.0434 - - - - - - - - -
1.6760 657 0.0795 - - - - - - - - -
1.6786 658 0.1004 - - - - - - - - -
1.6811 659 0.0219 - - - - - - - - -
1.6837 660 0.0313 - - - - - - - - -
1.6862 661 0.0467 - - - - - - - - -
1.6888 662 0.0335 - - - - - - - - -
1.6913 663 0.0339 - - - - - - - - -
1.6939 664 0.1364 - - - - - - - - -
1.6964 665 0.0672 - - - - - - - - -
1.6990 666 0.0508 - - - - - - - - -
1.7015 667 0.0814 - - - - - - - - -
1.7041 668 0.0555 - - - - - - - - -
1.7066 669 0.0658 - - - - - - - - -
1.7092 670 0.0534 - - - - - - - - -
1.7117 671 0.0519 - - - - - - - - -
1.7143 672 0.0366 - - - - - - - - -
1.7168 673 0.0295 - - - - - - - - -
1.7194 674 0.0352 - - - - - - - - -
1.7219 675 0.046 - - - - - - - - -
1.7245 676 0.1082 - - - - - - - - -
1.7270 677 0.0449 - - - - - - - - -
1.7296 678 0.018 - - - - - - - - -
1.7321 679 0.3671 - - - - - - - - -
1.7347 680 0.0477 - - - - - - - - -
1.7372 681 0.0878 - - - - - - - - -
1.7398 682 0.0974 - - - - - - - - -
1.7423 683 0.1015 - - - - - - - - -
1.7449 684 0.0643 - - - - - - - - -
1.7474 685 0.0842 - - - - - - - - -
1.75 686 0.0426 - - - - - - - - -
1.7526 687 0.0377 - - - - - - - - -
1.7551 688 0.0993 - - - - - - - - -
1.7577 689 0.1357 - - - - - - - - -
1.7602 690 0.0252 - - - - - - - - -
1.7628 691 0.0511 - - - - - - - - -
1.7653 692 0.1204 - - - - - - - - -
1.7679 693 0.0691 - - - - - - - - -
1.7704 694 0.0528 - - - - - - - - -
1.7730 695 0.0239 - - - - - - - - -
1.7755 696 0.1418 - - - - - - - - -
1.7781 697 0.0672 - - - - - - - - -
1.7806 698 0.1375 - - - - - - - - -
1.7832 699 0.0424 - - - - - - - - -
1.7857 700 0.0242 - - - - - - - - -
1.7883 701 0.047 - - - - - - - - -
1.7908 702 0.0494 - - - - - - - - -
1.7934 703 0.0945 - - - - - - - - -
1.7959 704 0.0429 - - - - - - - - -
1.7985 705 0.0462 - - - - - - - - -
1.8010 706 0.0586 - - - - - - - - -
1.8036 707 0.0865 - - - - - - - - -
1.8061 708 0.0367 0.5670 0.3002 1.7212 0.1119 0.0214 0.5560 0.9186 0.6618 0.7093
1.8087 709 0.1125 - - - - - - - - -
1.8112 710 0.0522 - - - - - - - - -
1.8138 711 0.0661 - - - - - - - - -
1.8163 712 0.0641 - - - - - - - - -
1.8189 713 0.0223 - - - - - - - - -
1.8214 714 0.0495 - - - - - - - - -
1.8240 715 0.0912 - - - - - - - - -
1.8265 716 0.0136 - - - - - - - - -
1.8291 717 0.0701 - - - - - - - - -
1.8316 718 0.0514 - - - - - - - - -
1.8342 719 0.0804 - - - - - - - - -
1.8367 720 0.0305 - - - - - - - - -
1.8393 721 0.1108 - - - - - - - - -
1.8418 722 0.0397 - - - - - - - - -
1.8444 723 0.0566 - - - - - - - - -
1.8469 724 0.0355 - - - - - - - - -
1.8495 725 0.3879 - - - - - - - - -
1.8520 726 0.035 - - - - - - - - -
1.8546 727 0.0253 - - - - - - - - -
1.8571 728 0.0951 - - - - - - - - -
1.8597 729 0.1055 - - - - - - - - -
1.8622 730 0.2683 - - - - - - - - -
1.8648 731 0.0686 - - - - - - - - -
1.8673 732 0.0208 - - - - - - - - -
1.8699 733 0.0969 - - - - - - - - -
1.8724 734 0.0663 - - - - - - - - -
1.875 735 0.0485 - - - - - - - - -
1.8776 736 0.0602 - - - - - - - - -
1.8801 737 0.044 - - - - - - - - -
1.8827 738 0.1049 - - - - - - - - -
1.8852 739 0.0179 - - - - - - - - -
1.8878 740 0.0295 - - - - - - - - -
1.8903 741 0.067 - - - - - - - - -
1.8929 742 0.0872 - - - - - - - - -
1.8954 743 0.0271 - - - - - - - - -
1.8980 744 0.07 - - - - - - - - -
1.9005 745 0.0407 - - - - - - - - -
1.9031 746 0.0892 - - - - - - - - -
1.9056 747 0.0921 - - - - - - - - -
1.9082 748 0.0624 - - - - - - - - -
1.9107 749 0.0925 - - - - - - - - -
1.9133 750 0.0264 - - - - - - - - -
1.9158 751 0.0452 - - - - - - - - -
1.9184 752 0.0445 - - - - - - - - -
1.9209 753 0.0401 - - - - - - - - -
1.9235 754 0.0307 - - - - - - - - -
1.9260 755 0.0265 - - - - - - - - -
1.9286 756 0.0639 - - - - - - - - -
1.9311 757 0.0534 - - - - - - - - -
1.9337 758 0.0256 - - - - - - - - -
1.9362 759 0.0491 - - - - - - - - -
1.9388 760 0.085 - - - - - - - - -
1.9413 761 0.1895 - - - - - - - - -
1.9439 762 0.053 - - - - - - - - -
1.9464 763 0.059 - - - - - - - - -
1.9490 764 0.0932 - - - - - - - - -
1.9515 765 0.0305 - - - - - - - - -
1.9541 766 0.1005 - - - - - - - - -
1.9566 767 0.0713 0.5730 0.2974 1.6461 0.1202 0.0215 0.5421 0.9178 0.6612 0.7216
1.9592 768 0.0364 - - - - - - - - -
1.9617 769 0.0575 - - - - - - - - -
1.9643 770 0.0401 - - - - - - - - -
1.9668 771 0.03 - - - - - - - - -
1.9694 772 0.0486 - - - - - - - - -
1.9719 773 0.0603 - - - - - - - - -
1.9745 774 0.0646 - - - - - - - - -
1.9770 775 0.0826 - - - - - - - - -
1.9796 776 0.2543 - - - - - - - - -
1.9821 777 0.0469 - - - - - - - - -
1.9847 778 0.0387 - - - - - - - - -
1.9872 779 0.0482 - - - - - - - - -
1.9898 780 0.0493 - - - - - - - - -
1.9923 781 0.0948 - - - - - - - - -
1.9949 782 0.0691 - - - - - - - - -
1.9974 783 0.0555 - - - - - - - - -
2.0 784 0.0118 - - - - - - - - -
2.0026 785 0.0312 - - - - - - - - -
2.0051 786 0.0493 - - - - - - - - -
2.0077 787 0.0189 - - - - - - - - -
2.0102 788 0.1321 - - - - - - - - -
2.0128 789 0.0317 - - - - - - - - -
2.0153 790 0.0279 - - - - - - - - -
2.0179 791 0.0713 - - - - - - - - -
2.0204 792 0.0191 - - - - - - - - -
2.0230 793 0.0379 - - - - - - - - -
2.0255 794 0.0068 - - - - - - - - -
2.0281 795 0.0265 - - - - - - - - -
2.0306 796 0.0935 - - - - - - - - -
2.0332 797 0.0568 - - - - - - - - -
2.0357 798 0.0526 - - - - - - - - -
2.0383 799 0.0362 - - - - - - - - -
2.0408 800 0.0423 - - - - - - - - -
2.0434 801 0.0513 - - - - - - - - -
2.0459 802 0.1187 - - - - - - - - -
2.0485 803 0.1056 - - - - - - - - -
2.0510 804 0.0395 - - - - - - - - -
2.0536 805 0.0422 - - - - - - - - -
2.0561 806 0.0504 - - - - - - - - -
2.0587 807 0.0321 - - - - - - - - -
2.0612 808 0.0293 - - - - - - - - -
2.0638 809 0.0514 - - - - - - - - -
2.0663 810 0.0589 - - - - - - - - -
2.0689 811 0.0366 - - - - - - - - -
2.0714 812 0.025 - - - - - - - - -
2.0740 813 0.058 - - - - - - - - -
2.0765 814 0.0564 - - - - - - - - -
2.0791 815 0.0302 - - - - - - - - -
2.0816 816 0.0498 - - - - - - - - -
2.0842 817 0.0628 - - - - - - - - -
2.0867 818 0.0584 - - - - - - - - -
2.0893 819 0.005 - - - - - - - - -
2.0918 820 0.04 - - - - - - - - -
2.0944 821 0.0439 - - - - - - - - -
2.0969 822 0.0086 - - - - - - - - -
2.0995 823 0.0714 - - - - - - - - -
2.1020 824 0.0359 - - - - - - - - -
2.1046 825 0.0577 - - - - - - - - -
2.1071 826 0.0627 0.5217 0.2695 1.5849 0.1300 0.0215 0.5284 0.9188 0.6589 0.6975
2.1097 827 0.0452 - - - - - - - - -
2.1122 828 0.0172 - - - - - - - - -
2.1148 829 0.0329 - - - - - - - - -
2.1173 830 0.1525 - - - - - - - - -
2.1199 831 0.011 - - - - - - - - -
2.1224 832 0.019 - - - - - - - - -
2.125 833 0.0917 - - - - - - - - -
2.1276 834 0.0203 - - - - - - - - -
2.1301 835 0.0225 - - - - - - - - -
2.1327 836 0.051 - - - - - - - - -
2.1352 837 0.0382 - - - - - - - - -
2.1378 838 0.0291 - - - - - - - - -
2.1403 839 0.0509 - - - - - - - - -
2.1429 840 0.0391 - - - - - - - - -
2.1454 841 0.0438 - - - - - - - - -
2.1480 842 0.052 - - - - - - - - -
2.1505 843 0.0306 - - - - - - - - -
2.1531 844 0.059 - - - - - - - - -
2.1556 845 0.0252 - - - - - - - - -
2.1582 846 0.0453 - - - - - - - - -
2.1607 847 0.027 - - - - - - - - -
2.1633 848 0.022 - - - - - - - - -
2.1658 849 0.088 - - - - - - - - -
2.1684 850 0.0527 - - - - - - - - -
2.1709 851 0.0319 - - - - - - - - -
2.1735 852 0.0128 - - - - - - - - -
2.1760 853 0.0 - - - - - - - - -
2.1786 854 0.0559 - - - - - - - - -
2.1811 855 0.0267 - - - - - - - - -
2.1837 856 0.0751 - - - - - - - - -
2.1862 857 0.0381 - - - - - - - - -
2.1888 858 0.0448 - - - - - - - - -
2.1913 859 0.0315 - - - - - - - - -
2.1939 860 0.0563 - - - - - - - - -
2.1964 861 0.0601 - - - - - - - - -
2.1990 862 0.0278 - - - - - - - - -
2.2015 863 0.0366 - - - - - - - - -
2.2041 864 0.0525 - - - - - - - - -
2.2066 865 0.029 - - - - - - - - -
2.2092 866 0.0507 - - - - - - - - -
2.2117 867 0.0365 - - - - - - - - -
2.2143 868 0.0398 - - - - - - - - -
2.2168 869 0.0546 - - - - - - - - -
2.2194 870 0.0291 - - - - - - - - -
2.2219 871 0.0409 - - - - - - - - -
2.2245 872 0.022 - - - - - - - - -
2.2270 873 0.0345 - - - - - - - - -
2.2296 874 0.05 - - - - - - - - -
2.2321 875 0.0604 - - - - - - - - -
2.2347 876 0.0612 - - - - - - - - -
2.2372 877 0.4191 - - - - - - - - -
2.2398 878 0.0153 - - - - - - - - -
2.2423 879 0.0097 - - - - - - - - -
2.2449 880 0.0156 - - - - - - - - -
2.2474 881 0.0299 - - - - - - - - -
2.25 882 0.0225 - - - - - - - - -
2.2526 883 0.016 - - - - - - - - -
2.2551 884 0.0709 - - - - - - - - -
2.2577 885 0.0279 0.5488 0.2703 1.5991 0.1423 0.0214 0.5168 0.9193 0.6612 0.7129
2.2602 886 0.0365 - - - - - - - - -
2.2628 887 0.0928 - - - - - - - - -
2.2653 888 0.0285 - - - - - - - - -
2.2679 889 0.0652 - - - - - - - - -
2.2704 890 0.0399 - - - - - - - - -
2.2730 891 0.0311 - - - - - - - - -
2.2755 892 0.0423 - - - - - - - - -
2.2781 893 0.2659 - - - - - - - - -
2.2806 894 0.034 - - - - - - - - -
2.2832 895 0.0692 - - - - - - - - -
2.2857 896 0.0698 - - - - - - - - -
2.2883 897 0.0728 - - - - - - - - -
2.2908 898 0.0355 - - - - - - - - -
2.2934 899 0.0813 - - - - - - - - -
2.2959 900 0.0327 - - - - - - - - -
2.2985 901 0.0731 - - - - - - - - -
2.3010 902 0.0094 - - - - - - - - -
2.3036 903 0.0662 - - - - - - - - -
2.3061 904 0.0756 - - - - - - - - -
2.3087 905 0.0268 - - - - - - - - -
2.3112 906 0.0159 - - - - - - - - -
2.3138 907 0.0113 - - - - - - - - -
2.3163 908 0.248 - - - - - - - - -
2.3189 909 0.0347 - - - - - - - - -
2.3214 910 0.0823 - - - - - - - - -
2.3240 911 0.0276 - - - - - - - - -
2.3265 912 0.0766 - - - - - - - - -
2.3291 913 0.0137 - - - - - - - - -
2.3316 914 0.0197 - - - - - - - - -
2.3342 915 0.0546 - - - - - - - - -
2.3367 916 0.091 - - - - - - - - -
2.3393 917 0.0683 - - - - - - - - -
2.3418 918 0.0397 - - - - - - - - -
2.3444 919 0.0679 - - - - - - - - -
2.3469 920 0.0356 - - - - - - - - -
2.3495 921 0.0847 - - - - - - - - -
2.3520 922 0.0186 - - - - - - - - -
2.3546 923 0.0667 - - - - - - - - -
2.3571 924 0.0194 - - - - - - - - -
2.3597 925 0.028 - - - - - - - - -
2.3622 926 0.0253 - - - - - - - - -
2.3648 927 0.0073 - - - - - - - - -
2.3673 928 0.093 - - - - - - - - -
2.3699 929 0.0129 - - - - - - - - -
2.3724 930 0.0942 - - - - - - - - -
2.375 931 0.046 - - - - - - - - -
2.3776 932 0.0502 - - - - - - - - -
2.3801 933 0.0444 - - - - - - - - -
2.3827 934 0.0449 - - - - - - - - -
2.3852 935 0.0267 - - - - - - - - -
2.3878 936 0.0488 - - - - - - - - -
2.3903 937 0.0493 - - - - - - - - -
2.3929 938 0.0215 - - - - - - - - -
2.3954 939 0.0675 - - - - - - - - -
2.3980 940 0.0494 - - - - - - - - -
2.4005 941 0.0118 - - - - - - - - -
2.4031 942 0.0327 - - - - - - - - -
2.4056 943 0.045 - - - - - - - - -
2.4082 944 0.0565 0.5472 0.2980 1.6024 0.1338 0.0214 0.5265 0.9184 0.6581 0.7045
2.4107 945 0.0528 - - - - - - - - -
2.4133 946 0.0701 - - - - - - - - -
2.4158 947 0.0194 - - - - - - - - -
2.4184 948 0.0416 - - - - - - - - -
2.4209 949 0.0412 - - - - - - - - -
2.4235 950 0.054 - - - - - - - - -
2.4260 951 0.1223 - - - - - - - - -
2.4286 952 0.0314 - - - - - - - - -
2.4311 953 0.0734 - - - - - - - - -
2.4337 954 0.0689 - - - - - - - - -
2.4362 955 0.018 - - - - - - - - -
2.4388 956 0.2788 - - - - - - - - -
2.4413 957 0.1046 - - - - - - - - -
2.4439 958 0.016 - - - - - - - - -
2.4464 959 0.0306 - - - - - - - - -
2.4490 960 0.0684 - - - - - - - - -
2.4515 961 0.025 - - - - - - - - -
2.4541 962 0.0107 - - - - - - - - -
2.4566 963 0.0139 - - - - - - - - -
2.4592 964 0.0597 - - - - - - - - -
2.4617 965 0.0629 - - - - - - - - -
2.4643 966 0.0441 - - - - - - - - -
2.4668 967 0.0252 - - - - - - - - -
2.4694 968 0.0704 - - - - - - - - -
2.4719 969 0.0514 - - - - - - - - -
2.4745 970 0.0951 - - - - - - - - -
2.4770 971 0.0579 - - - - - - - - -
2.4796 972 0.048 - - - - - - - - -
2.4821 973 0.0841 - - - - - - - - -
2.4847 974 0.0271 - - - - - - - - -
2.4872 975 0.0176 - - - - - - - - -
2.4898 976 0.0422 - - - - - - - - -
2.4923 977 0.0535 - - - - - - - - -
2.4949 978 0.019 - - - - - - - - -
2.4974 979 0.0683 - - - - - - - - -
2.5 980 0.0244 - - - - - - - - -
2.5026 981 0.0607 - - - - - - - - -
2.5051 982 0.0455 - - - - - - - - -
2.5077 983 0.0383 - - - - - - - - -
2.5102 984 0.0095 - - - - - - - - -
2.5128 985 0.0067 - - - - - - - - -
2.5153 986 0.0837 - - - - - - - - -
2.5179 987 0.0376 - - - - - - - - -
2.5204 988 0.0194 - - - - - - - - -
2.5230 989 0.0411 - - - - - - - - -
2.5255 990 0.0919 - - - - - - - - -
2.5281 991 0.0899 - - - - - - - - -
2.5306 992 0.013 - - - - - - - - -
2.5332 993 0.0149 - - - - - - - - -
2.5357 994 0.0179 - - - - - - - - -
2.5383 995 0.0082 - - - - - - - - -
2.5408 996 0.0289 - - - - - - - - -
2.5434 997 0.0295 - - - - - - - - -
2.5459 998 0.0288 - - - - - - - - -
2.5485 999 0.0399 - - - - - - - - -
2.5510 1000 0.0546 - - - - - - - - -
2.5536 1001 0.0789 - - - - - - - - -
2.5561 1002 0.0178 - - - - - - - - -
2.5587 1003 0.0564 0.5442 0.3005 1.5761 0.1217 0.0214 0.4938 0.9185 0.6620 0.7122
2.5612 1004 0.0572 - - - - - - - - -
2.5638 1005 0.0457 - - - - - - - - -
2.5663 1006 0.0613 - - - - - - - - -
2.5689 1007 0.029 - - - - - - - - -
2.5714 1008 0.0578 - - - - - - - - -
2.5740 1009 0.102 - - - - - - - - -
2.5765 1010 0.0496 - - - - - - - - -
2.5791 1011 0.0757 - - - - - - - - -
2.5816 1012 0.009 - - - - - - - - -
2.5842 1013 0.0422 - - - - - - - - -
2.5867 1014 0.0791 - - - - - - - - -
2.5893 1015 0.0576 - - - - - - - - -
2.5918 1016 0.024 - - - - - - - - -
2.5944 1017 0.0318 - - - - - - - - -
2.5969 1018 0.0717 - - - - - - - - -
2.5995 1019 0.0206 - - - - - - - - -
2.6020 1020 0.0404 - - - - - - - - -
2.6046 1021 0.0212 - - - - - - - - -
2.6071 1022 0.0359 - - - - - - - - -
2.6097 1023 0.0374 - - - - - - - - -
2.6122 1024 0.0574 - - - - - - - - -
2.6148 1025 0.0897 - - - - - - - - -
2.6173 1026 0.0845 - - - - - - - - -
2.6199 1027 0.0214 - - - - - - - - -
2.6224 1028 0.0373 - - - - - - - - -
2.625 1029 0.0524 - - - - - - - - -
2.6276 1030 0.0039 - - - - - - - - -
2.6301 1031 0.0356 - - - - - - - - -
2.6327 1032 0.0296 - - - - - - - - -
2.6352 1033 0.0302 - - - - - - - - -
2.6378 1034 0.063 - - - - - - - - -
2.6403 1035 0.0958 - - - - - - - - -
2.6429 1036 0.1315 - - - - - - - - -
2.6454 1037 0.0489 - - - - - - - - -
2.6480 1038 0.0611 - - - - - - - - -
2.6505 1039 0.0323 - - - - - - - - -
2.6531 1040 0.0299 - - - - - - - - -
2.6556 1041 0.0456 - - - - - - - - -
2.6582 1042 0.0459 - - - - - - - - -
2.6607 1043 0.023 - - - - - - - - -
2.6633 1044 0.0214 - - - - - - - - -
2.6658 1045 0.031 - - - - - - - - -
2.6684 1046 0.0231 - - - - - - - - -
2.6709 1047 0.0342 - - - - - - - - -
2.6735 1048 0.0216 - - - - - - - - -
2.6760 1049 0.0106 - - - - - - - - -
2.6786 1050 0.064 - - - - - - - - -
2.6811 1051 0.0303 - - - - - - - - -
2.6837 1052 0.0118 - - - - - - - - -
2.6862 1053 0.0762 - - - - - - - - -
2.6888 1054 0.0126 - - - - - - - - -
2.6913 1055 0.0348 - - - - - - - - -
2.6939 1056 0.0543 - - - - - - - - -
2.6964 1057 0.0408 - - - - - - - - -
2.6990 1058 0.0279 - - - - - - - - -
2.7015 1059 0.0379 - - - - - - - - -
2.7041 1060 0.0831 - - - - - - - - -
2.7066 1061 0.0712 - - - - - - - - -
2.7092 1062 0.0258 0.5653 0.3086 1.5462 0.1225 0.0214 0.4793 0.9196 0.6645 0.7119
2.7117 1063 0.0321 - - - - - - - - -
2.7143 1064 0.1742 - - - - - - - - -
2.7168 1065 0.0447 - - - - - - - - -
2.7194 1066 0.0714 - - - - - - - - -
2.7219 1067 0.0286 - - - - - - - - -
2.7245 1068 0.0214 - - - - - - - - -
2.7270 1069 0.0136 - - - - - - - - -
2.7296 1070 0.0784 - - - - - - - - -
2.7321 1071 0.0489 - - - - - - - - -
2.7347 1072 0.028 - - - - - - - - -
2.7372 1073 0.0921 - - - - - - - - -
2.7398 1074 0.0097 - - - - - - - - -
2.7423 1075 0.0216 - - - - - - - - -
2.7449 1076 0.0492 - - - - - - - - -
2.7474 1077 0.0472 - - - - - - - - -
2.75 1078 0.0419 - - - - - - - - -
2.7526 1079 0.0327 - - - - - - - - -
2.7551 1080 0.0487 - - - - - - - - -
2.7577 1081 0.0392 - - - - - - - - -
2.7602 1082 0.0413 - - - - - - - - -
2.7628 1083 0.034 - - - - - - - - -
2.7653 1084 0.0368 - - - - - - - - -
2.7679 1085 0.0724 - - - - - - - - -
2.7704 1086 0.1611 - - - - - - - - -
2.7730 1087 0.0366 - - - - - - - - -
2.7755 1088 0.0394 - - - - - - - - -
2.7781 1089 0.0321 - - - - - - - - -
2.7806 1090 0.0392 - - - - - - - - -
2.7832 1091 0.0284 - - - - - - - - -
2.7857 1092 0.0568 - - - - - - - - -
2.7883 1093 0.0197 - - - - - - - - -
2.7908 1094 0.0567 - - - - - - - - -
2.7934 1095 0.0294 - - - - - - - - -
2.7959 1096 0.0147 - - - - - - - - -
2.7985 1097 0.0135 - - - - - - - - -
2.8010 1098 0.0197 - - - - - - - - -
2.8036 1099 0.0685 - - - - - - - - -
2.8061 1100 0.1037 - - - - - - - - -
2.8087 1101 0.0142 - - - - - - - - -
2.8112 1102 0.0921 - - - - - - - - -
2.8138 1103 0.0312 - - - - - - - - -
2.8163 1104 0.0573 - - - - - - - - -
2.8189 1105 0.0149 - - - - - - - - -
2.8214 1106 0.0215 - - - - - - - - -
2.8240 1107 0.0393 - - - - - - - - -
2.8265 1108 0.0358 - - - - - - - - -
2.8291 1109 0.1027 - - - - - - - - -
2.8316 1110 0.024 - - - - - - - - -
2.8342 1111 0.0255 - - - - - - - - -
2.8367 1112 0.0442 - - - - - - - - -
2.8393 1113 0.0238 - - - - - - - - -
2.8418 1114 0.0607 - - - - - - - - -
2.8444 1115 0.0553 - - - - - - - - -
2.8469 1116 0.0618 - - - - - - - - -
2.8495 1117 0.0078 - - - - - - - - -
2.8520 1118 0.0207 - - - - - - - - -
2.8546 1119 0.0135 - - - - - - - - -
2.8571 1120 0.0267 - - - - - - - - -
2.8597 1121 0.0648 0.5748 0.2996 1.5611 0.1337 0.0214 0.4844 0.9197 0.6622 0.7131
2.8622 1122 0.0246 - - - - - - - - -
2.8648 1123 0.0319 - - - - - - - - -
2.8673 1124 0.0593 - - - - - - - - -
2.8699 1125 0.034 - - - - - - - - -
2.8724 1126 0.0198 - - - - - - - - -
2.875 1127 0.1633 - - - - - - - - -
2.8776 1128 0.0295 - - - - - - - - -
2.8801 1129 0.0392 - - - - - - - - -
2.8827 1130 0.0122 - - - - - - - - -
2.8852 1131 0.048 - - - - - - - - -
2.8878 1132 0.0754 - - - - - - - - -
2.8903 1133 0.0104 - - - - - - - - -
2.8929 1134 0.0894 - - - - - - - - -
2.8954 1135 0.0724 - - - - - - - - -
2.8980 1136 0.052 - - - - - - - - -
2.9005 1137 0.0661 - - - - - - - - -
2.9031 1138 0.0436 - - - - - - - - -
2.9056 1139 0.0499 - - - - - - - - -
2.9082 1140 0.0841 - - - - - - - - -
2.9107 1141 0.015 - - - - - - - - -
2.9133 1142 0.016 - - - - - - - - -
2.9158 1143 0.0436 - - - - - - - - -
2.9184 1144 0.0148 - - - - - - - - -
2.9209 1145 0.0391 - - - - - - - - -
2.9235 1146 0.018 - - - - - - - - -
2.9260 1147 0.0864 - - - - - - - - -
2.9286 1148 0.0626 - - - - - - - - -
2.9311 1149 0.062 - - - - - - - - -
2.9337 1150 0.0546 - - - - - - - - -
2.9362 1151 0.0266 - - - - - - - - -
2.9388 1152 0.0698 - - - - - - - - -
2.9413 1153 0.2801 - - - - - - - - -
2.9439 1154 0.0353 - - - - - - - - -
2.9464 1155 0.0549 - - - - - - - - -
2.9490 1156 0.0262 - - - - - - - - -
2.9515 1157 0.0424 - - - - - - - - -
2.9541 1158 0.0253 - - - - - - - - -
2.9566 1159 0.0613 - - - - - - - - -
2.9592 1160 0.0124 - - - - - - - - -
2.9617 1161 0.0148 - - - - - - - - -
2.9643 1162 0.0522 - - - - - - - - -
2.9668 1163 0.0323 - - - - - - - - -
2.9694 1164 0.039 - - - - - - - - -
2.9719 1165 0.0582 - - - - - - - - -
2.9745 1166 0.0497 - - - - - - - - -
2.9770 1167 0.0476 - - - - - - - - -
2.9796 1168 0.0586 - - - - - - - - -
2.9821 1169 0.0578 - - - - - - - - -
2.9847 1170 0.07 - - - - - - - - -
2.9872 1171 0.0403 - - - - - - - - -
2.9898 1172 0.0802 - - - - - - - - -
2.9923 1173 0.0348 - - - - - - - - -
2.9949 1174 0.0674 - - - - - - - - -
2.9974 1175 0.0505 - - - - - - - - -
3.0 1176 0.0 0.5673 0.3056 1.5746 0.1307 0.0215 0.4867 0.9187 0.6600 0.7170
-1 -1 - - - - - - - 0.9187 0.6600 0.7170

Framework Versions

  • Python: 3.11.11
  • Sentence Transformers: 3.4.1
  • Transformers: 4.51.1
  • PyTorch: 2.5.1+cu124
  • Accelerate: 1.3.0
  • Datasets: 3.5.0
  • Tokenizers: 0.21.0

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",
}
Downloads last month
2
Safetensors
Model size
568M params
Tensor type
F32
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for bobox/XLMRoBERTaM3-CustomPoolin-v1.01-1024d-s1

Base model

BAAI/bge-m3
Finetuned
(290)
this model

Datasets used to train bobox/XLMRoBERTaM3-CustomPoolin-v1.01-1024d-s1

Evaluation results