CoolFace
Modelpublic

dkqjrm/qwen06-embedding-augmented-olive-phonetic-wo-negative-lora

sourceHugging Faceupdated 8mo agoView on Hugging Face
0likes
Model Card

SentenceTransformer based on unsloth/Qwen3-Embedding-0.6B

This is a sentence-transformers model finetuned from unsloth/Qwen3-Embedding-0.6B on the augmented-olive-product-phonetic-wo-negatives dataset. It maps sentences & paragraphs to a 1024-dimensional dense vector space and can be used for semantic textual similarity, semantic search, paraphrase mining, text classification, clustering, and more.

Model Details

Model Description

  • —Model Type: Sentence Transformer
  • —Base model: unsloth/Qwen3-Embedding-0.6B <!-- at revision f2fddb42505bde9feaf19f0967b01dce52e764c6 -->
  • —Maximum Sequence Length: 512 tokens
  • —Output Dimensionality: 1024 dimensions
  • —Similarity Function: Cosine Similarity
  • —Training Dataset:
  • —augmented-olive-product-phonetic-wo-negatives <!-- - Language: Unknown --> <!-- - License: Unknown -->

Model Sources

Full Model Architecture

SentenceTransformer(
  (0): Transformer({'max_seq_length': 512, 'do_lower_case': False, 'architecture': 'PeftModelForFeatureExtraction'})
  (1): Pooling({'word_embedding_dimension': 1024, 'pooling_mode_cls_token': False, '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': True, 'include_prompt': True})
  (2): Normalize()
)

Usage

Direct Usage (Sentence Transformers)

First install the Sentence Transformers library:

bash
pip install -U sentence-transformers

Then you can load this model and run inference.

python
from sentence_transformers import SentenceTransformer

# Download from the 🤗 Hub
model = SentenceTransformer("dkqjrm/qwen06-embedding-augmented-olive-phonetic-wo-negative-lora")
# Run inference
sentences = [
    '벤시몽 BSM 로고 오가닉 코튼 양말 1개',
    '棉袜子',
    '유분 순삭 드라이 샴푸',
]
embeddings = model.encode(sentences)
print(embeddings.shape)
# [3, 1024]

# Get the similarity scores for the embeddings
similarities = model.similarity(embeddings, embeddings)
print(similarities)
# tensor([[ 1.0000,  0.4293, -0.0163],
#         [ 0.4293,  1.0000, -0.0177],
#         [-0.0163, -0.0177,  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

augmented-olive-product-phonetic-wo-negatives
  • —Dataset: augmented-olive-product-phonetic-wo-negatives at e21876d
  • —Size: 2,189,797 training samples
  • —Columns: <code>anchor</code> and <code>positive</code>
  • —Approximate statistics based on the first 1000 samples: | | anchor | positive | |:--------|:----------------------------------------------------------------------------------|:---------------------------------------------------------------------------------| | type | string | string | | details | <ul><li>min: 6 tokens</li><li>mean: 27.13 tokens</li><li>max: 64 tokens</li></ul> | <ul><li>min: 2 tokens</li><li>mean: 7.21 tokens</li><li>max: 44 tokens</li></ul> |
  • —Samples: | anchor | positive | |:--------------------------------------------------|:--------------------------------------------| | <code>엘리자베스아덴 그린티 센트스프레이 100ml</code> | <code>Green Tea perfume.</code> | | <code>164 루테인지아잔틴 메모리케어 GR 30캡슐 (30일분)</code> | <code>164 루테인지아잔틴 메모리케어 GR 30캡슐 30일분</code> | | <code>[지성두피&피지 제거] 클로란 네틀 노세범 드라이 샴푸 150ml</code> | <code>Dry shampoo</code> |
  • —Loss: <code>MultipleNegativesRankingLoss</code> with these parameters:
json
  {
      "scale": 20.0,
      "similarity_fct": "cos_sim",
      "gather_across_devices": false
  }

Evaluation Dataset

