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': 768, 'pooling_mode': 'cls', 'include_prompt': True})
(2): Normalize({})
)pip install -U sentence-transformers1from sentence_transformers import SentenceTransformer
2
3# Download from the 🤗 Hub
4model = SentenceTransformer("RinKana/bge-base-en-v1.5-afterimage-v.0.1")
5# Run inference
6sentences = [
7 "Represent this dialogue context for retrieving the missing turn: Speaker A is replying. Previous context: Speaker B: They don't all have leather jackets. Speaker A: Anyway, on your birthday Mom and Dad gave you what you asked for! Speaker B: That's true, but all I asked for was a pair of new jeans! Speaker A: I hate this raincoat. Speaker B: All right, how much is a leather jacket? Following context: Speaker B: OK. I'll lend you the $ 50, but you have to pay me back. Speaker A: Great! I'll pay you back, sis!",
8 'Candidate response: If I return this raincoat, I only need another $ 50.',
9 'Candidate response: I asked them for a leather jacket for my birthday, and they just got me this ugly raincoat.',
10]
11embeddings = model.encode(sentences)
12print(embeddings.shape)
13# [3, 768]
14
15# Get the similarity scores for the embeddings
16similarities = model.similarity(embeddings, embeddings)
17print(similarities)
18# tensor([[1.0000, 0.7217, 0.5031],
19# [0.7217, 1.0000, 0.5850],
20# [0.5031, 0.5850, 1.0000]])gap-to-candidate-evalInformationRetrievalEvaluator| Metric | Value |
|---|---|
| cosine_accuracy@1 | 0.3322 |
| cosine_accuracy@3 | 0.4429 |
| cosine_accuracy@5 | 0.4983 |
| cosine_accuracy@10 | 0.5744 |
| cosine_precision@1 | 0.3322 |
| cosine_precision@3 | 0.1476 |
| cosine_precision@5 | 0.0997 |
| cosine_precision@10 | 0.0574 |
| cosine_recall@1 | 0.3322 |
| cosine_recall@3 | 0.4429 |
| cosine_recall@5 | 0.4983 |
| cosine_recall@10 | 0.5744 |
| cosine_ndcg@10 | 0.4448 |
| cosine_mrr@10 | 0.4047 |
| cosine_map@100 | 0.4116 |
anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
| anchor | positive | negative |
|---|---|---|
Represent this dialogue context for retrieving the missing turn: Speaker B is replying. Previous context: Speaker A: Oh, yes. Could you tell me your name? Speaker B: Oh, Jerry Lynn. Speaker A: Well, what exactly is it that interests you about the job? Speaker B: I just thought that it was right up my street, you know. Speaker A: Really? Could you tell me a little about yourself? Following context: Speaker A: Do you have any special skills? Speaker B: Well, I speak two foreign languages, French and Italian. Speaker A: Well, I see. | Candidate response: I've been working abroad doing secretarial work. Previous to that I was at university. I've got a degree in English. | Candidate response: Thank you . Could you tell me the specials today ? |
Represent this dialogue context for retrieving the missing turn: Speaker B is replying. Previous context: Speaker A: We'll have to get you to a hospital for an X-ray . Speaker B: Is that really necessary ? Speaker A: It may be worse than it seems . How's it feel ? Speaker B: About the same . Speaker A: Someone will be out to take a look any minute now . Following context: Speaker A: Of course ! It's the sort of thing a hospital emergency ward is for . Will we have to wait much longer ? Speaker B: I hope not.It isn't that busy . | Candidate response: Should we be here , Alice ? I don't think it's that serious . | Candidate response: You don't have to worry about it . We have a one year warranty . |
Represent this dialogue context for retrieving the missing turn: Speaker B is replying. Previous context: Speaker A: ( Bob groans . ) What's the matter.Bob ? Speaker B: I think it's my ankle . Speaker A: What happened ? Speaker B: One of my snowshoes got caught on a rock . Speaker A: Can you stand ? Following context: Speaker A: We'll have to get you to a hospital for an X-ray . Speaker B: Is that really necessary ? Speaker A: It may be worse than it seems . How's it feel ? Speaker B: About the same . Speaker A: Someone will be out to take a look any minute now . | Candidate response: I don't think so.It ' s kind of sore . | Candidate response: You don't have to worry about it . We have a one year warranty . |
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: 16per_device_eval_batch_size: 16num_train_epochs: 4warmup_steps: 0.1fp16: Trueload_best_model_at_end: Truebatch_sampler: no_duplicatesdo_predict: Falseprediction_loss_only: Trueper_device_train_batch_size: 16per_device_eval_batch_size: 16gradient_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: 1.0num_train_epochs: 4max_steps: -1lr_scheduler_type: linearlr_scheduler_kwargs: Nonewarmup_ratio: Nonewarmup_steps: 0.1log_level: passivelog_level_replica: warninglog_on_each_node: Truelogging_nan_inf_filter: Trueenable_jit_checkpoint: Falsesave_on_each_node: Falsesave_only_model: Falserestore_callback_states_from_checkpoint: Falseuse_cpu: Falseseed: 42data_seed: Nonebf16: Falsefp16: Truebf16_full_eval: Falsefp16_full_eval: Falsetf32: Nonelocal_rank: -1ddp_backend: Nonedebug: []dataloader_drop_last: Falsedataloader_num_workers: 0dataloader_prefetch_factor: Nonedisable_tqdm: Falseremove_unused_columns: Truelabel_names: Noneload_best_model_at_end: Trueignore_data_skip: Falsefsdp: []fsdp_config: {'min_num_params': 0, 'xla': False, 'xla_fsdp_v2': False, 'xla_fsdp_grad_ckpt': False}accelerator_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: Nonegroup_by_length: Falselength_column_name: lengthproject: huggingfacetrackio_space_id: trackioddp_find_unused_parameters: Noneddp_bucket_cap_mb: Noneddp_broadcast_buffers: Falsedataloader_pin_memory: Truedataloader_persistent_workers: Falseskip_memory_metrics: Truepush_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_for_metrics: []eval_do_concat_batches: Trueauto_find_batch_size: Falsefull_determinism: Falseddp_timeout: 1800torch_compile: Falsetorch_compile_backend: Nonetorch_compile_mode: Noneinclude_num_input_tokens_seen: noneftune_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: Trueuse_cache: Falseprompts: Nonebatch_sampler: no_duplicatesmulti_dataset_batch_sampler: proportionalrouter_mapping: {}learning_rate_mapping: {}| Epoch | Step | Training Loss | gap-to-candidate-eval_cosine_ndcg@10 |
|---|---|---|---|
| 0.3356 | 50 | 2.1410 | - |
| 0.6711 | 100 | 0.0009 | - |
| 1.0 | 149 | - | 0.3215 |
| 1.0067 | 150 | 0.0534 | - |
| 1.3423 | 200 | 1.3008 | - |
| 1.6779 | 250 | 0.0003 | - |
| 2.0 | 298 | - | 0.4130 |
| 2.0134 | 300 | 0.0418 | - |
| 2.3490 | 350 | 0.5842 | - |
| 2.6846 | 400 | 0.0004 | - |
| 3.0 | 447 | - | 0.4400 |
| 3.0201 | 450 | 0.0234 | - |
| 3.3557 | 500 | 0.2901 | - |
| 3.6913 | 550 | 0.0007 | - |
| 4.0 | 596 | - | 0.4448 |
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}