Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks
Paper • 1908.10084 • Published • 16
How to use johnyy212/moe-girl-v3 with sentence-transformers:
from sentence_transformers import SentenceTransformer
model = SentenceTransformer("johnyy212/moe-girl-v3")
sentences = [
"呆毛、翅膀、虚拟UP主、天使、蓝瞳",
"角色:叶月辉夜\n本名:叶月かぐや\n声优:神代岬\n发色:白\n瞳色:绿\n萌点:天然呆、无口、实验服、超短裙、发箍、长鬓角、低马尾、美乳",
"星森天",
"角色:星森天\n本名:星森天_SORA\n别名:阿天 天宝 SORA酱\n发色:粉\n瞳色:蓝\n生日:11月1日\n萌点:天使、呆毛、硬汉、翅膀、喝火锅、Q弹、“清楚”"
]
embeddings = model.encode(sentences)
similarities = model.similarity(embeddings, embeddings)
print(similarities.shape)
# [4, 4]This is a sentence-transformers model finetuned from BAAI/bge-small-zh-v1.5 on the json dataset. It maps sentences & paragraphs to a 512-dimensional dense vector space and can be used for retrieval.
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': 512, 'pooling_mode': 'cls', 'include_prompt': True})
(2): Normalize({})
)
First install the Sentence Transformers library:
pip install -U sentence-transformers
Then you can load this model and run inference.
from sentence_transformers import SentenceTransformer
# Download from the 🤗 Hub
model = SentenceTransformer("johnyy212/moe-girl-v3")
# Run inference
sentences = [
'御姐、长短袜、下乳、长靴、红瞳',
'角色:少女前线:PTRD\n本名:PTRD41反坦克步枪\n别名:卤蛋、南半球\n声优:清水爱\n萌点:长发、巨乳、黑丝、御姐、下乳、呆毛、哥萨克帽\n发色:亚麻\n瞳色:红',
'少女前线:PTRD',
]
embeddings = model.encode(sentences)
print(embeddings.shape)
# [3, 512]
# Get the similarity scores for the embeddings
similarities = model.similarity(embeddings, embeddings)
print(similarities)
# tensor([[ 1.0000, 0.5500, -0.1585],
# [ 0.5500, 1.0000, -0.1041],
# [-0.1585, -0.1041, 1.0000]])
anchor, positive, and char_name| anchor | positive | char_name | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
| anchor | positive | char_name |
|---|---|---|
杀手、吐槽、红发、混血儿 |
角色:风吹雪 |
风吹雪 |
黑发、百合、高中生、半马尾、黑色连裤袜 |
角色:高远凛 |
高远凛 |
小野凉子、北见六花 |
角色:世计丸 |
世计丸 |
MultipleNegativesRankingLoss with these parameters:{
"scale": 20.0,
"similarity_fct": "cos_sim",
"gather_across_devices": false,
"directions": [
"query_to_doc"
],
"partition_mode": "joint",
"hardness_mode": null,
"hardness_strength": 0.0
}
anchor, positive, and char_name| anchor | positive | char_name | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
| anchor | positive | char_name |
|---|---|---|
萝莉控、黑色吊带袜、手套、绿瞳 |
角色:碧蓝航线:皇家方舟 |
碧蓝航线:皇家方舟 |
孤儿、紫瞳、披风、长直、黑发、黑长直 |
角色:江昙 |
江昙 |
尾巴、自大、嗜杀 |
角色:紫影狒狒 |
紫影狒狒 |
MultipleNegativesRankingLoss with these parameters:{
"scale": 20.0,
"similarity_fct": "cos_sim",
"gather_across_devices": false,
"directions": [
"query_to_doc"
],
"partition_mode": "joint",
"hardness_mode": null,
"hardness_strength": 0.0
}
per_device_train_batch_size: 64learning_rate: 2e-05num_train_epochs: 5warmup_steps: 0.1fp16: Trueload_best_model_at_end: Truebatch_sampler: no_duplicatesdo_predict: Falseprediction_loss_only: Trueper_device_train_batch_size: 64per_device_eval_batch_size: 8gradient_accumulation_steps: 1eval_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: 5max_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 | Validation Loss |
|---|---|---|---|
| 0.1094 | 100 | 2.4634 | - |
| 0.2188 | 200 | 1.1738 | - |
| 0.3282 | 300 | 1.0204 | - |
| 0.4376 | 400 | 0.8706 | - |
| 0.5470 | 500 | 0.8237 | - |
| 0.6565 | 600 | 0.8114 | - |
| 0.7659 | 700 | 0.7423 | - |
| 0.8753 | 800 | 0.7134 | - |
| 0.9847 | 900 | 0.6652 | - |
| 1.0 | 914 | - | 0.1627 |
| 1.0941 | 1000 | 0.6096 | - |
| 1.2035 | 1100 | 0.6270 | - |
| 1.3129 | 1200 | 0.6147 | - |
| 1.4223 | 1300 | 0.5881 | - |
| 1.5317 | 1400 | 0.6169 | - |
| 1.6411 | 1500 | 0.5780 | - |
| 1.7505 | 1600 | 0.5719 | - |
| 1.8600 | 1700 | 0.5977 | - |
| 1.9694 | 1800 | 0.5682 | - |
| 2.0 | 1828 | - | 0.1404 |
| 2.0788 | 1900 | 0.5367 | - |
| 2.1882 | 2000 | 0.5234 | - |
| 2.2976 | 2100 | 0.4955 | - |
| 2.4070 | 2200 | 0.5051 | - |
| 2.5164 | 2300 | 0.5314 | - |
| 2.6258 | 2400 | 0.4933 | - |
| 2.7352 | 2500 | 0.4881 | - |
| 2.8446 | 2600 | 0.4982 | - |
| 2.9540 | 2700 | 0.4992 | - |
| 3.0 | 2742 | - | 0.1312 |
| 3.0635 | 2800 | 0.4945 | - |
| 3.1729 | 2900 | 0.4468 | - |
| 3.2823 | 3000 | 0.4524 | - |
| 3.3917 | 3100 | 0.4675 | - |
| 3.5011 | 3200 | 0.4591 | - |
| 3.6105 | 3300 | 0.4627 | - |
| 3.7199 | 3400 | 0.4545 | - |
| 3.8293 | 3500 | 0.4718 | - |
| 3.9387 | 3600 | 0.4558 | - |
| 4.0 | 3656 | - | 0.1237 |
| 4.0481 | 3700 | 0.4439 | - |
| 4.1575 | 3800 | 0.4375 | - |
| 4.2670 | 3900 | 0.4384 | - |
| 4.3764 | 4000 | 0.4486 | - |
| 4.4858 | 4100 | 0.4373 | - |
| 4.5952 | 4200 | 0.4356 | - |
| 4.7046 | 4300 | 0.4425 | - |
| 4.8140 | 4400 | 0.4285 | - |
| 4.9234 | 4500 | 0.4219 | - |
| 5.0 | 4570 | - | 0.1243 |
@inproceedings{reimers-2019-sentence-bert,
title = "Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks",
author = "Reimers, Nils and Gurevych, Iryna",
booktitle = "Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing",
month = "11",
year = "2019",
publisher = "Association for Computational Linguistics",
url = "https://arxiv.org/abs/1908.10084",
}
@misc{oord2019representationlearningcontrastivepredictive,
title={Representation Learning with Contrastive Predictive Coding},
author={Aaron van den Oord and Yazhe Li and Oriol Vinyals},
year={2019},
eprint={1807.03748},
archivePrefix={arXiv},
primaryClass={cs.LG},
url={https://arxiv.org/abs/1807.03748},
}
Base model
BAAI/bge-small-zh-v1.5