augmented-olive-product-phonetic-wo-negatives
  • —Dataset: augmented-olive-product-phonetic-wo-negatives at e21876d
  • —Size: 115,252 evaluation samples
  • —Columns: <code>anchor</code> and <code>positive</code>
  • —Approximate statistics based on the first 1000 samples: | | anchor | positive | |:--------|:----------------------------------------------------------------------------------|:---------------------------------------------------------------------------------| | type | string | string | | details | <ul><li>min: 6 tokens</li><li>mean: 26.68 tokens</li><li>max: 63 tokens</li></ul> | <ul><li>min: 2 tokens</li><li>mean: 7.45 tokens</li><li>max: 47 tokens</li></ul> |
  • —Samples: | anchor | positive | |:----------------------------------------|:----------------------------| | <code>아임쏘리포마이스킨 pH5.5 모이스처 젤리마스크</code> | <code>ウルトゥルー ジェリーマスク</code> | | <code>블랙몬스터 다운펌 프로 키트</code> | <code>블랙몬스터 다운펌 프로</code> | | <code>그린벨 NEW미세모용족집게(블랙)</code> | <code>黑色镊子</code> |
  • —Loss: <code>MultipleNegativesRankingLoss</code> with these parameters:
json
  {
      "scale": 20.0,
      "similarity_fct": "cos_sim",
      "gather_across_devices": false
  }

Training Hyperparameters

Non-Default Hyperparameters
  • —eval_strategy: steps
  • —gradient_accumulation_steps: 32
  • —learning_rate: 3e-05
  • —num_train_epochs: 2
  • —lr_scheduler_type: cosine
  • —warmup_ratio: 0.1
  • —fp16: True
  • —push_to_hub: True
  • —batch_sampler: no_duplicates
All Hyperparameters

