Views
No views yet
SentenceTransformer(
(0): Transformer({'max_seq_length': 256, 'do_lower_case': False}) with Transformer model: BertModel
(1): Pooling({'word_embedding_dimension': 384, 'pooling_mode_cls_token': False, 'pooling_mode_mean_tokens': True, 'pooling_mode_max_tokens': False, 'pooling_mode_mean_sqrt_len_tokens': False, 'pooling_mode_weightedmean_tokens': False, 'pooling_mode_lasttoken': False, 'include_prompt': True})
(2): Normalize()
)pip install -U sentence-transformers1from sentence_transformers import SentenceTransformer
2
3# Download from the 🤗 Hub
4model = SentenceTransformer("sentence_transformers_model_id")
5# Run inference
6sentences = [
7 'Art is sometimes divided into two kinds, high art and popular art. High art attracts a much smaller population than popular art,but the number is large and growing. People who enjoy high art go to the opera and symphony concerts ; they read serious books and go to serious plays ; they keep up with art exhibitions. Popular art is mainly a kind of amusement. Some TV programs are meant to be watched today and forgotten tomorrow. Many popular songs are hits for a few weeks ; then they disappear. Other songs remain popular for such a long time that they become _ . The line between high and popular art is not always clear,however. Many people believe that rock music, for example, is a real art form. Many films are also taken seriously ,while others disappear as nothing more than amusement. Many more people like popular art than high art because _ . A. popular art is better than high art. B. high art is not a real art form. C. popular art will be loved for a longer time than high art. D. popular art is a kind of amusement.',
8 '**The arts**\n\nThe arts:\nThe arts are a very wide range of human practices of creative expression, storytelling and cultural participation. They encompass multiple diverse and plural modes of thinking, doing and being, in an extremely broad range of media. Both highly dynamic and a characteristically constant feature of human life, they have developed into innovative, stylized and sometimes intricate forms. This is often achieved through sustained and deliberate study, training and/or theorizing within a particular tradition, across generations and even between civilizations. The arts are a vehicle through which human beings cultivate distinct social, cultural and individual identities, while transmitting values, impressions, judgments, ideas, visions, spiritual meanings, patterns of life and experiences across time and space.',
9 '**Genre painting**\n\nGenre painting:\nGenre painting (or petit genre), a form of genre art, depicts aspects of everyday life by portraying ordinary people engaged in common activities. One common definition of a genre scene is that it shows figures to whom no identity can be attached either individually or collectively, thus distinguishing it from history paintings (also called grand genre) and portraits. A work would often be considered as a genre work even if it could be shown that the artist had used a known person—a member of his family, say—as a model. In this case it would depend on whether the work was likely to have been intended by the artist to be perceived as a portrait—sometimes a subjective question. The depictions can be realistic, imagined, or romanticized by the artist. Because of their familiar and frequently sentimental subject matter, genre paintings have often proven popular with the bourgeoisie, or middle class.',
10]
11embeddings = model.encode(sentences)
12print(embeddings.shape)
13# [3, 384]
14
15# Get the similarity scores for the embeddings
16similarities = model.similarity(embeddings, embeddings)
17print(similarities.shape)
18# [3, 3]sentence_0, sentence_1, and sentence_2| sentence_0 | sentence_1 | sentence_2 | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
| sentence_0 | sentence_1 | sentence_2 |
|---|---|---|
What organ do we use to hear sound? A. eye. B. the ear. C. amplifier. D. antennae. | The organ that we use to hear sound is the ear. Almost all the structures in the ear are needed for this purpose. Together, they gather and amplify sound waves and change their energy to electrical signals. The electrical signals travel to the brain, which interprets them as sound. | [object Object][object Object][object Object]Mouth organ:[object Object]A mouth organ is any free reed aerophone with one or more air chambers fitted with a free reed.[object Object]Though it spans many traditions, it is played universally the same way by the musician placing their lips over a chamber or holes in the instrument, and blowing or sucking air to create a sound. Many of the chambers can be played together or each individually. |
Preveebral space thickness in adult at C6-C7 level is A. 7mm. B. 15mm. C. 22mm. D. 30mm. | [object Object][object Object][object Object]Infraorbital margin:[object Object]The infraorbital margin is the lower margin of the eye socket. | [object Object][object Object][object Object]Cervical enlargement:[object Object]The cervical enlargement corresponds with the attachments of the large nerves which supply the upper limbs.[object Object]Located just above the brachial plexus, it extends from about the fifth cervical to the first thoracic vertebra, its maximum circumference (about 38 mm.) being on a level with the attachment of the sixth pair of cervical nerves.[object Object]The reason behind the enlargement of the cervical region is because of the increased neural input and output to the upper limbs.[object Object]An analogous region in the lower limbs occurs at the lumbar enlargement. |
Grey Turner's sign (Flank discolouration) is seen in A. Acute pyelonephritis. B. Acute cholecystitis. C. Acute pancreatitis. D. Acute peritonitis. | [object Object][object Object][object Object]Bancroft's sign:[object Object]Bancroft's sign, also known as Moses' sign, is a clinical sign found in patients with deep vein thrombosis of the lower leg involving the posterior tibial veins. The sign is positive if pain is elicited when the calf muscle is compressed forwards against the tibia, but not when the calf muscle is compressed from side to side. Like other clinical signs for deep vein thrombosis, such as Homans sign and Lowenberg's sign, this sign is neither sensitive nor specific for the presence of thrombosis. | [object Object][object Object][object Object]Dance's sign:[object Object]Dance's sign is an eponymous medical sign consisting of an investigation of the right lower quadrant of the abdomen for retraction, which can be an indication of intussusception, i.e. those with intussusception may have retraction of the right iliac fossa. |
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 20.0,
3 "similarity_fct": "cos_sim"
4}per_device_train_batch_size: 16per_device_eval_batch_size: 16num_train_epochs: 1multi_dataset_batch_sampler: round_robinoverwrite_output_dir: Falsedo_predict: Falseeval_strategy: noprediction_loss_only: Trueper_device_train_batch_size: 16per_device_eval_batch_size: 16per_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: 1max_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: 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: 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}deepspeed: Nonelabel_smoothing_factor: 0.0optim: adamw_torchoptim_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: Falsegradient_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: Falseeval_use_gather_object: Falseaverage_tokens_across_devices: Falseprompts: Nonebatch_sampler: batch_samplermulti_dataset_batch_sampler: round_robin| Epoch | Step | Training Loss |
|---|---|---|
| 0.0678 | 500 | 0.6209 |
| 0.1356 | 1000 | 0.6208 |
| 0.2035 | 1500 | 0.5913 |
| 0.2713 | 2000 | 0.5989 |
| 0.3391 | 2500 | 0.5879 |
| 0.4069 | 3000 | 0.584 |
| 0.4748 | 3500 | 0.5627 |
| 0.5426 | 4000 | 0.5564 |
| 0.6104 | 4500 | 0.5511 |
| 0.6782 | 5000 | 0.5511 |
| 0.7461 | 5500 | 0.5345 |
| 0.8139 | 6000 | 0.5334 |
| 0.8817 | 6500 | 0.5377 |
| 0.9495 | 7000 | 0.5227 |
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{henderson2017efficient,
2 title={Efficient Natural Language Response Suggestion for Smart Reply},
3 author={Matthew Henderson and Rami Al-Rfou and Brian Strope and Yun-hsuan Sung and Laszlo Lukacs and Ruiqi Guo and Sanjiv Kumar and Balint Miklos and Ray Kurzweil},
4 year={2017},
5 eprint={1705.00652},
6 archivePrefix={arXiv},
7 primaryClass={cs.CL}
8}