johnyy212/moe-girl-v2
SentenceTransformer based on BAAI/bge-small-zh-v1.5
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.
Model Details
Model Description
- Model Type: Sentence Transformer
- Base model: BAAI/bge-small-zh-v1.5 <!-- at revision 7999e1d3359715c523056ef9478215996d62a620 -->
- Maximum Sequence Length: 512 tokens
- Output Dimensionality: 512 dimensions
- Similarity Function: Cosine Similarity
- Supported Modality: Text
- Training Dataset:
- json <!-- - Language: Unknown --> <!-- - License: Unknown -->
Model Sources
- Documentation: Sentence Transformers Documentation
- Repository: Sentence Transformers on GitHub
- Hugging Face: Sentence Transformers on Hugging Face
Full Model Architecture
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({})
)Usage
Direct Usage (Sentence Transformers)
First install the Sentence Transformers library:
pip install -U sentence-transformersThen you can load this model and run inference.
from sentence_transformers import SentenceTransformer
# Download from the 🤗 Hub
model = SentenceTransformer("johnyy212/moe-girl-v2")
# Run inference
sentences = [
'熟女、A型、召唤能力者',
'角色:文豪野犬:尾崎红叶\n本名:尾崎、红叶、Ozaki Kouyou\n别名:红叶大姐、红叶君\n声优:小清水亚美\n发色:红\n瞳色:红\n生日:1月10日\n星座:摩羯\n血型:A\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.3878, -0.0819],
# [ 0.3878, 1.0000, 0.0236],
# [-0.0819, 0.0236, 1.0000]])<!--
Direct Usage (Transformers)
<details><summary>Click to see the direct usage in Transformers</summary>
</details> -->
<!--
Downstream Usage (Sentence Transformers)
You can finetune this model on your own dataset.
<details><summary>Click to expand</summary>
</details> -->
<!--
Out-of-Scope Use
List how the model may foreseeably be misused and address what users ought not to do with the model. -->
<!--
Bias, Risks and Limitations
What are the known or foreseeable issues stemming from this model? You could also flag here known failure cases or weaknesses of the model. -->
<!--
Recommendations
What are recommendations with respect to the foreseeable issues? For example, filtering explicit content. -->
Training Details
Training Dataset
json
- Dataset: json
- Size: 56,574 training samples
- Columns: <code>anchor</code>, <code>positive</code>, and <code>char_name</code>
- Approximate statistics based on the first 1000 samples: | | anchor | positive | char_name | |:--------|:----------------------------------------------------------------------------------|:------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------| | type | string | string | string | | details | <ul><li>min: 4 tokens</li><li>mean: 11.84 tokens</li><li>max: 34 tokens</li></ul> | <ul><li>min: 12 tokens</li><li>mean: 80.61 tokens</li><li>max: 295 tokens</li></ul> | <ul><li>min: 3 tokens</li><li>mean: 7.38 tokens</li><li>max: 48 tokens</li></ul> |
- Samples: | anchor | positive | char_name | |:---------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------| | <code>井上和彦、早水理沙</code> | <code>角色:黑田<br>本名:黒田<br>别名:小黑、幼年时<br>声优:小野友树、小野友树配音角色、井上和彦、井上和彦配音角色、早水理沙、早水理沙配音角色<br>发色:黑<br>瞳色:灰蓝<br>萌点:现在、工程师、浴衣、绷带、遮眼发、烟斗、人偶师、大叔、毒舌、反差萌、贪财、心理创伤、青年时、幼驯染、搞事、天才、傲娇、腹黑、强气、双向暗恋、单马尾、天然疯、武士、蔷薇</code> | <code>黑田</code> | | <code>平田裕香</code> | <code>角色:寺门卷子<br>本名:寺门 巻子<br>声优:平田裕香<br>萌点:同级生</code> | <code>寺门卷子</code> | | <code>蝴蝶结、高跟鞋、麦克风、制服、伞、乙女</code> | <code>角色:瞳(LIVE A HERO)<br>本名:绫歌瞳<br>别名:仁美、爱抖露<br>声优:夏怜<br>发色:黑<br>瞳色:渐变<br>萌点:麦克风、乙女、歌手、偶像、暴力女、短发、丸子头、耳环、制服、伞、比基尼、外套半脱、手套、蝴蝶结、百褶裙、长筒袜、四分之三袜、高跟鞋、元气、光</code> | <code>瞳(LIVE A HERO)</code> |
- Loss: <code>MultipleNegativesRankingLoss</code> 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
}Evaluation Dataset
json
- Dataset: json
- Size: 3,403 evaluation samples
- Columns: <code>anchor</code>, <code>positive</code>, and <code>char_name</code>
- Approximate statistics based on the first 1000 samples: | | anchor | positive | char_name | |:--------|:----------------------------------------------------------------------------------|:------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------| | type | string | string | string | | details | <ul><li>min: 9 tokens</li><li>mean: 15.96 tokens</li><li>max: 30 tokens</li></ul> | <ul><li>min: 30 tokens</li><li>mean: 80.32 tokens</li><li>max: 512 tokens</li></ul> | <ul><li>min: 3 tokens</li><li>mean: 7.28 tokens</li><li>max: 26 tokens</li></ul> |
- Samples: | anchor | positive | char_name | |:-------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-------------------| | <code>小天使、发珠、料理达人、傲娇、长直</code> | <code>角色:云雀丘琉璃<br>本名:云雀丘瑠璃<br>别名:云雀、ヒバリ、本场琉璃<br>声优:白石晴香<br>发色:琉璃色黑<br>瞳色:绿<br>生日:7月9日<br>星座:巨蟹<br>血型:B<br>萌点:不幸、单恋、微傲娇、小天使、美少女、认真、人妻、料理达人、长直、吊眼、发珠、高跟鞋、绝对领域</code> | <code>云雀丘琉璃</code> | | <code>黑瞳、银发、特工、B型</code> | <code>角色:风间让二<br>本名:风间、譲二<br>别名:二叔<br>声优:渡哲也配音角色<br>发色:灰<br>瞳色:黑<br>年龄:64<br>血型:B<br>萌点:特工、弟弟、长者、双胞胎</code> | <code>风间让二</code> | | <code>红发、机郎、傲娇、蓝瞳</code> | <code>角色:爱因兹希<br>本名:爱因兹希<br>别名:全连结指挥体<br>声优:诹访部顺一<br>发色:红<br>瞳色:蓝<br>萌点:机郎、傲娇、基佬</code> | <code>爱因兹希</code> |
- Loss: <code>MultipleNegativesRankingLoss</code> 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
}Training Hyperparameters
Non-Default Hyperparameters
per_device_train_batch_size: 64learning_rate: 2e-05num_train_epochs: 5warmup_steps: 0.1fp16: Trueload_best_model_at_end: Truebatch_sampler: no_duplicates
All Hyperparameters
<details><summary>Click to expand</summary>
do_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: {'minnumparams': 0, 'xla': False, 'xlafsdpv2': False, 'xlafsdpgrad_ckpt': False}accelerator_config: {'splitbatches': False, 'dispatchbatches': None, 'evenbatches': True, 'useseedablesampler': True, 'nonblocking': False, 'gradientaccumulationkwargs': None}parallelism_config: Nonedeepspeed: Nonelabel_smoothing_factor: 0.0optim: adamwtorchfusedoptim_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: {}
</details>
Training Logs
- The bold row denotes the saved checkpoint.
Training Time
- Training: 14.9 minutes
Framework Versions
- Python: 3.12.13
- Sentence Transformers: 5.4.1
- Transformers: 5.0.0
- PyTorch: 2.10.0+cu128
- Accelerate: 1.13.0
- Datasets: 4.8.5
- Tokenizers: 0.22.2
Citation
BibTeX
Sentence Transformers
@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",
}MultipleNegativesRankingLoss
@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},
}<!--
Glossary
Clearly define terms in order to be accessible across audiences. -->
<!--
Model Card Authors
Lists the people who create the model card, providing recognition and accountability for the detailed work that goes into its construction. -->
<!--
Model Card Contact
Provides a way for people who have updates to the Model Card, suggestions, or questions, to contact the Model Card authors. -->
