Views
No views yet
SentenceTransformer(
(0): Transformer({'transformer_task': 'feature-extraction', 'modality_config': {'text': {'method': 'forward', 'method_output_name': 'last_hidden_state'}}, 'module_output_name': 'token_embeddings', 'architecture': 'BertModel'})
(1): Pooling({'embedding_dimension': 1024, 'pooling_mode': 'mean', 'include_prompt': True})
(2): Normalize({})
)pip install -U sentence-transformers1from sentence_transformers import SentenceTransformer
2
3# Download from the 🤗 Hub
4model = SentenceTransformer("MinhPhuc0804/clef-docling-e5-large-v2")
5# Run inference
6sentences = [
7 'query: Link between vitamin D intake and COVID-19 contagion and death rate | Scientific Reports #cndpoli',
8 'passage: title: Association between vitamin D supplementation and COVID-19 infection and mortality\nabstract: Abstract Vitamin D deficiency has long been associated with reduced immune function that can lead to viral infection. Several studies have shown that Vitamin D deficiency is associated with increases the risk of infection with COVID-19. However, it is unknown if treatment with Vitamin D can reduce the associated risk of COVID-19 infection, which is the focus of this study. In the population of US veterans, we show that Vitamin D 2 and D 3 fills were associated with reductions in COVID-19 infection of 28% and 20%, respectively [(D 3 Hazard Ratio (HR) = 0.80, [95% CI 0.77, 0.83]), D 2 HR = 0.72, [95% CI 0.65, 0.79]]. Mortality within 30-days of COVID-19 infection was similarly 33% lower with Vitamin D 3 and 25% lower with D 2 (D 3 HR = 0.67, [95% CI 0.59, 0.75]; D 2 HR = 0.75, [95% CI 0.55, 1.04]).',
9 'passage: title: Harm to Nonhuman Animals from AI: a Systematic Account and Framework\nabstract: Abstract This paper provides a systematic account of how artificial intelligence (AI) technologies could harm nonhuman animals and explains why animal harms, often neglected in AI ethics, should be better recognised. After giving reasons for caring about animals and outlining the nature of animal harm, interests, and wellbeing, the paper develops a comprehensive ‘harms framework’ which draws on scientist David Fraser’s influential mapping of human activities that impact on sentient animals. The harms framework is fleshed out with examples inspired by both scholarly literature and media reports. This systematic account and framework should help inform ethical analyses of AI’s impact on animals and serve as a comprehensive and clear basis for the development and regulation of AI technologies to prevent and mitigate harm to nonhumans.',
10]
11embeddings = model.encode(sentences)
12print(embeddings.shape)
13# [3, 1024]
14
15# Get the similarity scores for the embeddings
16similarities = model.similarity(embeddings, embeddings)
17print(similarities)
18# tensor([[ 1.0000, 0.6243, -0.0993],
19# [ 0.6243, 1.0000, 0.0158],
20# [-0.0993, 0.0158, 1.0000]])10-percent-dev-splitInformationRetrievalEvaluator| Metric | Value |
|---|---|
| cosine_accuracy@1 | 0.5413 |
| cosine_accuracy@3 | 0.7439 |
| cosine_accuracy@5 | 0.813 |
| cosine_accuracy@10 | 0.8722 |
| cosine_precision@1 | 0.5413 |
| cosine_precision@3 | 0.248 |
| cosine_precision@5 | 0.1626 |
| cosine_precision@10 | 0.0872 |
| cosine_recall@1 | 0.5413 |
| cosine_recall@3 | 0.7439 |
| cosine_recall@5 | 0.813 |
| cosine_recall@10 | 0.8722 |
| cosine_ndcg@10 | 0.7072 |
| cosine_mrr@10 | 0.6541 |
| cosine_map@100 | 0.658 |
sentence_0 and sentence_1| sentence_0 | sentence_1 | |
|---|---|---|
| type | string | string |
| details |
|
|
| sentence_0 | sentence_1 |
|---|---|
query: Everyday chatter creates a coronavirus cloud that persists for 'tens of minutes or longer'. Teachers talk. Teachers move. Kids talk. Kids move. A blanket reopening of schools now makes no sense. | passage: title: The airborne lifetime of small speech droplets and their potential importance in SARS-CoV-2 transmission[object Object]abstract: Speech droplets generated by asymptomatic carriers of severe acute respiratory syndrome coronavirus 2 (SARS-CoV-2) are increasingly considered to be a likely mode of disease transmission. Highly sensitive laser light scattering observations have revealed that loud speech can emit thousands of oral fluid droplets per second. In a closed, stagnant air environment, they disappear from the window of view with time constants in the range of 8 to 14 min, which corresponds to droplet nuclei of ca. 4 μm diameter, or 12- to 21-μm droplets prior to dehydration. These observations confirm that there is a substantial probability that normal speaking causes airborne virus transmission in confined environments. |
query: Les avalanches de cytokines provoquées par les macrophages durant le COVID-19 grave débutent par une infection du SRAS‑CoV‑2 de cellules dendritiques particulières qui génèrent ensuite d’importantes quantités d’interféron pro‑inflammatoire de type I. 🤔 | passage: changes in macrophages at both transcriptional and epigenetic levels, which favored their hyperactivation by environmental stimuli.[object Object][object Object]title: Sensing of SARS-CoV-2 by pDCs and their subsequent production of IFN-I contribute to macrophage-induced cytokine storm during COVID-19[object Object]Together, these data indicate that the priming of macrophages can result from the response by pDCs to SARS-CoV-2, leading to macrophage activation in patients with severe COVID-19. |
query: Nye tal fra UK vedr. myocarditis. The risk of myocarditis was greater after vaccination than illness in young men. | passage: ##2 ( irr 2. 02, 95 % ci 1. 40, 2. 91 ).[object Object][object Object]title: Risk of myocarditis following sequential COVID-19 vaccinations by age and sex[object Object]Associations were strongest in males younger than 40 years for all vaccine types with an additional 3 (95%CI 1, 5) and 12 (95% CI 1,17) events per million estimated in the 1-28 days following a first dose of BNT162b2 and mRNA-1273, respectively; 14 (95%CI 8, 17), 12 (95%CI 1, 7) and 101 (95%CI 95, 104) additional events following a second dose of ChAdOx1, BNT162b2 and mRNA-1273, respectively; and 13 (95%CI 7, 15) additional events following a third dose of BNT162b2, compared with 7 (95%CI 2, 11) additional events following COVID-19 infection. An association between COVID-19 infection and myocarditis was observed in all ages for both sexes but was substantially higher in those older than 40 years. These findings have important implications for public health and vaccination policy. Funding Health Data Research UK. |
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 20.0,
3 "similarity_fct": "cos_sim",
4 "gather_across_devices": false,
5 "directions": [
6 "query_to_doc"
7 ],
8 "partition_mode": "joint",
9 "hardness_mode": null,
10 "hardness_strength": 0.0
11}per_device_train_batch_size: 32per_device_eval_batch_size: 32num_train_epochs: 10fp16: Truemulti_dataset_batch_sampler: round_robinoverwrite_output_dir: Falsedo_predict: Falseprediction_loss_only: Trueper_device_train_batch_size: 32per_device_eval_batch_size: 32per_gpu_train_batch_size: Noneper_gpu_eval_batch_size: Nonegradient_accumulation_steps: 1eval_accumulation_steps: Nonetorch_empty_cache_steps: Nonelearning_rate: 5e-05weight_decay: 0.0adam_beta1: 0.9adam_beta2: 0.999adam_epsilon: 1e-08max_grad_norm: 1num_train_epochs: 10max_steps: -1lr_scheduler_type: linearlr_scheduler_kwargs: {}warmup_ratio: 0.0warmup_steps: 0log_level: passivelog_level_replica: warninglog_on_each_node: Truelogging_nan_inf_filter: Truesave_safetensors: Truesave_on_each_node: Falsesave_only_model: Falserestore_callback_states_from_checkpoint: Falseno_cuda: Falseuse_cpu: Falseuse_mps_device: Falseseed: 42data_seed: Nonejit_mode_eval: Falseuse_ipex: Falsebf16: Falsefp16: Truefp16_opt_level: O1half_precision_backend: autobf16_full_eval: Falsefp16_full_eval: Falsetf32: Nonelocal_rank: 0ddp_backend: Nonetpu_num_cores: Nonetpu_metrics_debug: Falsedebug: []dataloader_drop_last: Falsedataloader_num_workers: 0dataloader_prefetch_factor: Nonepast_index: -1disable_tqdm: Falseremove_unused_columns: Truelabel_names: Noneload_best_model_at_end: Falseignore_data_skip: Falsefsdp: []fsdp_min_num_params: 0fsdp_config: {'min_num_params': 0, 'xla': False, 'xla_fsdp_v2': False, 'xla_fsdp_grad_ckpt': False}fsdp_transformer_layer_cls_to_wrap: Noneaccelerator_config: {'split_batches': False, 'dispatch_batches': None, 'even_batches': True, 'use_seedable_sampler': True, 'non_blocking': False, 'gradient_accumulation_kwargs': None}parallelism_config: Nonedeepspeed: Nonelabel_smoothing_factor: 0.0optim: adamw_torch_fusedoptim_args: Noneadafactor: Falsegroup_by_length: Falselength_column_name: lengthddp_find_unused_parameters: Noneddp_bucket_cap_mb: Noneddp_broadcast_buffers: Falsedataloader_pin_memory: Truedataloader_persistent_workers: Falseskip_memory_metrics: Trueuse_legacy_prediction_loop: Falsepush_to_hub: Falseresume_from_checkpoint: Nonehub_model_id: Nonehub_strategy: every_savehub_private_repo: Nonehub_always_push: Falsehub_revision: Nonegradient_checkpointing: Falsegradient_checkpointing_kwargs: Noneinclude_inputs_for_metrics: Falseinclude_for_metrics: []eval_do_concat_batches: Truefp16_backend: autopush_to_hub_model_id: Nonepush_to_hub_organization: Nonemp_parameters:auto_find_batch_size: Falsefull_determinism: Falsetorchdynamo: Noneray_scope: lastddp_timeout: 1800torch_compile: Falsetorch_compile_backend: Nonetorch_compile_mode: Noneinclude_tokens_per_second: Falseinclude_num_input_tokens_seen: Falseneftune_noise_alpha: Noneoptim_target_modules: Nonebatch_eval_metrics: Falseeval_on_start: Falseuse_liger_kernel: Falseliger_kernel_config: Noneeval_use_gather_object: Falseaverage_tokens_across_devices: Falseprompts: Nonebatch_sampler: batch_samplermulti_dataset_batch_sampler: round_robinrouter_mapping: {}learning_rate_mapping: {}| Epoch | Step | Training Loss | 10-percent-dev-split_cosine_ndcg@10 |
|---|---|---|---|
| 0.9225 | 500 | 0.7284 | - |
| 1.0 | 542 | - | 0.6813 |
| 1.8450 | 1000 | 0.2798 | - |
| 2.0 | 1084 | - | 0.7030 |
| 2.7675 | 1500 | 0.1728 | - |
| 3.0 | 1626 | - | 0.6994 |
| 3.6900 | 2000 | 0.1095 | - |
| 4.0 | 2168 | - | 0.7063 |
| 4.6125 | 2500 | 0.0804 | - |
| 5.0 | 2710 | - | 0.7036 |
| 5.5351 | 3000 | 0.063 | - |
| 6.0 | 3252 | - | 0.7052 |
| 6.4576 | 3500 | 0.0499 | - |
| 7.0 | 3794 | - | 0.7064 |
| 7.3801 | 4000 | 0.0439 | - |
| 8.0 | 4336 | - | 0.7052 |
| 8.3026 | 4500 | 0.0392 | - |
| 9.0 | 4878 | - | 0.7069 |
| 9.2251 | 5000 | 0.0398 | - |
| 10.0 | 5420 | - | 0.7072 |
1@inproceedings{reimers-2019-sentence-bert,
2 title = "Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks",
3 author = "Reimers, Nils and Gurevych, Iryna",
4 booktitle = "Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing",
5 month = "11",
6 year = "2019",
7 publisher = "Association for Computational Linguistics",
8 url = "https://arxiv.org/abs/1908.10084",
9}1@misc{oord2019representationlearningcontrastivepredictive,
2 title={Representation Learning with Contrastive Predictive Coding},
3 author={Aaron van den Oord and Yazhe Li and Oriol Vinyals},
4 year={2019},
5 eprint={1807.03748},
6 archivePrefix={arXiv},
7 primaryClass={cs.LG},
8 url={https://arxiv.org/abs/1807.03748},
9}