Views
No views yet
SentenceTransformer(
(0): Transformer({'max_seq_length': 8192, 'do_lower_case': False, 'architecture': 'GteModel'})
(1): Pooling({'word_embedding_dimension': 768, '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()
)pip install -U sentence-transformers1from sentence_transformers import SentenceTransformer
2
3# Download from the 🤗 Hub
4model = SentenceTransformer("BjarneNPO-26_08_2025_20_09_08")
5# Run inference
6queries = [
7 "Userin hinterlegt Email-Adresse im Benutzerkonto und speichert. Aber die Adresse wird trotz Best\u00e4tigung nicht gespeichert. \r\nEMA ist notwendig f\u00fcr 2FA\r\n\r\n Roesler = jil.roesler@cse.ruhr",
8]
9documents = [
10 'N',
11 'Unter dem Namen der Dame gibt es nur einen Login. Vielleicht schaut sie mit dem Login einer anderen Kollegin auf die zweite Einrichtung? Oder sie hat einen Login als Träger? Dies klärt sie mit der Einrichtung ab.',
12 'Userin hat die Rolle "Mitarbeiter".',
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.2534, 0.2045, 0.0855]])Snowflake/snowflake-arctic-embed-m-v2.0scripts.InformationRetrievalEvaluatorCustom.InformationRetrievalEvaluatorCustom| Metric | Value |
|---|---|
| cosine_accuracy@1 | 0.1739 |
| cosine_accuracy@3 | 0.3043 |
| cosine_accuracy@5 | 0.4348 |
| cosine_accuracy@10 | 0.4783 |
| cosine_precision@1 | 0.1739 |
| cosine_precision@3 | 0.1304 |
| cosine_precision@5 | 0.1043 |
| cosine_precision@10 | 0.0565 |
| cosine_recall@1 | 0.0184 |
| cosine_recall@3 | 0.042 |
| cosine_recall@5 | 0.0565 |
| cosine_recall@10 | 0.0609 |
| cosine_ndcg@10 | 0.0816 |
| cosine_mrr@10 | 0.2591 |
| cosine_map@100 | 0.044 |
query and answer| query | answer | |
|---|---|---|
| type | string | string |
| details |
|
|
| query | answer |
|---|---|
Nun ist die Monatsmeldung erfolgt, aber rote Ausrufezeichen tauchen auf. | Userin an das JA verwiesen, diese müssten ihr die Schloss-Monate zur Überarbeitung im Kibiz.web zurückgeben. Userin dazu empfohlen, die Kinder die nicht in kitaplus sind, aber in Kibiz.web - im KiBiz.web zu entfernen, wenn diese nicht vorhanden sind. |
Die Feiertage in den Stammdaten stimmen nicht. | Es besteht bereits ein Ticket dafür. |
Abrechnung kann nicht final freigegeben werden, es wird aber keiner Fehlermeldung angeziegt | im Hintergrund ist eine Fehlermeldung zu sehen. An Entwickler weitergeleitet. |
Korrektur vorgenommen. |
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 20.0,
3 "similarity_fct": "cos_sim",
4 "gather_across_devices": false
5}eval_strategy: epochper_device_train_batch_size: 64per_device_eval_batch_size: 64gradient_accumulation_steps: 16learning_rate: 2e-05num_train_epochs: 6lr_scheduler_type: cosinewarmup_ratio: 0.1bf16: Truetf32: Trueload_best_model_at_end: Truebatch_sampler: no_duplicatesoverwrite_output_dir: Falsedo_predict: Falseeval_strategy: epochprediction_loss_only: Trueper_device_train_batch_size: 64per_device_eval_batch_size: 64per_gpu_train_batch_size: Noneper_gpu_eval_batch_size: Nonegradient_accumulation_steps: 16eval_accumulation_steps: Nonetorch_empty_cache_steps: Nonelearning_rate: 2e-05weight_decay: 0.0adam_beta1: 0.9adam_beta2: 0.999adam_epsilon: 1e-08max_grad_norm: 1.0num_train_epochs: 6max_steps: -1lr_scheduler_type: cosinelr_scheduler_kwargs: {}warmup_ratio: 0.1warmup_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: Truefp16: Falsefp16_opt_level: O1half_precision_backend: autobf16_full_eval: Falsefp16_full_eval: Falsetf32: Truelocal_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: 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}deepspeed: 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: no_duplicatesmulti_dataset_batch_sampler: proportionalrouter_mapping: {}learning_rate_mapping: {}| Epoch | Step | Training Loss | Snowflake/snowflake-arctic-embed-m-v2.0_cosine_ndcg@10 |
|---|---|---|---|
| 0.1187 | 10 | 2.9295 | - |
| 0.2374 | 20 | 2.7426 | - |
| 0.3561 | 30 | 2.5243 | - |
| 0.4748 | 40 | 2.2566 | - |
| 0.5935 | 50 | 2.0585 | - |
| 0.7122 | 60 | 1.8776 | - |
| 0.8309 | 70 | 1.7349 | - |
| 0.9496 | 80 | 1.2366 | - |
| 1.0 | 85 | - | 0.0879 |
| 1.0593 | 90 | 0.761 | - |
| 1.1780 | 100 | 1.5082 | - |
| 1.2967 | 110 | 1.4529 | - |
| 1.4154 | 120 | 1.4423 | - |
| 1.5341 | 130 | 1.3939 | - |
| 1.6528 | 140 | 1.3543 | - |
| 1.7715 | 150 | 1.2795 | - |
| 1.8902 | 160 | 1.2709 | - |
| 2.0 | 170 | 0.2985 | 0.0675 |
| 2.1187 | 180 | 1.2023 | - |
| 2.2374 | 190 | 1.2113 | - |
| 2.3561 | 200 | 1.1602 | - |
| 2.4748 | 210 | 1.1586 | - |
| 2.5935 | 220 | 1.1209 | - |
| 2.7122 | 230 | 1.1144 | - |
| 2.8309 | 240 | 1.1186 | - |
| 2.9496 | 250 | 0.8362 | - |
| 3.0 | 255 | - | 0.0705 |
| 3.0593 | 260 | 0.5497 | - |
| 3.1780 | 270 | 1.0441 | - |
| 3.2967 | 280 | 1.025 | - |
| 3.4154 | 290 | 1.0315 | - |
| 3.5341 | 300 | 1.0414 | - |
| 3.6528 | 310 | 1.0282 | - |
| 3.7715 | 320 | 1.0342 | - |
| 3.8902 | 330 | 1.045 | - |
| 4.0 | 340 | 0.2286 | 0.0728 |
| 4.1187 | 350 | 0.9736 | - |
| 4.2374 | 360 | 0.9875 | - |
| 4.3561 | 370 | 0.9762 | - |
| 4.4748 | 380 | 1.0085 | - |
| 4.5935 | 390 | 0.9762 | - |
| 4.7122 | 400 | 0.965 | - |
| 4.8309 | 410 | 0.9891 | - |
| 4.9496 | 420 | 0.6989 | - |
| 5.0 | 425 | - | 0.0733 |
| 5.0593 | 430 | 0.4908 | - |
| 5.1780 | 440 | 0.9644 | - |
| 5.2967 | 450 | 0.9409 | - |
| 5.4154 | 460 | 0.9465 | - |
| 5.5341 | 470 | 0.943 | - |
| 5.6528 | 480 | 0.9714 | - |
| 5.7715 | 490 | 0.9607 | - |
| 5.8902 | 500 | 0.9607 | - |
| 6.0 | 510 | 0.2269 | 0.0816 |
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}