Views
No views yet
SentenceTransformer(
(0): Transformer({'transformer_task': 'feature-extraction', 'modality_config': {'text': {'method': 'forward', 'method_output_name': 'last_hidden_state'}}, 'module_output_name': 'token_embeddings', 'architecture': 'Gemma3TextModel'})
(1): Pooling({'embedding_dimension': 768, 'pooling_mode': 'mean', 'include_prompt': True})
(2): Dense({'in_features': 768, 'out_features': 3072, 'bias': False, 'activation_function': 'torch.nn.modules.linear.Identity', 'module_input_name': 'sentence_embedding', 'module_output_name': 'sentence_embedding'})
(3): Dense({'in_features': 3072, 'out_features': 768, 'bias': False, 'activation_function': 'torch.nn.modules.linear.Identity', 'module_input_name': 'sentence_embedding', 'module_output_name': 'sentence_embedding'})
(4): Normalize({})
(5): Dense({'in_features': 768, 'out_features': 5, 'bias': True, 'activation_function': 'torch.nn.modules.linear.Identity', 'module_input_name': 'sentence_embedding', 'module_output_name': 'sentence_embedding'})
)pip install -U sentence-transformers1from sentence_transformers import SentenceTransformer
2
3# Download from the 🤗 Hub
4model = SentenceTransformer("ola-owo/big5-sentence-transformer-lora")
5# Run inference
6queries = [
7 'Se siente más viva en entornos sociales y dinámicos.',
8]
9documents = [
10 'A menudo no cumple con los plazos y deja tareas incompletas, sin mostrar una gran responsabilidad.',
11 'Muestra un comportamiento tranquilo y reservado, con momentos de entusiasmo social.',
12 'Demonstrates flexible thinking that adapts between conventional and innovative approaches as needed.',
13]
14query_embeddings = model.encode_query(queries)
15document_embeddings = model.encode_document(documents)
16print(query_embeddings.shape, document_embeddings.shape)
17# [1, 5] [3, 5]
18
19# Get the similarity scores for the embeddings
20similarities = model.similarity(query_embeddings, document_embeddings)
21print(similarities)
22# tensor([[-0.0554, -0.9912, -0.4846]])sentence and label| sentence | label | |
|---|---|---|
| type | string | list |
| modality | text | |
| details |
|
|
| sentence | label |
|---|---|
Intentos de mantener el orden, pero a menudo prioriza la comodidad sobre la estructura. | [-1.0, 0.15000000000000002, -1.0, -1.0, -1.0] |
Tiende a ser reservada y menos asertiva, y rara vez busca emociones o llamar la atención. | [-1.0, -1.0, 0.15000000000000002, -1.0, -1.0] |
Strikes a balance between socializing and alone time, feeling content with either. | [-1.0, -1.0, 0.5, -1.0, -1.0] |
[object Object].MultiLabelBCEWithLogitsLosssentence and label| sentence | label | |
|---|---|---|
| type | string | list |
| modality | text | |
| details |
|
|
| sentence | label |
|---|---|
Maintains excellent organization and pays strong attention to detail in nearly everything. | [-1.0, 0.85, -1.0, -1.0, -1.0] |
Enjoys occasional company but generally prefers quieter, low-key environments. | [-1.0, -1.0, 0.15000000000000002, -1.0, -1.0] |
Will sacrifice personal interests and endure unfairness to avoid conflict or help someone in need. | [-1.0, -1.0, -1.0, 1.0, -1.0] |
[object Object].MultiLabelBCEWithLogitsLossnum_train_epochs: 20learning_rate: 9.697682561279368e-05warmup_steps: 0.1auto_find_batch_size: Trueper_device_train_batch_size: 8num_train_epochs: 20max_steps: -1learning_rate: 9.697682561279368e-05lr_scheduler_type: linearlr_scheduler_kwargs: Nonewarmup_steps: 0.1optim: adamw_torch_fusedoptim_args: Noneweight_decay: 0.0adam_beta1: 0.9adam_beta2: 0.999adam_epsilon: 1e-08optim_target_modules: Nonegradient_accumulation_steps: 1average_tokens_across_devices: Truemax_grad_norm: 1.0label_smoothing_factor: 0.0bf16: Falsefp16: Falsebf16_full_eval: Falsefp16_full_eval: Falsetf32: Nonegradient_checkpointing: Falsegradient_checkpointing_kwargs: Nonetorch_compile: Falsetorch_compile_backend: Nonetorch_compile_mode: Noneuse_liger_kernel: Falseliger_kernel_config: Noneuse_cache: Falseneftune_noise_alpha: Nonetorch_empty_cache_steps: Noneauto_find_batch_size: Truelog_on_each_node: Truelogging_nan_inf_filter: Trueinclude_num_input_tokens_seen: nolog_level: passivelog_level_replica: warningdisable_tqdm: Falseproject: huggingfacetrackio_space_id: Nonetrackio_bucket_id: Nonetrackio_static_space_id: Noneper_device_eval_batch_size: 8prediction_loss_only: Trueeval_on_start: Falseeval_do_concat_batches: Trueeval_use_gather_object: Falseeval_accumulation_steps: Noneinclude_for_metrics: []batch_eval_metrics: Falsesave_only_model: Falsesave_on_each_node: Falseenable_jit_checkpoint: Falsepush_to_hub: Falsehub_private_repo: Nonehub_model_id: Nonehub_strategy: every_savehub_always_push: Falsehub_revision: Noneload_best_model_at_end: Falseignore_data_skip: Falserestore_callback_states_from_checkpoint: Falsefull_determinism: Falseseed: 42data_seed: Noneuse_cpu: Falseaccelerator_config: {'split_batches': False, 'dispatch_batches': None, 'even_batches': True, 'use_seedable_sampler': True, 'non_blocking': False, 'gradient_accumulation_kwargs': None}parallelism_config: Nonedataloader_drop_last: Falsedataloader_num_workers: 0dataloader_pin_memory: Truedataloader_persistent_workers: Falsedataloader_prefetch_factor: Noneremove_unused_columns: Truelabel_names: Nonetrain_sampling_strategy: randomlength_column_name: lengthddp_find_unused_parameters: Noneddp_bucket_cap_mb: Noneddp_broadcast_buffers: Falseddp_static_graph: Noneddp_backend: Noneddp_timeout: 1800fsdp: Nonefsdp_config: Nonedeepspeed: Nonedebug: []skip_memory_metrics: Truedo_predict: Falseresume_from_checkpoint: Nonewarmup_ratio: Nonelocal_rank: -1prompts: Nonebatch_sampler: batch_samplermulti_dataset_batch_sampler: proportionalrouter_mapping: {}learning_rate_mapping: {}| Epoch | Step | Training Loss | Validation Loss |
|---|---|---|---|
| 1.0 | 282 | 0.6071 | 0.5476 |
| 2.0 | 564 | 0.5313 | 0.6066 |
| 3.0 | 846 | 0.5313 | 0.5253 |
| 4.0 | 1128 | 0.5084 | 0.5030 |
| 5.0 | 1410 | 0.4808 | 0.5161 |
| 6.0 | 1692 | 0.4409 | 0.4823 |
| 7.0 | 1974 | 0.4221 | 0.5273 |
| 8.0 | 2256 | 0.4089 | 0.4880 |
| 9.0 | 2538 | 0.3902 | 0.4851 |
| 10.0 | 2820 | 0.3838 | 0.4351 |
| 11.0 | 3102 | 0.3713 | 0.4120 |
| 12.0 | 3384 | 0.3635 | 0.4158 |
| 13.0 | 3666 | 0.3609 | 0.4347 |
| 14.0 | 3948 | 0.3585 | 0.4289 |
| 15.0 | 4230 | 0.3564 | 0.4252 |
| 16.0 | 4512 | 0.3559 | 0.4183 |
| 17.0 | 4794 | 0.3554 | 0.4448 |
| 18.0 | 5076 | 0.3500 | 0.4263 |
| 19.0 | 5358 | 0.3464 | 0.4124 |
| 20.0 | 5640 | 0.3432 | 0.4121 |
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}