Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks
Paper • 1908.10084 • Published • 16
How to use johnyy212/moe-girl-test with sentence-transformers:
from sentence_transformers import SentenceTransformer
model = SentenceTransformer("johnyy212/moe-girl-test")
sentences = [
"长卷发、羽织、耳环、金瞳、王冠编发、面具",
"群愿",
"角色:傅园慧\n本名:傅园慧\n别名:傅爷、小园园、洪荒少女\n生日:1月7日\n星座:摩羯\n血型:O\n萌点:运动员、泳装、天然疯、天然萌、颜艺、表情包",
"角色:群愿\n本名:群愿\n别名:叶永\n发色:棕\n瞳色:黄\n萌点:面具、浴衣、木屐、高额头、下双马尾、耳环、人字刘海、长卷发、蝴蝶结、王冠编发、高马尾、羽织、高跟鞋"
]
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-test")
# Run inference
sentences = [
'黑发、眼镜、外柔内刚、宅男、黑瞳、弱气',
'角色:德怀特·费菲尔德\n本名:Dwight Fairfield\n别名:汪涵、领导、光头\n声优:Ian Chuprun\n发色:黑\n瞳色:黑\n身高:169\n萌点:眼镜、弱气、外柔内刚、上班族、宅男',
'德怀特·费菲尔德',
]
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.7818, -0.2186],
# [ 0.7818, 1.0000, -0.0236],
# [-0.2186, -0.0236, 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 |
|---|---|---|
御姐、蓝瞳、蓝发 |
角色:卡露娜 |
卡露娜 |
露肩装、绿瞳、长发、卷发、科学家 |
角色:冷周六 |
冷周六 |
枪械、爸爸、A型、转轮手枪 |
角色:巴瑞·波顿 |
巴瑞·波顿 |
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-05warmup_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: 3max_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.2088 | 100 | 1.8291 | - |
| 0.4175 | 200 | 0.7744 | - |
| 0.6263 | 300 | 0.6619 | - |
| 0.8351 | 400 | 0.5894 | - |
| 1.0 | 479 | - | 0.0947 |
| 1.0438 | 500 | 0.5654 | - |
| 1.2526 | 600 | 0.4878 | - |
| 1.4614 | 700 | 0.4823 | - |
| 1.6701 | 800 | 0.4479 | - |
| 1.8789 | 900 | 0.4625 | - |
| 2.0 | 958 | - | 0.0796 |
| 2.0877 | 1000 | 0.4401 | - |
| 2.2965 | 1100 | 0.4072 | - |
| 2.5052 | 1200 | 0.3933 | - |
| 2.7140 | 1300 | 0.4178 | - |
| 2.9228 | 1400 | 0.4235 | - |
| 3.0 | 1437 | - | 0.075 |
@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