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': 'EuroBertModel'})
(1): Pooling({'embedding_dimension': 768, 'pooling_mode': 'lasttoken', 'include_prompt': True})
(2): Normalize({})
)pip install -U sentence-transformers1from sentence_transformers import SentenceTransformer
2
3# Download from the 🤗 Hub
4model = SentenceTransformer("MinhPhuc0804/jina-docling-checkthat-task1-v1")
5# Run inference
6queries = [
7 "query: @MikeHudema Check out this review article for further discussion on why fossil fuels will keep supplying the bulk of global energy and why electric vehicles aren't exactly eco‑friendly",
8]
9documents = [
10 'passage: title: Is it the end of combustion and engine combustion research? Should it be?\nabstract: The dominant narrative in the affluent west is that climate change poses an "existential threat" and very rapid cuts in greenhouse gas (GHG) emissions and hence fossil fuel use are needed to avoid it. Simultaneously oil, gas, coal, aviation, steel and cement industries and livestock farming have to be largely shut down to eliminate GHG. This review argues that globally all this will not happen by 2050, let alone 2030 because the scale of the problem is too large. Transport is particularly difficult to decarbonize and current policies focusing entirely on battery electric vehicles will not and must not succeed. GHG levels are unlikely to come down significantly in the next several decades and even if they did, extreme weather events will not disappear. It is better to recognize such realities and make societies more resilient to the effects of climate change. Humanity will have to adapt to any further warming as it has successfully done with the previous warming of about 1.1 C over the past century. Combustion research, particularly of fossil fuels and in internal combustion engines is currently seen as unnecessary in many countries.',
11 'passage: title: SARS-CoV-2 infection confers greater immunity than shots\nabstract: Study from Israel, the largest of its kind, also finds infection combined with a single jab is highly protective',
12 'passage: title: Neurologic Involvement in Children and Adolescents Hospitalized in the United States for COVID-19 or Multisystem Inflammatory Syndrome\nabstract: Coronavirus disease 2019 (COVID-19) affects the nervous system in adult patients. The spectrum of neurologic involvement in children and adolescents is unclear.To understand the range and severity of neurologic involvement among children and adolescents associated with COVID-19.Case series of patients (age <21 years) hospitalized between March 15, 2020, and December 15, 2020, with positive severe acute respiratory syndrome coronavirus 2 test result (reverse transcriptase-polymerase chain reaction and/or antibody) at 61 US hospitals in the Overcoming COVID-19 public health registry, including 616 (36%) meeting criteria for multisystem inflammatory syndrome in children. Patients with neurologic involvement had acute neurologic signs, symptoms, or diseases on presentation or during hospitalization.',
13]
14query_embeddings = model.encode_query(queries)
15document_embeddings = model.encode_document(documents)
16print(query_embeddings.shape, document_embeddings.shape)
17# [1, 768] [3, 768]
18
19# Get the similarity scores for the embeddings
20similarities = model.similarity(query_embeddings, document_embeddings)
21print(similarities)
22# tensor([[ 0.5678, -0.0192, -0.0984]])10-percent-dev-splitInformationRetrievalEvaluator| Metric | Value |
|---|---|
| cosine_accuracy@1 | 0.5299 |
| cosine_accuracy@3 | 0.7273 |
| cosine_accuracy@5 | 0.787 |
| cosine_accuracy@10 | 0.8447 |
| cosine_precision@1 | 0.5299 |
| cosine_precision@3 | 0.2424 |
| cosine_precision@5 | 0.1574 |
| cosine_precision@10 | 0.0845 |
| cosine_recall@1 | 0.5299 |
| cosine_recall@3 | 0.7273 |
| cosine_recall@5 | 0.787 |
| cosine_recall@10 | 0.8447 |
| cosine_ndcg@10 | 0.6898 |
| cosine_mrr@10 | 0.6399 |
| cosine_map@100 | 0.6446 |
query and positive| query | positive | |
|---|---|---|
| type | string | string |
| details |
|
|
| query | positive |
|---|---|
query: @user Abgesehen von den bekannten Nebenwirkungen wie Thrombosen und Neurologischen Schäden gibt es zum Beispiel jedoch begutachtete Anhaltspunkte, dass das Protein die DNA schädigt. Da habe ich keine Lust darauf. | passage: its DNA damage repair by impeding key DNA repair protein BRCA1 and 53BP1 recruitment to the damage site.[object Object][object Object]title: RETRACTED: SARS–CoV–2 Spike Impairs DNA Damage Repair and Inhibits V(D)J Recombination In Vitro[object Object]Our findings reveal a potential molecular mechanism by which the spike protein might impede adaptive immunity and underscore the potential side effects of full-length spike-based vaccines. |
query: de plus le Japon emploie également les échantillons salivaires ; ci le lien vers l’article de Yale, je vous prie de vérifier les points que je présente et de corriger. 3/ | passage: ngeal and saliva samples from confirmed COVID-19 patients and self-collected samples from healthcare workers on COVID-19 wards.[object Object][object Object]title: Saliva is more sensitive for SARS-CoV-2 detection in COVID-19 patients than nasopharyngeal swabs[object Object]When we compared SARS-CoV-2 detection from patient-matched nasopharyngeal and saliva samples, we found that saliva yielded greater detection sensitivity and consistency throughout the course of infection. Furthermore, we report less variability in self-sample collection of saliva. Taken together, our findings demonstrate that saliva is a viable and more sensitive alternative to nasopharyngeal swabs and could enable at-home self-administered sample collection for accurate large-scale SARS-CoV-2 testing. |
query: Are psychedelics the road to comprehension? Interpersonal Dynamics in Ayahuasca circles of Palestinians and Israelis | passage: title: Relational Processes in Ayahuasca Groups of Palestinians and Israelis |
| abstract: Psychedelics are used in many group contexts. However, most phenomenological research on psychedelics is focused on personal experiences. This paper presents a phenomenological investigation centered on intersubjective and intercultural relational processes, exploring how an intercultural context affects both the group and individual process. Through 31 in-depth interviews, ceremonies in which Palestinians and Israelis drink ayahuasca together have been investigated. The overarching question guiding this inquiry was how psychedelics might contribute to processes of peacebuilding, and in particular how an intercultural context, embedded in a protracted conflict, would affect the group's psychedelic process in a relational sense. Analysis of the interviews was based on grounded theory. Three relational themes about multilocal participatory events which occurred during ayahuasca rituals have em... |
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: 32learning_rate: 8e-06num_train_epochs: 10warmup_steps: 542bf16: Truedataloader_drop_last: Trueload_best_model_at_end: Trueoverwrite_output_dir: Falsedo_predict: Falseprediction_loss_only: Trueper_device_train_batch_size: 32per_device_eval_batch_size: 8per_gpu_train_batch_size: Noneper_gpu_eval_batch_size: Nonegradient_accumulation_steps: 1eval_accumulation_steps: Nonetorch_empty_cache_steps: Nonelearning_rate: 8e-06weight_decay: 0.0adam_beta1: 0.9adam_beta2: 0.999adam_epsilon: 1e-08max_grad_norm: 1.0num_train_epochs: 10max_steps: -1lr_scheduler_type: linearlr_scheduler_kwargs: {}warmup_ratio: 0.0warmup_steps: 542log_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: Truefp16: Falsefp16_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: Truedataloader_num_workers: 0dataloader_prefetch_factor: Nonepast_index: -1disable_tqdm: Falseremove_unused_columns: Truelabel_names: Noneload_best_model_at_end: Trueignore_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: proportionalrouter_mapping: {}learning_rate_mapping: {}| Epoch | Step | Training Loss | 10-percent-dev-split_cosine_ndcg@10 |
|---|---|---|---|
| 0.9242 | 500 | 0.6731 | - |
| 1.0018 | 542 | - | 0.6814 |
| 1.8484 | 1000 | 0.3426 | - |
| 2.0037 | 1084 | - | 0.6826 |
| 2.7726 | 1500 | 0.2901 | - |
| 3.0055 | 1626 | - | 0.6871 |
| 3.6969 | 2000 | 0.2571 | - |
| 4.0074 | 2168 | - | 0.6886 |
| 4.6211 | 2500 | 0.2435 | - |
| 5.0092 | 2710 | - | 0.6887 |
| 5.5453 | 3000 | 0.2322 | - |
| 6.0111 | 3252 | - | 0.6896 |
| 6.4695 | 3500 | 0.2207 | - |
| 7.0129 | 3794 | - | 0.6902 |
| 7.3937 | 4000 | 0.2199 | - |
| 8.0148 | 4336 | - | 0.6898 |
| 8.3179 | 4500 | 0.2194 | - |
| 9.0166 | 4878 | - | 0.6898 |
| 9.2421 | 5000 | 0.2129 | - |
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}