<details><summary>Click to expand</summary>

  • —overwrite_output_dir: False
  • —do_predict: False
  • —eval_strategy: steps
  • —prediction_loss_only: True
  • —per_device_train_batch_size: 8
  • —per_device_eval_batch_size: 8
  • —per_gpu_train_batch_size: None
  • —per_gpu_eval_batch_size: None
  • —gradient_accumulation_steps: 32
  • —eval_accumulation_steps: None
  • —torch_empty_cache_steps: None
  • —learning_rate: 3e-05
  • —weight_decay: 0.0
  • —adam_beta1: 0.9
  • —adam_beta2: 0.999
  • —adam_epsilon: 1e-08
  • —max_grad_norm: 1.0
  • —num_train_epochs: 2
  • —max_steps: -1
  • —lr_scheduler_type: cosine
  • —lr_scheduler_kwargs: None
  • —warmup_ratio: 0.1
  • —warmup_steps: 0
  • —log_level: passive
  • —log_level_replica: warning
  • —log_on_each_node: True
  • —logging_nan_inf_filter: True
  • —save_safetensors: True
  • —save_on_each_node: False
  • —save_only_model: False
  • —restore_callback_states_from_checkpoint: False
  • —no_cuda: False
  • —use_cpu: False
  • —use_mps_device: False
  • —seed: 42
  • —data_seed: None
  • —jit_mode_eval: False
  • —bf16: False
  • —fp16: True
  • —fp16_opt_level: O1
  • —half_precision_backend: auto
  • —bf16_full_eval: False
  • —fp16_full_eval: False
  • —tf32: None
  • —local_rank: 0
  • —ddp_backend: None
  • —tpu_num_cores: None
  • —tpu_metrics_debug: False
  • —debug: []
  • —dataloader_drop_last: False
  • —dataloader_num_workers: 0
  • —dataloader_prefetch_factor: None
  • —past_index: -1
  • —disable_tqdm: False
  • —remove_unused_columns: True
  • —label_names: None
  • —load_best_model_at_end: False
  • —ignore_data_skip: False
  • —fsdp: []
  • —fsdp_min_num_params: 0
  • —fsdp_config: {'minnumparams': 0, 'xla': False, 'xlafsdpv2': False, 'xlafsdpgrad_ckpt': False}
  • —fsdp_transformer_layer_cls_to_wrap: None
  • —accelerator_config: {'splitbatches': False, 'dispatchbatches': None, 'evenbatches': True, 'useseedablesampler': True, 'nonblocking': False, 'gradientaccumulationkwargs': None}
  • —parallelism_config: None
  • —deepspeed: None
  • —label_smoothing_factor: 0.0
  • —optim: adamwtorchfused
  • —optim_args: None
  • —adafactor: False
  • —group_by_length: False
  • —length_column_name: length
  • —project: huggingface
  • —trackio_space_id: trackio
  • —ddp_find_unused_parameters: None
  • —ddp_bucket_cap_mb: None
  • —ddp_broadcast_buffers: False
  • —dataloader_pin_memory: True
  • —dataloader_persistent_workers: False
  • —skip_memory_metrics: True
  • —use_legacy_prediction_loop: False
  • —push_to_hub: True
  • —resume_from_checkpoint: None
  • —hub_model_id: None
  • —hub_strategy: every_save
  • —hub_private_repo: None
  • —hub_always_push: False
  • —hub_revision: None
  • —gradient_checkpointing: False
  • —gradient_checkpointing_kwargs: None
  • —include_inputs_for_metrics: False
  • —include_for_metrics: []
  • —eval_do_concat_batches: True
  • —fp16_backend: auto
  • —push_to_hub_model_id: None
  • —push_to_hub_organization: None
  • —mp_parameters:
  • —auto_find_batch_size: False
  • —full_determinism: False
  • —torchdynamo: None
  • —ray_scope: last
  • —ddp_timeout: 1800
  • —torch_compile: False
  • —torch_compile_backend: None
  • —torch_compile_mode: None
  • —include_tokens_per_second: False
  • —include_num_input_tokens_seen: no
  • —neftune_noise_alpha: None
  • —optim_target_modules: None
  • —batch_eval_metrics: False
  • —eval_on_start: False
  • —use_liger_kernel: False
  • —liger_kernel_config: None
  • —eval_use_gather_object: False
  • —average_tokens_across_devices: True
  • —prompts: None
  • —batch_sampler: no_duplicates
  • —multi_dataset_batch_sampler: proportional
  • —router_mapping: {}
  • —learning_rate_mapping: {}

</details>

Training Logs

<details><summary>Click to expand</summary>

EpochStepTraining LossValidation Loss
0.0058500.9157-
0.01171000.5724-
0.01751500.4076-
0.02342000.3557-
0.02922500.3075-
0.03513000.2783-
0.04093500.2603-
0.04684000.2363-
0.05264500.2278-
0.05855000.2194-
0.06435500.2042-
0.07016000.1857-
0.07606500.177-
0.08187000.1667-
0.08777500.1665-
0.09358000.1466-
0.09948500.1519-
0.10529000.1428-
0.11119500.1269-
0.116910000.1311-
0.122810500.1244-
0.128611000.1147-
0.134411500.1146-
0.140312000.1148-
0.146112500.1029-
0.152013000.0978-
0.157813500.0976-
0.163714000.0937-
0.169514500.0922-
0.175415000.0926-
0.181215500.0937-
0.187016000.0855-
0.192916500.083-
0.198717000.0813-
0.204617500.0837-
0.210418000.0793-
0.216318500.0764-
0.222119000.0739-
0.228019500.0721-
0.233820000.0764-
0.239720500.0689-
0.245521000.0671-
0.251321500.0713-
0.257222000.0652-
0.263022500.0666-
0.268923000.0695-
0.274723500.0656-
0.280624000.0678-
0.286424500.0644-
0.292325000.0551-
0.298125500.0571-
0.304026000.0557-
0.309826500.0503-
0.315627000.0549-
0.321527500.053-
0.327328000.053-
0.333228500.0511-
0.339029000.0528-
0.344929500.0512-
0.350730000.05240.0516
0.356630500.0512-
0.362431000.0491-
0.368331500.0479-
0.374132000.0464-
0.379932500.0483-
0.385833000.0533-
0.391633500.0495-
0.397534000.0433-
0.403334500.0489-
0.409235000.0469-
0.415035500.0447-
0.420936000.0479-
0.426736500.0444-
0.432637000.0436-
0.438437500.0426-
0.444238000.0443-
0.450138500.0412-
0.455939000.0411-
0.461839500.0432-
0.467640000.0471-
0.473540500.0392-
0.479341000.0443-
0.485241500.0376-
0.491042000.0434-
0.496842500.0405-
0.502743000.0389-
0.508543500.0404-
0.514444000.0389-
0.520244500.0425-
0.526145000.0371-
0.531945500.0376-
0.537846000.0355-
0.543646500.04-
0.549547000.0358-
0.555347500.0365-
0.561148000.0383-
0.567048500.0345-
0.572849000.0382-
0.578749500.0379-
0.584550000.0377-
0.590450500.034-
0.596251000.0363-
0.602151500.0347-
0.607952000.0343-
0.613852500.0339-
0.619653000.0358-
0.625453500.0351-
0.631354000.0327-
0.637154500.0361-
0.643055000.0346-
0.648855500.0343-
0.654756000.0329-
0.660556500.0295-
0.666457000.033-
0.672257500.033-
0.678158000.033-
0.683958500.0313-
0.689759000.0305-
0.695659500.0329-
0.701460000.03090.0327
0.707360500.0331-
0.713161000.0304-
0.719061500.0304-
0.724862000.0338-
0.730762500.0344-
0.736563000.0312-
0.742463500.03-
0.748264000.0327-
0.754064500.0323-
0.759965000.0294-
0.765765500.0304-
0.771666000.0261-
0.777466500.0295-
0.783367000.0281-
0.789167500.0293-
0.795068000.0283-
0.800868500.0293-
0.806669000.0293-
0.812569500.0305-
0.818370000.029-
0.824270500.0309-
0.830071000.0302-
0.835971500.0289-
0.841772000.0286-
0.847672500.0273-
0.853473000.0287-
0.859373500.0283-
0.865174000.0259-
0.870974500.0273-
0.876875000.0288-
0.882675500.0262-
0.888576000.0292-
0.894376500.0273-
0.900277000.0257-
0.906077500.0285-
0.911978000.0276-
0.917778500.0242-
0.923679000.0261-
0.929479500.0254-
0.935280000.0281-
0.941180500.0272-
0.946981000.0281-
0.952881500.0275-
0.958682000.0258-
0.964582500.0276-
0.970383000.0267-
0.976283500.0251-
0.982084000.0232-
0.987984500.0244-
0.993785000.027-
0.999585500.0244-
1.005486000.0231-
1.011286500.0206-
1.017187000.0246-
1.022987500.0219-
1.028888000.0225-
1.034688500.0219-
1.040489000.021-
1.046389500.0221-
1.052190000.02090.0242
1.058090500.0237-
1.063891000.0223-
1.069791500.0223-
1.075592000.0241-
1.081492500.023-
1.087293000.022-
1.093193500.0225-
1.098994000.0224-
1.104794500.0186-
1.110695000.0249-
1.116495500.0226-
1.122396000.0219-
1.128196500.0227-
1.134097000.0204-
1.139897500.0211-
1.145798000.0224-
1.151598500.0227-
1.157499000.0213-
1.163299500.0214-
1.1690100000.0201-
1.1749100500.0223-
1.1807101000.0201-
1.1866101500.0187-
1.1924102000.0209-
1.1983102500.0223-
1.2041103000.0193-
1.2100103500.0205-
1.2158104000.0202-
1.2217104500.0214-
1.2275105000.019-
1.2333105500.0203-
1.2392106000.0209-
1.2450106500.0201-
1.2509107000.0195-
1.2567107500.0212-
1.2626108000.0211-
1.2684108500.0206-
1.2743109000.0184-
1.2801109500.0198-
1.2860110000.0203-
1.2918110500.0196-
1.2976111000.0216-
1.3035111500.0173-
1.3093112000.0184-
1.3152112500.0207-
1.3210113000.0187-
1.3269113500.0192-
1.3327114000.0198-
1.3386114500.0186-
1.3444115000.0179-
1.3502115500.0177-
1.3561116000.0176-
1.3619116500.0206-
1.3678117000.0194-
1.3736117500.018-
1.3795118000.0185-
1.3853118500.0184-
1.3912119000.0197-
1.3970119500.018-
1.4029120000.01650.0208
1.4087120500.0182-
1.4145121000.0175-
1.4204121500.0173-
1.4262122000.0203-
1.4321122500.0202-
1.4379123000.0187-
1.4438123500.019-
1.4496124000.0184-
1.4555124500.0176-
1.4613125000.0174-
1.4672125500.0164-
1.4730126000.0185-
1.4788126500.0169-
1.4847127000.0184-
1.4905127500.0173-
1.4964128000.0176-
1.5022128500.0203-
1.5081129000.0198-
1.5139129500.0165-
1.5198130000.0189-
1.5256130500.0196-
1.5315131000.0182-
1.5373131500.0187-
1.5431132000.018-
1.5490132500.0186-
1.5548133000.0182-
1.5607133500.0184-
1.5665134000.0183-
1.5724134500.0202-
1.5782135000.0202-
1.5841135500.0179-
1.5899136000.0197-
1.5958136500.0192-
1.6016137000.0193-
1.6074137500.0159-
1.6133138000.0191-
1.6191138500.0181-
1.6250139000.0189-
1.6308139500.0194-
1.6367140000.0191-
1.6425140500.0165-
1.6484141000.0167-
1.6542141500.0179-
1.6600142000.0167-
1.6659142500.0181-
1.6717143000.0174-
1.6776143500.0163-
1.6834144000.0173-
1.6893144500.0164-
1.6951145000.0175-
1.7010145500.0195-
1.7068146000.0169-
1.7127146500.0177-
1.7185147000.0171-
1.7243147500.0179-
1.7302148000.0162-
1.7360148500.0167-
1.7419149000.0178-
1.7477149500.0179-
1.7536150000.01870.0189
1.7594150500.0177-
1.7653151000.0171-
1.7711151500.0172-
1.7770152000.0181-
1.7828152500.0176-
1.7886153000.0175-
1.7945153500.0175-
1.8003154000.0158-
1.8062154500.0154-
1.8120155000.0186-
1.8179155500.0171-
1.8237156000.017-
1.8296156500.0164-
1.8354157000.0165-
1.8413157500.0169-
1.8471158000.0174-
1.8529158500.0174-
1.8588159000.017-
1.8646159500.0166-
1.8705160000.0157-
1.8763160500.0173-
1.8822161000.0175-
1.8880161500.0177-
1.8939162000.0179-
1.8997162500.0175-
1.9056163000.0183-
1.9114163500.0175-
1.9172164000.0167-
1.9231164500.0185-
1.9289165000.0162-
1.9348165500.0161-
1.9406166000.0188-
1.9465166500.0172-
1.9523167000.0186-
1.9582167500.0178-
1.9640168000.0179-
1.9698168500.019-
1.9757169000.0188-
1.9815169500.0158-
1.9874170000.016-
1.9932170500.0184-
1.9991171000.0194-

</details>

Framework Versions

  • —Python: 3.12.12
  • —Sentence Transformers: 5.2.1
  • —Transformers: 4.57.6
  • —PyTorch: 2.10.0+cu128
  • —Accelerate: 1.12.0
  • —Datasets: 4.3.0
  • —Tokenizers: 0.22.2

Citation

BibTeX

Sentence Transformers
bibtex
@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
bibtex
@misc{henderson2017efficient,
    title={Efficient Natural Language Response Suggestion for Smart Reply},
    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},
    year={2017},
    eprint={1705.00652},
    archivePrefix={arXiv},
    primaryClass={cs.CL}
}

<!--

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. -->